/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}

/* Mobile */
@media (max-width: 480px) {
    
}

@media (max-width: 575px) {  

} 

/* Tablet portrait */
@media (min-width: 576px) and (max-width: 767px) {  

}

/* Tablet landscape */
@media (min-width: 768px) and (max-width: 991px) { 

 }

/* Small desktop */
@media (min-width: 992px) and (max-width: 1199px) { 

 }

/* Standard desktop */
@media (min-width: 1200px) and (max-width: 1399px) { 

 }

/* HD */
@media (min-width: 1400px) and (max-width: 1919px) { 

 }

/* Full HD / 4K */
@media (min-width: 1920px) { 
    
 }


@media only screen and (max-width: 768px) {
    /* Mobile Menu CSS */
    header .mobile-menu-toggle {
        display: flex;
    }

    /* Hide default menu */
    header .nav {
        position: absolute;
        /* top: 0; */
        top:114px;
        right: -260px; /* hidden off screen */
        width: 260px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 20px;
        gap: 15px;
        transition: 0.3s ease;
        z-index: 9999;
        display: none;
        overflow: auto;
    }

    /* When active */
    header .nav.active {
        right: 0;
        width: 100%;
        display: block;
    }

    /* Remove desktop dropdown behaviour */
    header .nav > li:hover > .dropdown {
        display: none;
    }

    /* Mobile dropdown styling */
    header .dropdown {
        position: static;
        /* background: #222; */
        padding-left: 15px;
        margin-top: 5px;
    }

    /* Hide dropdown by default */
    header .mobile-dropdown {
        display: none;
    }

    /* Show dropdown when opened */
    header .mobile-dropdown.open {
        display: block !important;
    }

    /* Parent item clickable arrow */
    header .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header .dropdown-toggle::after {
        content: "▾";
        font-size: 14px;
    }

    .dropdown-toggle.active::after {
        content: "▴";
    }

    /* Overlay to close menu by clicking outside */
    .menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 999;
    }
    .menu-overlay.active {
        display: block;
    }

    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 26px;
        color: #fff;
        cursor: pointer;
    }
    /* End Mobile Menu CSS */

    .top .container{
        flex-direction: column;
    }
    .tiles--band{
        grid-template-columns: repeat(3, 1fr);
    }
    .venue-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .footer-grid{
        grid-template-columns: 1fr;
    }
    .hero__wrap--swap{
        grid-template-columns: repeat(1, 1fr);
    }
    .logo-stack{
        display: flex;
        gap: 20px;
    }
    .hero__wrap .hero__side .slot img{
        max-width: 100%;
        max-height: 200px;
    }
}

@media only screen and (max-width: 480px) {
    .tiles--band{
        grid-template-columns: repeat(2, 1fr);
    }
    .expect-band .expect-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .band--logos .sponsors {
        grid-template-columns: repeat(2, 1fr);
    }
    .section__head{
        flex-direction: column;
        align-items: center;
    }
    #countdown-band .pill{
        display: block;
        text-align: center;
    }
    #countdown-band .pill span{
        display: block;
    }
}



