/* ============================================
   LANDING PAGE - FUTURISTIC DREAM THEME
   ============================================ */

@font-face {
    font-family: 'Meatbusters';
    src: url('fonts/MeatbustersBold-1G1w0.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ROOT VARIABLES */
:root {
    --primary-cyan: #00f0ff;
    --primary-magenta: #ff006e;
    --primary-violet: #b537f2;
    --secondary-cyan: #00d9ff;
    --secondary-magenta: #ff3385;
    --dark-bg: #0a0e27;
    --dark-card: #1a1f3a;
    --glowing-text: #00f0ff;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-gold: #ffd700;
    
    --font-title: 'Meatbusters', sans-serif;
    --font-body: 'Meatbusters', sans-serif;
    --font-peanut: 'Meatbusters', sans-serif;
    
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
    --glow-magenta: 0 0 20px rgba(255, 0, 110, 0.5), 0 0 40px rgba(255, 0, 110, 0.3);
    --glow-violet: 0 0 20px rgba(181, 55, 242, 0.5), 0 0 40px rgba(181, 55, 242, 0.3);
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-y: auto;
}

body {
    font-family: var(--font-body);
    /* Background image moved to media queries to prevent double download */
    background-color: var(--dark-bg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-light);
    overflow-y: auto; /* Allow scrolling */
    position: relative;
    min-height: 100vh; /* Fit to screen */
    width: 100vw;
}

/* CONSTELLATION CANVAS */
/* Renaming to avoid conflict, keeping as fallback or removing if fully replaced */
.constellation-canvas {
    display: none; /* Hide old canvas */
}

/* NEW PORTAL CANVAS */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Behind everything */
    /* Deep space gradient foundation */
    background: radial-gradient(circle at center, #0b0f29 0%, #000000 100%);
    pointer-events: none; /* Let clicks pass through */
}

/* Enhancements for Portal Feel */
body {
    background-color: transparent !important; /* Let canvas show */
    perspective: 1000px; /* For warping text effects */
    overflow-x: hidden; /* Prevent scrollbar during warp */
}

.hero-content {
    /* Removed boxy background for portal effect */
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 0 80px rgba(181, 55, 242, 0.2); */
}

/* Button Pulse for extra portal juice */
.btn-primary {
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 240, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    padding: 1rem 0;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--glowing-text);
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(0, 240, 255, 0.8),
        0 0 20px rgba(0, 240, 255, 0.6),
        0 0 30px rgba(0, 240, 255, 0.4),
        0 0 40px rgba(255, 0, 110, 0.3);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
}

.nav-link.auth-link {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link.auth-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

/* ============================================
   BACK TO HOME BUTTON
   ============================================ */
.back-to-home {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-cyan);
    border-radius: 4px;
    color: var(--primary-cyan);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.back-to-home:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--primary-magenta);
    color: var(--primary-magenta);
    transform: translateX(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(255, 0, 110, 0.3);
}

.back-to-home svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    flex: 1; /* Replace min-height with flex: 1 to fill available space */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 60px; /* Slightly reduced padding */
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.traveler-greeting {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    border: 2px solid var(--primary-cyan);
    border-radius: 4px;
    box-shadow: var(--glow-cyan);
    animation: greeting-pulse 2s ease-in-out infinite;
}

@keyframes greeting-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.4), 0 0 20px rgba(0, 240, 255, 0.2);
        border-color: var(--primary-cyan);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.6), 0 0 40px rgba(0, 240, 255, 0.4);
        border-color: var(--primary-magenta);
    }
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta), var(--primary-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 20px rgba(0, 240, 255, 1),
        0 0 40px rgba(0, 240, 255, 0.8),
        0 0 60px rgba(0, 240, 255, 0.6),
        0 0 80px rgba(255, 0, 110, 0.5),
        0 0 100px rgba(181, 55, 242, 0.3);
    animation: glow-pulse 3s ease-in-out infinite;
}

.hero-subtitle {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
    letter-spacing: 1px;
    text-shadow: var(--glow-cyan);
}

.hero-description {
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-family: var(--font-body);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    color: #000;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

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

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    color: #000;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.6), 0 0 60px rgba(255, 0, 110, 0.4);
}

.btn-large {
    padding: 1.3rem 3.5rem;
    font-size: 1.1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    position: relative;
    z-index: 2;
    padding: 6rem 2rem;
    min-height: auto;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 15px rgba(0, 240, 255, 0.8),
        0 0 30px rgba(0, 240, 255, 0.6),
        0 0 45px rgba(255, 0, 110, 0.4);
}

.section-subtitle {
    text-align: center;
    color: var(--primary-violet);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

/* INTRODUCTION SECTION */
.introduction-section {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.02) 0%, rgba(181, 55, 242, 0.02) 100%);
    border-top: 1px solid rgba(0, 240, 255, 0.15);
    border-bottom: 1px solid rgba(181, 55, 242, 0.15);
}

.intro-card {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.05), 0 0 30px rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.intro-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.1), 0 0 40px rgba(0, 240, 255, 0.2);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* ============================================
   PATTERNS SECTION
   ============================================ */
.patterns-section {
    background: linear-gradient(135deg, rgba(181, 55, 242, 0.02) 0%, rgba(255, 0, 110, 0.02) 100%);
}

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

.pattern-card {
    background: rgba(26, 31, 58, 0.5);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pattern-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pattern-card:hover {
    border-color: var(--primary-cyan);
    background: rgba(26, 31, 58, 0.8);
    transform: translateY(-10px);
    box-shadow: 
        0 10px 40px rgba(0, 240, 255, 0.2),
        inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.pattern-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.pattern-card:hover .pattern-icon {
    transform: scale(1.2) rotateZ(10deg);
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.6));
}

.pattern-name {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-cyan);
    letter-spacing: 1px;
}

.pattern-meaning {
    color: var(--primary-magenta);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pattern-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pattern-ancient {
    background: rgba(181, 55, 242, 0.1);
    border-left: 3px solid var(--primary-violet);
    padding: 1rem;
    border-radius: 4px;
    text-align: left;
    font-size: 0.85rem;
}

.pattern-ancient .label {
    color: var(--primary-violet);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.pattern-ancient p {
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================
   ANCIENT WRITINGS SECTION
   ============================================ */
.ancient-section {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.02) 0%, rgba(0, 240, 255, 0.02) 100%);
}

.quotes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.hologram-panel {
    background: rgba(26, 31, 58, 0.4);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.glow-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta), var(--primary-violet)) 1;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.hologram-panel:hover .glow-border {
    opacity: 1;
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.2);
}

.quote-content {
    position: relative;
    z-index: 2;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--glowing-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    letter-spacing: 0.3px;
}

.quote-source {
    font-size: 0.9rem;
    color: var(--primary-magenta);
    font-style: italic;
    text-align: right;
}

.hologram-panel:hover {
    transform: translateY(-5px);
    background: rgba(26, 31, 58, 0.7);
    box-shadow: 
        0 10px 40px rgba(0, 240, 255, 0.15),
        0 0 30px rgba(255, 0, 110, 0.1);
}

.hologram-panel:hover .quote-text {
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

/* ============================================
   MODERN INTERPRETATION SECTION
   ============================================ */
.modern-section {
    background: linear-gradient(135deg, rgba(181, 55, 242, 0.02) 0%, rgba(255, 0, 110, 0.02) 100%);
    border-top: 1px solid rgba(0, 240, 255, 0.15);
    border-bottom: 1px solid rgba(181, 55, 242, 0.15);
}

.interpretation-grid {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.interpretation-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.ancient-side,
.modern-side {
    background: rgba(26, 31, 58, 0.5);
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.ancient-side {
    border-color: rgba(181, 55, 242, 0.4);
}

.ancient-side:hover {
    border-color: var(--primary-violet);
    background: rgba(26, 31, 58, 0.7);
    box-shadow: 0 0 30px rgba(181, 55, 242, 0.2);
}

.modern-side {
    border-color: rgba(0, 240, 255, 0.4);
}

.modern-side:hover {
    border-color: var(--primary-cyan);
    background: rgba(26, 31, 58, 0.7);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.side-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ancient-side h4,
.modern-side h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.ancient-side h4 {
    color: var(--primary-violet);
}

.modern-side h4 {
    color: var(--primary-cyan);
}

.ancient-side p,
.modern-side p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.connection-line {
    width: 3px;
    height: 80%;
    background: linear-gradient(180deg, var(--primary-violet) 0%, var(--primary-cyan) 50%, var(--primary-magenta) 100%);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    border-radius: 10px;
    animation: pulse-line 2s ease-in-out infinite;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.03) 0%, rgba(181, 55, 242, 0.03) 100%);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    text-align: center;
    padding: 8rem 2rem;
}

.cta-section .section-content {
    max-width: 800px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: transparent;
    border-top: none;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

.footer-links a:hover {
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    }
    50% {
        text-shadow: 0 0 40px rgba(0, 240, 255, 0.8);
    }
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    body {
        overflow-y: auto; /* Allow scrolling on smaller screens */
        height: auto;
    }

    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
        flex-wrap: wrap; /* Ensure links wrap if needed */
        justify-content: center;
    }

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

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

    .hero-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .section {
        padding: 4rem 1rem;
    }

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

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

    .quotes-container {
        grid-template-columns: 1fr;
    }

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

    .connection-line {
        width: 3px;
        height: 30px;
        transform: rotate(90deg);
    }

    .intro-card {
        padding: 2rem;
    }

    .pattern-card {
        padding: 1.5rem;
    }

    .hologram-panel {
        padding: 2rem;
    }

    .quote-text {
        font-size: 1.1rem;
    }
}

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

    .navbar-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .nav-links {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem;
    }

    .hero {
        min-height: 80vh;
        padding-top: 60px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

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

    .hero-description {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 4rem 1rem;
    }
}

/* Desktop default */
@media (min-width: 769px) {
    body {
        background-image: url('../Resources/Landing/landing-bg-optimized.webp');
    }
}

/* ============================================
   MOBILE PERFORMANCE OPTIMIZATION
   ============================================ */
@media (max-width: 768px) {
    body {
        /* Use the cropped, resized mobile version (~50KB instead of ~250KB+) */
        background-image: url('../Resources/Landing/landing-bg-mobile.webp');
        /* Reset attachment for mobile to prevent scroll lag */
        background-attachment: scroll; 
    }
}
/* .hero-logo style removed to prevent unwanted background/shadow on video logo */
.hero-logo {
    width: 125px;
    height: auto;
    margin-bottom: 2rem;
    object-fit: cover;
    background: transparent;
    z-index: 10;
}
