/* ========================================
   LOADING SCREEN
   ======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    animation: fadeInScale 0.8s ease-out;
}

.loading-logo {
    width: 150px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--neon-cyan));
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ========================================
   ANNOUNCEMENT BANNER
   ======================================== */
.announcement-banner-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.announcement-banner {
    background: linear-gradient(90deg, #ff00aa 0%, #00f0ff 25%, #a000ff 50%, #ff00aa 75%, #00f0ff 100%);
    background-size: 200% 100%;
    animation: gradient-shift 8s ease infinite;
    padding: 0.5rem 0;
    overflow: hidden;
    position: fixed;
    top: 76px;
    width: 100%;
    z-index: 500;
    box-shadow: 0 0 30px rgba(255, 0, 170, 0.8), 0 0 60px rgba(0, 240, 255, 0.4);
    border-bottom: 2px solid rgba(0, 240, 255, 0.6);
    transition: all 0.3s ease;
}

.announcement-banner-link:hover .announcement-banner {
    box-shadow: 0 0 40px rgba(255, 0, 170, 1), 0 0 80px rgba(0, 240, 255, 0.6);
    border-bottom: 2px solid rgba(0, 240, 255, 1);
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.marquee-content {
    display: flex;
    animation: marquee-scroll 25s linear infinite;
    white-space: nowrap;
    gap: 0;
}

.marquee-text {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 240, 255, 1), 0 0 30px rgba(255, 0, 170, 0.8);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1.5px;
    padding: 0 4rem;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ========================================
   ASME EFx SRIT 2026 - Dark Mode Styles
   High-Tech Design with Neon Accents
   ======================================== */

/* CSS Variables */
:root {
    /* Dark Mode Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #13131a;
    --bg-tertiary: #1a1a24;
    --bg-card: #1e1e2e;

    /* Neon Accent Colors */
    --neon-cyan: #00f0ff;
    --neon-magenta: #ff00aa;
    --neon-purple: #a000ff;
    --neon-blue: #0066ff;
    --neon-green: #00ff88;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b8d1;
    --text-muted: #6b6b8a;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
    --gradient-accent: linear-gradient(90deg, var(--neon-magenta), var(--neon-cyan));

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-primary: 'Proxima Nova', sans-serif;
    --font-heading: 'Proxima Nova', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--neon-magenta);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    z-index: 1000;
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.nav-brand:hover .nav-logo {
    filter: drop-shadow(0 0 15px var(--neon-cyan));
}

.nav-logo {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtext {
    font-size: 0.65rem;
    color: var(--neon-cyan);
    letter-spacing: 2px;
    margin-top: -3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--neon-cyan);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    transition: var(--transition-base);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.1) 0%, var(--bg-primary) 70%);
    padding-top: 190px;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.3));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Proxima Nova', 'Proxima Nova Alt', 'Segoe UI', 'Orbitron', sans-serif;
}

.glitch {
    position: relative;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch 3s infinite;

    font-family: 'Proxima Nova', 'Proxima Nova Alt', sans-serif;
    font-weight: 800;
    text-shadow: 0 0 25px rgba(0, 240, 255, 0.35);
}

@keyframes glitch {

    0%,
    90%,
    100% {
        transform: translate(0);
    }

    92% {
        transform: translate(-1px, 1px);
    }

    94% {
        transform: translate(1px, -1px);
    }

    96% {
        transform: translate(-1px, -1px);
    }

    98% {
        transform: translate(1px, 1px);
    }
}

.hero-subtitle {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--neon-magenta);
    text-shadow: 0 0 20px var(--neon-magenta);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.highlight {
    color: var(--neon-cyan);
    font-weight: 600;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    min-width: 120px;
}

.countdown-value {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
    min-width: 80px;
    text-align: center;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    padding: 0.75rem 2rem;
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* ========================================
   SECTION STYLES
   ======================================== */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
    scroll-margin-top: 140px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.title-line {
    width: 100px;
    height: 2px;
    background: var(--gradient-accent);
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* ========================================
   ABOUT EFX SECTION
   ======================================== */
.about-efx {
    background: var(--bg-secondary);
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: var(--transition-base);
    text-align: center;
}

.feature-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.feature-icon svg {
    color: var(--neon-cyan);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-quote {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(160, 0, 255, 0.1));
    padding: 2rem 3rem;
    border-left: 4px solid var(--neon-cyan);
    border-radius: 10px;
    margin-top: 3rem;
}

.about-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    text-align: center;
}

/* ========================================
   ABOUT ASME EFX EVENTS
   ======================================== */
.about-asme-efx {
    background: var(--bg-primary);
}

.asme-efx-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.asme-efx-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.efx-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   ABOUT HOST SECTION
   ======================================== */
.about-host {
    background: var(--bg-secondary);
}

.host-content {
    max-width: 1000px;
    margin: 0 auto;
}

.host-main h3,
.host-subsection h3 {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    text-align: center;
}

.host-main p,
.host-subsection p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.host-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.host-buttons .btn {
    min-width: 180px;
    text-align: center;
}

.host-subsection {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.achievement-list {
    list-style: none;
    margin-top: 1.5rem;
}

.achievement-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.achievement-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-size: 1.5rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.achievement-item {
    background: rgba(0, 240, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    text-align: center;
}

.achievement-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.achievement-icon svg {
    width: 40px;
    height: 40px;
}

.venue-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 170, 0.2);
}

.venue-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    color: var(--neon-magenta);
    margin-bottom: 1.5rem;
}

.venue-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.venue-icon svg {
    width: 28px;
    height: 28px;
}

.venue-address {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
}

.venue-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   EVENTS SECTION
   ======================================== */
.events {
    background: var(--bg-primary);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.event-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: var(--transition-base);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.event-header {
    background: var(--gradient-primary);
    padding: 2rem;
    text-align: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.event-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.event-icon svg,
.event-icon img {
    color: var(--text-primary);
    filter: brightness(0) invert(1);
}

.event-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.event-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-body p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-highlights {
    list-style: none;
    margin-top: 1.5rem;
}

.event-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.event-highlights li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-size: 1.2rem;
}

.event-info-box {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(160, 0, 255, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-item {
    color: var(--text-secondary);
    font-size: 1.1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 32px;
    height: 32px;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-copy {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-copy strong {
    color: var(--neon-cyan);
    margin: 0;
}

.info-copy span {
    color: var(--text-secondary);
}

.event-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-text {
    padding: 2rem;
    width: 100%;
}

.gallery-text h3 {
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.gallery-text p {
    color: var(--text-secondary);
}

.gallery-cta {
    text-align: center;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--neon-cyan);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
}

.contact-details h4 {
    color: var(--neon-magenta);
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-details a:hover {
    color: var(--neon-cyan);
}

.social-links {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.social-links h4 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--neon-cyan);
    transition: var(--transition-base);
}

.social-link:hover svg {
    fill: var(--bg-primary);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-form .btn-primary {
    width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-secondary);
    padding: var(--spacing-lg) 0 2rem;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-buttons .btn {
    flex: 1;
    text-align: center;
    min-width: 150px;
}

.footer-logos {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.footer-logos a {
    display: inline-block;
    transition: var(--transition-base);
}

.footer-logos a:hover {
    transform: translateY(-5px);
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition-base);
}

.footer-logo:hover {
    opacity: 1;
}

.efx-logo {
    height: 55px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--neon-cyan);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-info {
    font-size: 0.95rem;
    line-height: 2;
}

.footer-map {
    margin-top: 3rem;
    text-align: center;
}

.footer-map h3 {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.map-iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 15px;
    border: 2px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.map-link {
    display: inline-block;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 240, 255, 0.3);
    transition: var(--transition-base);
    max-width: 800px;
    width: 100%;
}

.footer-map-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-base);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.map-overlay span {
    color: var(--neon-cyan);
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.map-link:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
    transform: translateY(-5px);
}

.map-link:hover .footer-map-image {
    transform: scale(1.05);
}

.map-link:hover .map-overlay {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    color: var(--text-muted);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .nav-logo {
        height: 40px;
    }

    .hero-logo img {
        max-width: 200px;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    }

    .hamburger {
        display: flex;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        padding: 1rem 1.5rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
        gap: 1rem;
    }

    .title-line {
        width: 50px;
    }

    .hero-cta,
    .event-cta,
    .efx-links,
    .venue-links {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* Selection */
::selection {
    background: var(--neon-cyan);
    color: var(--bg-primary);
}

::-moz-selection {
    background: var(--neon-cyan);
    color: var(--bg-primary);
}

.event-detail-section .container {
    max-width: 1300px;
    /* makes content wider */
}

.event-detail-card {
    width: 100%;
    padding: 3rem;
}

@media (max-width: 768px) {

    .hero {
        min-height: auto;
        /* allow content to define height */
        padding-top: 170px;
        /* navbar + banner space */
        padding-bottom: 60px;
        /* space for buttons */
    }

}

@media (max-width: 480px) {
    .countdown-item {
        min-width: 45%;
        padding: 1rem;
    }

    .countdown-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .announcement-banner {
        top: 64px;
    }
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.modal-content {
    position: relative;
    background: #111;
    padding: 1rem;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    z-index: 2;
}

.modal-content img {
    width: 100%;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ff00aa;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .event-detail-card {
        padding: 1.5rem;
        /* reduce heavy padding */
    }

    .event-detail-header {
        flex-direction: column;
        /* stack logo and title */
        text-align: center;
        gap: 1rem;
    }

    .event-detail-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .event-detail-content p,
    .event-detail-content li {
        font-size: 1rem;
        line-height: 1.7;
    }

    .event-detail-content ul {
        margin-left: 1.2rem;
        /* prevent edge collision */
    }

}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}