/* MOBILE STYLES */
@media (max-width: 768px) {

    /* Bigger text on mobile (not H tags) */
    p,
    .section-text,
    .testimonial p,
    .show-card p,
    .gallery-preview p,
    .cta-text {
        font-size: 20px; /* adjust to taste */
    }



    /* HEADER LAYOUT */
    .header-inner {
        display: flex;
        justify-content: space-between; /* logo left, hamburger right */
        align-items: center;
        flex-wrap: nowrap;
    }

    /* HIDE CTA BUTTON ON MOBILE */
    .header-cta {
        display: none;
    }

    /* HAMBURGER BUTTON */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        
    }

    .nav-toggle {
    margin-right: -20px; /* move further right */
}

    .nav-toggle span {
        width: 28px;
        height: 3px;
        background: #fff; /* white hamburger */
        border-radius: 2px;
    }

    /* POSITIONING CONTEXT FOR DROPDOWN */
    .main-nav {
        position: relative;
    }

    /* MOBILE MENU (HIDDEN BY DEFAULT) */
    .main-nav ul {
        position: absolute;
        top: 30px;      /* sits under hamburger */
        right: 10px;       /* aligns to right edge */
        width: 100px;   /* or 100% if you prefer full width */
        display: none;
        flex-direction: column;
        gap: 15px;
        background: #000;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        z-index: 9999;
        border: 2px solid #fff; /* ★ makes it visible on all backgrounds */ 
        box-shadow: 0 4px 12px rgba(0,0,0,0.4); /* subtle depth */
    }

    .main-nav ul li a {
    display: block;      /* makes the whole row clickable */
    width: 100%;         /* fills the dropdown width */
    padding: 10px 0;     /* gives a nice tall tap area */
}


    /* MOBILE MENU WHEN OPEN */
    .main-nav.open ul {
        display: flex;
    }

    /* MOBILE NAV LINK STYLE */
    .main-nav a {
        color: #fff;
        font-size: 18px;
        text-align: center;
    }

    /* BIGGER LOGO ON MOBILE */
    .logo img {
        width: 220px;
        height: auto;
    }
    .shows-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .show-card {
        flex: 1 1 100%;
        border: 2px solid #F7E7CE; /* champagne */
        border-radius: 8px;
        padding: 20px;
        background: #000; /* keeps the contrast strong */
    }


    .gallery-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-thumb {
    flex: 1 1 300px;
    height: 200px;
    background: #222; /* placeholder */
    border-radius: 8px;
}

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
    }
    
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: #000;
        padding: 10px 20px;
    }

    .site-wrapper {
        padding-top: 0px; /* creates space so content doesn't hide under header */
    }
    .shows-grid {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        gap: 10px; /* optional, keeps cards separated */
    }

    .show-card {
        flex: 1 1 100%;
        border: 2px solid #F7E7CE;
        border-radius: 8px;
        padding: 12px;
        background: #000;
        margin: 0; /* removes any leftover spacing */
    }
}










