/* ========================= */
/* GLOBAL RESET              */
/* ========================= */
* {
    box-sizing: border-box;
}

/* ========================= */
/* RESPONSIVE SLIDESHOW GRID */
/* ========================= */
.slideshow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    margin: 0 auto;
}

.slideshow-grid img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tablet */
@media (min-width: 600px) {
    .slideshow-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop */
@media (min-width: 900px) {
    .slideshow-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ========================= */
/* MOBILE NAV – HAMBURGER    */
/* ========================= */
.mobile-nav-toggle {
    display: none;
    font-size: 36px;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 9999;
    color: #333;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background: #ffffff;
    box-shadow: -4px 0 12px rgba(0,0,0,0.2);
    padding-top: 80px;
    z-index: 9998;
}

.mobile-nav a {
    display: block;
    padding: 18px 25px;
    font-size: 20px;
    border-bottom: 1px solid #ddd;
    color: #333;
    text-decoration: none;
}

.mobile-nav a:hover {
    background: #f2f2f2;
}

/* ========================= */
/* MOBILE ONLY               */
/* ========================= */
@media (max-width: 768px) {

    .mobile-nav-toggle {
        display: block;
    }

    /* Hide original Muse menu */
    #menuu149,
    #buttonu3026,
    #buttonu44071,
    #buttonu44167,
    #buttonu44173,
    #u1805-5,
    #u1808-5,
    #u1810-5 {
        display: none !important;
    }

    /* Make all Muse fixed widths fluid */
    .browser_width,
    .grpelem,
    .colelem {
        width: 100% !important;
        left: 0 !important;
    }
}





