/* MOBILE STYLES */
@media (max-width: 768px) {

    /* ------------------------------
       GENERAL TEXT SIZE
    ------------------------------ */
    p,
    .section-text,
    .testimonial p,
    .show-card p,
    .gallery-preview p,
    .cta-text {
        font-size: 20px;
    }

    /* ------------------------------
       HEADER LAYOUT
    ------------------------------ */
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    /* Hide desktop CTA */
    .header-cta {
        display: none;
    }

    /* ------------------------------
       LOGO
    ------------------------------ */
    .logo img {
        width: 220px;
        height: auto;
    }

    /* ------------------------------
       SHOWS GRID
    ------------------------------ */
    .shows-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .show-card {
        flex: 1 1 100%;
        padding: 12px;
        margin: 0;
    }

    /* ------------------------------
       GALLERY
    ------------------------------ */
    .gallery-row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .gallery-thumb {
        flex: 1 1 300px;
        height: 200px;
        background: #222;
        border-radius: 8px;
    }

    /* ------------------------------
       HERO
    ------------------------------ */
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
    }
    /* Mobile hero image alignment */
    .hero {
        background-position: 75% center;
        background-size: cover;
    }



    /* ------------------------------
       MOBILE HEADER BACKGROUND
    ------------------------------ */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        padding: 10px 20px;
    }

    .site-wrapper {
        padding-top: 0px;
    }

    /* ------------------------------
       CONTACT FORM FIXES
    ------------------------------ */
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box;
    }

    .container.contact-page {
        padding-left: 0;
        padding-right: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-form {
        max-width: 280px;
        margin: 0 auto;
    }
    /* ----------------------------------------------
   MOBILE NAVIGATION (HAMBURGER + FULL LIST)
---------------------------------------------- */

    /* Show hamburger */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        margin-right: -10px;
    }

    .nav-toggle span {
        width: 28px;
        height: 3px;
        background: #ef8cc9;
        border-radius: 2px;
    }

    /* Positioning context */
    .main-nav {
        position: fixed;
    }

    /* Hide menu by default */
    .main-nav > ul {
        display: none;
        position: fixed;
        top: 115px;
        left: 0;
        right: 0;
        width: 60vw;
        flex-direction: column;
        gap: 15px;
        background: #000;
        padding: 15px;
        border-radius: 10px;
        margin: auto !important;
        z-index: 9999;
        border: 2px solid #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }

    /* When hamburger is toggled */
    .main-nav.open > ul {
        display: flex;
        background: white;
    }

    /* Make all links full-width */
    .main-nav ul li a {
        display: block;
        width: 100%;
        padding: 10px 0;
        text-align: center;
        font-size: 18px;
        background: white;
        color: black;
        box-sizing: border-box;
    }

    /* Flatten the "More" dropdown */
    .dropdown-toggle {
        display: none !important;
    }

    .dropdown-menu {
        display: block !important;
        position: static !important;
        padding: 0;
        margin: 0;
        border: none;
        box-shadow: none;
        width: 100%;
    }

    .dropdown {
        position: static !important;
    }
/* HOW IT WORKS PAGE
--------------------------------------------- */
    .how-it-works-page {
        padding: 30px 15px;
        padding-top: 100px; /* adjust to match your header height */
    }

    .hiw-section h2 {
        font-size: 1.4rem;
    }
    /* GALLERY PAGE */
    .gallery-page {
    padding-top: 100px; /* adjust to match your header height */
}
/* WEDDING CRASHERS PAGE */
.wedding-crashers-page {
    padding-top: 100px; /* adjust to match your header height */
}
/* BECOME A WEDDING CRASHER PAGE */
.become-crasher-page {
    padding-top: 100px; /* adjust to match your header height */
}
/* REVIEWS */
.testimonials-page {
    padding-top: 100px; /* adjust to match your header height */
}




}
