/* Custom Properties */
:root {
    --color-red: #E10600;
    --color-bright-red: #FF2A2A;
    --color-dark-red: #B50000;

    --color-white: #ffffff;
    --color-offwhite: #fff7f7;

    --color-bg: #8B0000;
    --color-bg-light: #a80000;
    --color-card: rgba(255,255,255,0.08);

    --color-text: #ffffff;
    --color-text-soft: rgba(255,255,255,0.82);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}
    
  
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-darker);
    color: var(--color-light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-dark-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-red);
    color: var(--color-red);
}

.btn-outline:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h1 span {
    color: var(--color-red);
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.subtitle {
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-bottom: 3rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo::after {
    content: '.';
    color: var(--color-red);
}

.navbar nav a {
    color: var(--color-light);
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.navbar nav a:hover {
    color: var(--color-red);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* navbar height */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--color-darker), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
    margin: 0 auto;
    text-align: center;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Sections Base */
section {
    padding: 6rem 0;
}

/* The Vibe */
.vibe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--color-gray);
    border-radius: 8px;
    border-left: 4px solid var(--color-red);
    transition: var(--transition);
}

.features-list li:hover {
    transform: translateX(10px);
    background: var(--color-gray-light);
}

.features-list .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.vibe-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Music Section */
.music-section {
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.02)
        );

    backdrop-filter: blur(6px);

    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.band-card {
    background-color: var(--color-gray);
    padding: 1.5rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-white);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.band-card:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    transform: scale(1.05);
}

.dj-callout {
    padding: 2rem;
    background: linear-gradient(45deg, var(--color-gray), #1a1a1a);
    border-radius: 8px;
    display: inline-block;
}

.dj-callout h3 {
    color: var(--color-red);
    margin: 0;
}

/* Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.destination-card {
    background-color: var(--color-gray);
    padding: 3rem 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--color-red);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.destination-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.destination-card .location {
    font-size: 1.2rem;
    color: var(--color-red);
    font-weight: bold;
    margin-bottom: 1rem;
}

.destination-card .details {
    color: #aaa;
}

/* VIP Section */
.vip-section {
    background: linear-gradient(135deg, var(--color-dark), var(--color-gray));
    padding: 8rem 0;
}

.vip-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background-color: var(--color-darker);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

/* =========================
   VIP / WAITLIST FIX
========================= */

.vip-section {
    background: #b30000;
}

.vip-container {
    background: #f7f4f4;
    color: #1f1f1f;
}

.vip-container p,
.vip-container .subtitle,
.vip-container .vip-text,
.vip-container .vip-description {
    color: #333 !important;
    opacity: 1 !important;
}

/* Fix hidden text under title */
.vip-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Mobile spacing cleanup */
@media (max-width: 600px) {

    .vip-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .vip-container {
        padding: 2rem 1.4rem !important;
    }

    .vip-container h2 {
        margin-bottom: 1rem !important;
    }

    .vip-container p {
        margin-bottom: 1.2rem !important;
    }
}

.jotform-placeholder {
    background-color: var(--color-gray);
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.jotform-placeholder p {
    color: #888;
    font-size: 1.2rem;
}

.jotform-placeholder .small {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: #555;
}

/* Footer */
footer {
    background-color: var(--color-darker);
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

footer p {
    color: #444;
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    
    .vibe-grid, .vip-container, .destinations-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vip-container {
        padding: 2rem;
    }
    
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .navbar nav {
        margin-top: 1rem;
        display: none; /* simple mobile handling for now */
    }
    
    .navbar .btn {
        display: none;
    }
}

@media (max-width: 600px) {
    h1 { font-size: 2.2rem; }
    .hero-ctas {
        flex-direction: column;
    }
}
body {
    background:
        linear-gradient(
            180deg,
            #a40000 0%,
            #8f0000 30%,
            #7d0000 60%,
            #960000 100%
        );

    color: var(--color-text);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(180, 0, 0, 0.82);

    backdrop-filter: blur(14px);

    z-index: 1000;

    border-bottom: 1px solid rgba(255,255,255,0.18);

    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.hero-bg {
    opacity: 0.92;
    filter: saturate(1.08) contrast(1.03);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0.02),
            rgba(180,0,0,0.18),
            rgba(120,0,0,0.34)
        );

    z-index: 2;
}

.hero::after {
    z-index: 3;
    background: linear-gradient(to top, var(--color-darker), transparent);
}

.hero-content {
    z-index: 4;
}

h1 span,
h2::after {
    color: var(--color-bright-red);
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, var(--color-red), var(--color-white), var(--color-red));
    border-radius: 999px;
}

.btn-primary {
    background: #ffffff;
    color: var(--color-red);

    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(255,255,255,0.22);
}

.btn-primary:hover {
    background: #ffe5e5;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);

    color: white;

    border: 1px solid rgba(255,255,255,0.25);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.18);
}

.btn-outline {
    border: 1px solid white;
    color: white;
}
.features-list li,
.band-card,
.destination-card,
.features-list li,
.vip-container {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.04)
        );

    border: 1px solid rgba(255,255,255,0.14);

    box-shadow:
        0 8px 28px rgba(0,0,0,0.12);

    backdrop-filter: blur(8px);
}

.features-list li {
    border-left: 4px solid var(--color-bright-red);
}

.vibe-image img {
    border: 3px solid rgba(225, 6, 0, 0.45);
    box-shadow: 0 24px 55px rgba(225, 6, 0, 0.18);
}

.music-section,
.vip-section {
    background:
        linear-gradient(135deg, rgba(120, 0, 0, 0.34), rgba(5, 5, 5, 0.94)),
        var(--color-dark);
}

.destination-card {
    border-top: 4px solid var(--color-white);
    box-shadow: inset 0 0 0 1px rgba(225, 6, 0, 0.25);
}

.destination-card:hover {
    box-shadow: 0 18px 38px rgba(225, 6, 0, 0.24);
}
.gallery-section {
    background:
        linear-gradient(180deg, var(--color-darker), rgba(140, 0, 0, 0.28), var(--color-darker));
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-areas:
        "feature stack"
        "wide wide";
    gap: 1.25rem;
    margin-top: 3rem;
}

.gallery-feature {
    grid-area: feature;
}

.gallery-stack {
    grid-area: stack;
    display: grid;
    gap: 1.25rem;
}

.gallery-wide {
    grid-area: wide;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 22px 45px rgba(0,0,0,0.42);
    filter: saturate(1.12) contrast(1.05);
}

.gallery-feature img {
    min-height: 560px;
}

.gallery-stack img {
    min-height: 267px;
}

.gallery-wide img {
    max-height: 360px;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "feature"
            "stack"
            "wide";
    }

    .gallery-feature img,
    .gallery-stack img,
    .gallery-wide img {
        min-height: 260px;
        max-height: none;
    }
}
/* ================================
   Canada House Balance Fix
   Red + White + Strong Contrast
================================ */

/* VIBE FEATURE CARDS */
.features-list li {
    background: rgba(255, 255, 255, 0.96);
    color: #8B0000;
    border-left: 6px solid #E10600;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.features-list li:hover {
    background: #ffffff;
    color: #B50000;
    transform: translateX(10px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.24);
}

.features-list .icon {
    color: #E10600;
}

/* MUSIC CARDS */
.band-card {
    background: #ffffff;
    color: #A00000;
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.band-card:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-6px);
}

/* DJ CALLOUT */
.dj-callout {
    background: #ffffff;
    color: #A00000;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.dj-callout h3 {
    color: #E10600;
}

/* DESTINATION CARDS */
.destination-card {
    background: #ffffff;
    color: #A00000;
    border-top: 6px solid #E10600;
    box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.destination-card h3 {
    color: #A00000;
}

.destination-card .location {
    color: #E10600;
}

.destination-card .details {
    color: #333333;
}

/* VIP BOX */
.vip-container {
    background: rgba(255,255,255,0.96);
    color: #A00000;
    border: 1px solid rgba(255,255,255,0.35);
}

.vip-container h2,
.vip-container p {
    color: #A00000;
}

/* FOOTER FIX */
footer {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-logo {
    color: #A00000;
}

footer p {
    color: #333333;
}

/* SUBTITLES READABILITY */
.subtitle {
    color: rgba(255,255,255,0.88);
}

/* OPTIONAL: keep section text crisp */
.vibe-text p,
.music-section p,
.destinations-section p,
.vip-section p {
    color: rgba(255,255,255,0.9);
}
.destination-card-wide {
    grid-column: 1 / -1;
    text-align: left;
}

.destination-card-wide h3,
.destination-card-wide .location {
    text-align: center;
}

.bars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.bars-grid p {
    color: #333333;
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 0.9rem;
    text-align: left;
}

.suggestions-note {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(160, 0, 0, 0.18);
    color: #A00000 !important;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 800px) {
    .bars-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .destination-card-wide {
        text-align: center;
    }

    .bars-grid p {
        text-align: center;
    }
}
/* HERO IMAGE CLEANUP */
.hero {
    min-height: 88vh;
    padding-top: 80px;
    align-items: flex-end;
}

.hero-bg {
    opacity: 1;
    filter: saturate(1.05) contrast(1.02);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.12) 55%,
        rgba(0,0,0,0.45) 100%
    );
    z-index: 2;
}

.hero-content {
    display: none;
}

.hero-buttons-only {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: 0 2rem 4rem;
    display: flex;
    justify-content: center;
}

.hero-intro {
    background: #ffffff;
    color: #A00000;
    padding: 4rem 0;
}

.hero-intro h1 {
    color: #A00000;
    margin-bottom: 1rem;
}

.hero-intro h1 span {
    color: #E10600;
}

.hero-intro p {
    max-width: 760px;
    margin: 0 auto;
    color: #333333;
    font-size: 1.2rem;
}
/* SPONSORS */
.sponsors-section {
    background: #ffffff;
    color: #A00000;
    padding: 6rem 0;
}

.sponsors-section h2 {
    color: #A00000;
}

.sponsors-section .subtitle {
    color: #333333;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.sponsor-card {
    min-height: 220px;
    background: #ffffff;
    border: 3px solid #E10600;
    border-radius: 18px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0,0,0,0.16);
    transition: var(--transition);
}

.sponsor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(0,0,0,0.22);
}

.sponsor-card img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.sponsor-placeholder {
    background: linear-gradient(135deg, #E10600, #A00000);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

@media (max-width: 800px) {
    .sponsors-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-card {
        min-height: 180px;
    }
}
/* ================================
   MOBILE SPACING + HERO BUTTON FIX
================================ */

@media (max-width: 600px) {

    /* General mobile section tightening */
    section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 1.4rem;
    }

    h1 {
        font-size: 2.45rem;
        line-height: 1.05;
    }

    h2 {
        font-size: 2.55rem;
        line-height: 1.05;
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: 1.25rem;
        line-height: 1.45;
        margin-bottom: 2rem;
    }

    /* HERO: keep image visible and move buttons lower */
    .hero {
        min-height: 76vh;
        padding-top: 86px;
        align-items: flex-end;
    }

    .hero-bg {
        background-position: center top;
    }

    .hero-buttons-only {
        padding: 0 1.5rem 2.2rem;
        transform: translateY(1.4rem);
    }

    .hero-ctas {
        width: 100%;
        max-width: 320px;
        flex-direction: column;
        gap: 0.85rem;
    }

    .hero-ctas .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Intro below hero: less giant white gap */
    .hero-intro {
        padding: 3rem 1rem 3.2rem;
    }

    .hero-intro p {
        font-size: 1.35rem;
        line-height: 1.45;
    }

    /* Vibe section */
    .vibe-section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .vibe-grid {
        gap: 2rem;
    }

    .features-list {
        margin-top: 1.5rem;
    }

    .features-list li {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }

    /* Gallery tighter */
    .gallery-section {
        padding: 3.5rem 0;
    }

    .gallery-grid {
        margin-top: 2rem;
        gap: 1rem;
    }

    .gallery-feature img,
    .gallery-stack img,
    .gallery-wide img {
        min-height: 220px;
        border-radius: 16px;
    }

    /* Music tighter */
    .music-section {
        padding: 3.5rem 0;
    }

    .bands-grid {
        gap: 1rem;
    }

    .band-card {
        padding: 1.5rem 1.2rem;
        font-size: 1.15rem;
    }

    .dj-callout {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }

    /* Destinations tighter */
    .destinations-section {
        padding: 3.5rem 0;
    }

    .destinations-grid {
        gap: 1.4rem;
    }

    .destination-card {
        padding: 2.2rem 1.4rem;
    }

    .destination-card h3 {
        font-size: 2rem;
    }

    .bars-grid {
        margin-top: 1.5rem;
    }

    /* Sponsors tighter */
    .sponsors-section {
        padding: 3.5rem 0;
    }

    .sponsors-grid {
        margin-top: 2rem;
        gap: 1.4rem;
    }

    .sponsor-card {
        min-height: 170px;
        padding: 1.5rem;
    }

    /* VIP tighter + fix unreadable text */
    .vip-section {
        padding: 3.5rem 0;
    }

    .vip-container {
        padding: 2rem 1.2rem;
        gap: 1.5rem;
    }

    .vip-text h2 {
        font-size: 2.7rem;
    }

    .vip-text p {
        color: #A00000 !important;
        font-size: 1.15rem;
        line-height: 1.45;
    }

    .jotform-wrapper {
        min-height: 460px !important;
    }

    .jotform-wrapper iframe {
        height: 460px !important;
    }

    footer {
        padding: 2rem 0;
    }
}
.hero-buttons-only {
    padding: 0 1.5rem 2.2rem;
    transform: translateY(2.4rem);
}
/* =================================
   MOBILE SPACING REFINEMENT
================================= */

@media (max-width: 600px) {

    /* GLOBAL SECTION SPACING */
    section,
    .vibe-section,
    .gallery-section,
    .music-section,
    .destinations-section,
    .sponsors-section,
    .vip-section {
        padding-top: 2.2rem !important;
        padding-bottom: 2.2rem !important;
        margin: 0 !important;
    }

    /* Remove giant gaps between sections */
    .vibe-section + .gallery-section,
    .gallery-section + .music-section,
    .music-section + .destinations-section,
    .destinations-section + .sponsors-section,
    .sponsors-section + .vip-section {
        margin-top: -0.5rem !important;
    }

    /* HERO intro block tighter */
    .hero-intro {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* Gallery tighter */
    .gallery-grid {
        margin-top: 1rem !important;
    }

    /* Destination cards tighter */
    .destinations-grid {
        margin-top: 1rem !important;
        gap: 1rem !important;
    }

    /* Sponsor section */
    .sponsors-grid {
        margin-top: 1rem !important;
        gap: 1rem !important;
    }

    /* Music section */
    .bands-grid {
        margin-top: 1rem !important;
    }

    /* Remove excessive white space under headings */
    h2 {
        margin-bottom: 0.8rem !important;
    }

    .section-subtitle,
    .subtitle,
    .gallery-section p,
    .music-section p,
    .destinations-section p,
    .sponsors-section p {
        margin-bottom: 1.2rem !important;
    }

    /* Tighten image spacing */
    .gallery-feature,
    .gallery-stack,
    .gallery-wide {
        margin-bottom: 0.8rem !important;
    }

    /* VIP section */
    .vip-container {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    /* Footer */
    footer {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}