/* ==========================================================================
   FestVent Vol. 3 Design System - Neo Brutalist Street Style
   ========================================================================== */

:root {
    /* Color Palette */
    --clr-neon-pink: #FF007F; 
    --clr-electric-yellow: #FFEA00; 
    --clr-cyan: #00E5FF; 
    
    /* Backgrounds */
    --clr-bg-dark: #0A0A0A;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-accent: 'Sedgwick Ave Display', cursive;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-max: 1200px;
    --section-pad: 120px 20px;
}

/* ==========================================================================
   Base Reset
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    /* Set the base background to be very bold but we will overwrite per section */
    background-color: var(--clr-bg-dark); 
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    text-transform: uppercase;
}

/* ==========================================================================
   Utility Classes & Design System Elements
   ========================================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: var(--section-pad); }

.text-center { text-align: center; }
.mt-4 { margin-top: 30px; }

/* Brutalist Buttons */
.btn {
    display: inline-block;
    padding: 18px 56px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    border: 4px solid #000;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 6px 6px 0px #000;
    color: #000;
    white-space: nowrap;
}

.btn:active {
    transform: translate(6px, 6px);
    box-shadow: 0px 0px 0px #000;
}

.btn-primary { background-color: var(--clr-cyan); }
.btn-primary:hover { background-color: #fff; }

.btn-secondary { background-color: var(--clr-neon-pink); color: #fff;}
.btn-secondary:hover { background-color: #fff; color: #000;}

.btn-outline { background-color: var(--clr-electric-yellow); }
.btn-outline:hover { background-color: #fff; }

/* Small Registration Button for Cards */
.btn-register-sm {
    display: inline-block;
    padding: 6px 14px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    background-color: var(--clr-neon-pink);
    color: #fff;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000;
    cursor: pointer;
    transition: all 0.1s ease;
    margin-left: auto; /* Push to the right */
}

.btn-register-sm:hover {
    background-color: #fff;
    color: #000;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
}

.btn-register-sm:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px #000;
}

/* Global Section Titles */
.section-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-family: var(--font-accent);
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 4px 4px 0px #000;
    color: #fff;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* Remove utility text colors from prev design if used */
.text-neon-pink, .text-electric-yellow, .text-cyan { color: inherit; }

/* ==========================================================================
   Main Navbar (Transparent on Hero, Solid on Scroll)
   ========================================================================== */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Transparent by default (when on hero) */
    background-color: transparent;
    border-bottom: 4px solid transparent;
    z-index: 9999;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled state - full neo-brutalist style */
.main-navbar.scrolled {
    background-color: #0A0A0A;
    border-bottom: 6px solid var(--clr-electric-yellow);
    box-shadow: 0 6px 0px #000;
}

.main-navbar.menu-open {
    background-color: #0A0A0A;
    border-bottom: 6px solid var(--clr-electric-yellow);
    box-shadow: 0 6px 0px #000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;
    gap: 16px;
}

.navbar-logo {
    height: 95px;
    width: auto;
    filter: drop-shadow(3px 3px 0px rgba(0,0,0,0.5));
    transition: filter 0.3s ease;
}

.main-navbar.scrolled .navbar-logo {
    filter: drop-shadow(4px 4px 0px #000);
}

.navbar-links {
    display: flex;
    gap: 26px;
    align-items: center;
}

.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
    display: inline-block;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

/* On scroll - links get brutalist yellow hover */
.main-navbar.scrolled .navbar-links a {
    text-shadow: 2px 2px 0px #000;
}

.navbar-links a:hover {
    color: var(--clr-electric-yellow);
    transform: translateY(-3px);
    text-shadow: 3px 3px 0px #000;
}

.nav-cta {
    padding: 10px 16px;
    border: 3px solid #000;
    background: var(--clr-electric-yellow);
    color: #000;
    box-shadow: 6px 6px 0px #000;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
    background: #fff;
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px #000;
}

.navbar-toggle {
    display: none;
    width: 58px;
    height: 58px;
    background: var(--clr-neon-pink);
    border: 4px solid #000;
    box-shadow: 6px 6px 0px #000;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-direction: column;
    cursor: pointer;
    padding: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.navbar-toggle:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 #000;
}

.toggle-bar {
    display: block;
    width: 100%;
    height: 4px;
    background: #000;
}

.navbar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 999;
}

.navbar-overlay.active { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Hero Section (Dominant Neon Pink)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--clr-neon-pink); /* DOMINANT COLOR 1 */
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.2) 2px, transparent 2px); /* Comic dot pattern */
    background-size: 30px 30px;
    border-bottom: 10px solid #000;
    padding-top: 120px; /* Offset for fixed navbar height */
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-logo {
    max-width: 95%;
    width: 760px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(8px 8px 0px rgba(0, 0, 0, 1)); /* Brutalist drop shadow instead of soft glow */
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero-meta { margin-bottom: 50px; }

.date-location {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 900;
    color: #000;
    background: var(--clr-electric-yellow); /* Contrast against pink */
    padding: 15px 30px;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px #000;
    transform: rotate(-2deg);
    text-transform: uppercase;
}

/* Countdown Brutalist Cards */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.countdown-item {
    background: #fff;
    border: 4px solid #000;
    padding: 20px 25px;
    min-width: 120px;
    box-shadow: 8px 8px 0px #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
    transform: rotate(3deg);
    transition: transform 0.2s ease;
}

.countdown-item:hover { transform: translateY(-5px) rotate(0deg); }
.countdown-item:nth-child(even) { transform: rotate(-3deg); }
.countdown-item:nth-child(even):hover { transform: translateY(-5px) rotate(0deg); }

.countdown-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding-bottom: 80px;
}

/* Hide old glows */
.hero-bg-glow { display: none; }
.hero-bg-grid { display: none; }

/* ==========================================================================
   Sponsor Section (Electric Yellow Strip)
   ========================================================================== */
.sponsor-section {
    background-color: var(--clr-cyan);
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    border-bottom: 10px solid #000;
    border-top: 10px solid #000;
    padding: 60px 20px;
    overflow: hidden;
    position: relative;
}

.sponsor-gallery .sponsor-title {
    text-shadow: 5px 5px 0px #fff;
}

.sponsor-gallery .sponsor-text-block {
    max-width: 1200px;
    margin: 0 auto 24px;
}

.sponsor-gallery-card {
    width: 200px;
    background: #fff;
    border: 4px solid #000;
    box-shadow: 8px 8px 0px #000;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    flex: 0 0 auto;
}

.sponsor-gallery-marquee {
    padding: 8px 0 14px;
}

.sponsor-gallery-marquee .sponsor-logo-track {
    animation: none !important;
}

.sponsor-logo-track-right {
    animation: marquee-right 28s linear infinite;
    will-change: transform;
}

.sponsor-gallery-marquee .sponsor-logo-track:hover {
    animation-play-state: running;
}

.sponsor-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sponsor-text-block {
    flex: 1;
    min-width: 280px;
}

.sponsor-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #000;
    background: rgba(0, 0, 0, 0.1);
    padding: 6px 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.sponsor-title {
    font-family: var(--font-accent);
    font-size: clamp(3rem, 7vw, 5rem);
    color: #000;
    text-shadow: 5px 5px 0px rgba(255, 255, 255, 0.3);
    line-height: 0.95;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sponsor-title-accent {
    color: var(--clr-neon-pink);
    text-shadow: 5px 5px 0px #000;
}

.sponsor-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    line-height: 1.7;
    max-width: 520px;
}

.sponsor-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-sponsor {
    background-color: var(--clr-neon-pink);
    color: #fff;
    border: 4px solid #000;
    box-shadow: 8px 8px 0px #000;
    font-size: 1.3rem;
    padding: 20px 45px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-sponsor:hover {
    background-color: #000;
    color: var(--clr-electric-yellow);
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--clr-neon-pink);
}

.btn-sponsor:active {
    transform: translate(8px, 8px);
    box-shadow: 0px 0px 0px #000;
}

.sponsor-note {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: rgba(0,0,0,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   Exhibitor Section (Neon Pink Strip)
   ========================================================================== */
.exhibitor-section {
    background-color: var(--clr-neon-pink);
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    border-bottom: 10px solid #000;
    padding: 60px 20px;
    overflow: hidden;
    position: relative;
}

.btn-exhibitor {
    background-color: var(--clr-electric-yellow);
    color: #000;
    border: 4px solid #000;
    box-shadow: 8px 8px 0px #000;
    font-size: 1.3rem;
    padding: 20px 45px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-exhibitor:hover {
    background-color: #000;
    color: var(--clr-electric-yellow);
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--clr-cyan);
}

.btn-exhibitor:active {
    transform: translate(8px, 8px);
    box-shadow: 0px 0px 0px #000;
}

/* ==========================================================================
   About Section (Dominant Electric Yellow)
   ========================================================================== */
.about-section {
    background-color: var(--clr-electric-yellow); /* DOMINANT COLOR 2 */
    border-bottom: 10px solid #000;
    color: #000;
}

.about-section .section-title {
    color: var(--clr-neon-pink);
    text-shadow: 5px 5px 0px #000;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-visual {
    position: relative;
    height: 450px;
}

.visual-box {
    position: absolute;
    border: 6px solid #000;
    box-shadow: 12px 12px 0px #000;
}

.box-1 {
    width: 75%;
    height: 85%;
    top: 0;
    left: 0;
    background: var(--clr-cyan); /* Bright contrasting accent */
    z-index: 2;
    transform: rotate(-3deg);
    overflow: hidden; /* Prevent images spilling */
    position: absolute;
}

/* Gallery Slideshow styling inside box-1 */
.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    filter: sepia(30%) contrast(110%);
}

.gallery-slide.active {
    opacity: 1;
}

.box-2 {
    width: 65%;
    height: 75%;
    bottom: 0;
    right: 0;
    background: var(--clr-neon-pink);
    z-index: 1;
    transform: rotate(4deg);
}

/* ==========================================================================
   Districts Section (Dominant Cyan)
   ========================================================================== */
.districts-section {
    background-color: var(--clr-cyan); /* ACCENT DOMINANT */
    border-bottom: 10px solid #000;
    color: #000;
}

.districts-section .section-title {
    color: var(--clr-electric-yellow);
    text-shadow: 5px 5px 0px #000;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.district-card {
    background: #fff;
    border: 6px solid #000;
    padding: 40px 30px;
    box-shadow: 12px 12px 0px #000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.district-card::before { display: none; } /* Remove old colored top border */

.district-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 17px 17px 0px #000;
}

.card-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: none; /* Remove soft glows */
}

.card-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #000;
    text-transform: uppercase;
}

.card-desc {
    font-weight: 800;
    margin-bottom: 30px;
    font-size: 1.15rem;
}

.card-list {
    list-style: none;
    font-weight: 700;
    color: #000;
}

.card-list li {
    padding: 10px 0;
    border-bottom: 3px dashed rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.card-list li::before {
    content: '★';
    margin-right: 15px;
    color: var(--clr-neon-pink);
    font-size: 1.5rem;
    text-shadow: 2px 2px 0px #000;
}

.district-card:nth-child(2) .card-list li::before { color: var(--clr-electric-yellow); }
.district-card:nth-child(3) .card-list li::before { color: var(--clr-cyan); }

/* ==========================================================================
   Venue Map Section (Vibrant Checkerboard)
   ========================================================================== */
.map-section {
    background-color: var(--clr-cyan); /* Bright cyan base */
    background-image: linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.1) 75%, rgba(0,0,0,0.1)), linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.1) 75%, rgba(0,0,0,0.1));
    background-size: 60px 60px; /* Larger checkerboard */
    background-position: 0 0, 30px 30px;
    border-bottom: 10px solid #000;
    padding: 100px 20px 140px;
    clear: both;
    display: block;
    width: 100%;
}

.arena-title {
    margin-bottom: 60px;
    line-height: 0.9;
}

.text-the {
    color: #000; /* Black for high contrast against cyan */
    font-size: 0.7em;
    text-shadow: 5px 5px 0px #fff;
}

.text-arena {
    color: var(--clr-neon-pink); /* Switch to pink since bg is cyan */
    font-size: 1.25em;
    text-shadow: 6px 6px 0px #000;
}

.map-subtitle {
    color: #1a1a1a;
    font-weight: 900;
    font-size: 1.6rem;
    line-height: 1.4;
    margin-top: -30px;
    margin-bottom: 30px;
    text-shadow: none;
    letter-spacing: 1px;
}

.map-container-new {
    position: relative;
    max-width: 800px;
    margin: 60px auto 40px;
    padding-bottom: 20px; /* space for yellow shadow to breathe */
    padding-right: 20px;
}

.map-frame-yellow {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: var(--clr-electric-yellow);
    border: 8px solid #000;
    z-index: 1;
}

.map-frame-pink {
    position: relative;
    background-color: var(--clr-neon-pink);
    padding: 20px; /* thick pink frame */
    border: 8px solid #000;
    z-index: 2;
    display: block;
}

.map-image-new {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border: 6px solid #000;
    background: #fff;
    object-fit: contain;
}


/* ==========================================================================
   DYNAMIC SPONSORS MARQUEE
   ========================================================================== */
.sponsor-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.sponsor-logo-track {
    display: flex;
    width: max-content;
    gap: 4rem;
    align-items: center;
    animation: marquee 25s linear infinite;
}

.marquee-group {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.sponsor-logo-track:hover {
    animation-play-state: paused;
}

.dynamic-sponsor-logo {
    height: 80px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.75);
    transition: all 0.3s ease;
}
.dynamic-sponsor-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ==========================================================================
   Footer (Match Mockup)
   ========================================================================== */
.footer {
    background-color: #0A0A0A;
    padding: 80px 0 60px;
    color: #fff;
    border-top: 10px solid #000;
    clear: both;
    display: block;
    width: 100%;
    position: relative;
    z-index: 10;
}

.footer-content-new {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer-partner-label {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-bottom: -10px;
}

.footer-partner-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logo-link {
    display: flex;
    align-items: center;
}

.partner-logo {
    max-height: 90px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Make logos white */
    opacity: 0.85;
    transition: opacity 0.2s;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 55px;
    background-color: rgba(255,255,255,0.1);
    border: 3px dashed rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.6);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.mnp-address {
    font-style: normal;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-top: 5px;
}

.mnp-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 4px;
}

.footer-brand-new {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-width: 90%;
    width: 350px; /* appropriately sized logo */
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 1));
}

.brand-subtitle {
    font-family: var(--font-heading);
    color: var(--clr-cyan);
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.footer-links-new {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 0;
    justify-content: flex-start;
}

.footer-links-new a {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links-new a:hover {
    color: var(--clr-electric-yellow);
}

.footer-social-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-social-new {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-link-new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--clr-neon-pink);
    color: #fff;
    border: 4px solid #fff;
    transition: all 0.2s ease;
}

.social-link-new svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    transition: all 0.2s ease;
}

.social-link-new:hover {
    background-color: var(--clr-electric-yellow);
    border-color: #000;
}

.social-link-new:hover svg {
    stroke: #000;
}

.footer-bottom-band {
    background-color: #000; /* Solid black bar at the bottom */
    padding: 25px 0;
    margin-top: 60px;
    width: 100%;
    text-align: center;
    border-top: 4px dashed rgba(255,255,255,0.2);
}

.credits-text-line {
    color: var(--clr-electric-yellow);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credits-link {
    color: var(--clr-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.credits-link:hover {
    color: #fff;
}


/* ==========================================================================
   Scroll Animation Classes (Triggered by JS)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.section-title, .section-subtitle, .about-text, .about-visual, .district-card, .map-container-new {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Explicitly keep sponsor and exhibitor sections always visible */
.sponsor-section,
.sponsor-section *,
.exhibitor-section,
.exhibitor-section * {
    opacity: 1 !important;
    transform: none !important;
}

.section-title.aos-active, .section-subtitle.aos-active, .about-text.aos-active, .about-visual.aos-active, .district-card.aos-active, .map-container-new.aos-active {
    opacity: 1;
    transform: translateY(0);
}

/* Specific Delays for Grid Items */
.districts-grid .district-card:nth-child(1) { transition-delay: 0.1s; }
.districts-grid .district-card:nth-child(2) { transition-delay: 0.2s; }
.districts-grid .district-card:nth-child(3) { transition-delay: 0.3s; }

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 900px) {
    body.nav-open { overflow: hidden; }

    .navbar-toggle { display: flex; }

    .navbar-container {
        height: 80px;
    }

    .navbar-logo { height: 78px; }

    .navbar-links {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #0A0A0A;
        border-bottom: 6px solid var(--clr-electric-yellow);
        box-shadow: 0 10px 0 #000;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 24px 22px 30px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
        z-index: 1001;
    }

    .navbar-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-links a {
        width: 100%;
        padding: 8px 4px;
        font-size: 1.05rem;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .navbar-links a:hover {
        transform: translateX(4px);
    }

    .about-container { grid-template-columns: 1fr; }
    
    .hero-logo { width: 90%; max-width: 400px; }
    
    .section-title { font-size: clamp(2.5rem, 10vw, 4rem); }
    
    .date-location { padding: 10px 20px; font-size: 1rem; }
    
    .countdown-item { padding: 15px; min-width: 90px; }
    .countdown-number { font-size: 2.5rem; }

    /* Map & Footer overrides */
    .map-frame-yellow { left: 10px; top: 15px; }
    .map-frame-pink { padding: 10px; border-width: 4px; }
    .map-image-new { border-width: 4px; }

    /* Footer responsive */
    .footer-main-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-links-new { gap: 15px; }
    .footer-links-new a { font-size: 1.2rem; }
    .credits-text-line { font-size: 0.85rem; line-height: 1.5; }

    .sponsor-gallery-card {
        width: 160px;
        min-height: 100px;
        padding: 12px;
    }
}
