/* Judith Landing Page */

/* ==================== Base ==================== */
.landing-body {
    background: #0a0618;
}

/* ==================== Navigation ==================== */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: transparent;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.landing-nav.scrolled {
    background: rgba(10, 6, 24, 0.92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.landing-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.landing-nav-logo .logo-symbol {
    height: 28px;
    opacity: 0.85;
}

.landing-nav-logo .logo-wordmark {
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.06em;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.landing-nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.15s ease;
    text-decoration: none;
}

.landing-nav-links a:hover {
    color: white;
}

.btn-nav {
    background: rgba(124, 58, 237, 0.85);
    color: rgba(255, 255, 255, 0.95) !important;
    padding: 8px 22px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 0.15s ease, transform 0.15s ease;
    text-decoration: none;
}

.btn-nav:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

/* ==================== Hero ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0618;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 80px 48px 60px;
}

/* Spotlight from above */
.hero-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 800px;
    background: radial-gradient(ellipse 60% 60% at 50% 15%, rgba(124, 58, 237, 0.22) 0%, rgba(124, 58, 237, 0.06) 45%, transparent 70%);
    pointer-events: none;
}

/* Theatrical curtain vignette on sides */
.hero-curtain-left,
.hero-curtain-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 28%;
    pointer-events: none;
    z-index: 0;
}

.hero-curtain-left {
    left: 0;
    background: linear-gradient(to right, rgba(4, 2, 10, 0.75) 0%, transparent 100%);
}

.hero-curtain-right {
    right: 0;
    background: linear-gradient(to left, rgba(4, 2, 10, 0.75) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.28);
    color: rgba(167, 139, 250, 0.85);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 7.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    line-height: 1;
    text-shadow: 0 0 100px rgba(124, 58, 237, 0.45), 0 2px 40px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 52px;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: #7c3aed;
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 0 32px rgba(124, 58, 237, 0.35);
}

.btn-hero-primary:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 0 48px rgba(124, 58, 237, 0.5);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.btn-hero-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    background: rgba(255, 255, 255, 0.06);
}

/* Scroll line indicator */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
    margin: 0 auto;
    animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); transform-origin: top; }
    50% { opacity: 0.8; transform: scaleY(1); transform-origin: top; }
}

/* ==================== Sections ==================== */
.section {
    padding: 100px 48px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7c3aed;
    text-align: center;
    margin-bottom: 14px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 56px;
    font-size: 1rem;
}

/* ==================== Season Section ==================== */
.season-section {
    background: #0d0922;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.season-section .section-label {
    color: rgba(167, 139, 250, 0.7);
}

.season-section .section-title {
    color: white;
}

.season-section .section-subtitle {
    color: rgba(255, 255, 255, 0.4);
}

.loading-center {
    text-align: center;
    padding: 48px;
}

.spinner-light {
    border-color: rgba(255, 255, 255, 0.12) !important;
    border-top-color: #7c3aed !important;
}

/* Season card — generated by landing.js, must keep class names */
.season-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 56px 48px;
    text-align: center;
}

.season-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.18);
    color: rgba(167, 139, 250, 0.9);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.season-name {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.season-date {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.countdown {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 24px 28px;
    min-width: 96px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: #a78bfa;
    line-height: 1;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.season-empty {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    padding: 40px 0;
}

.season-actions {
    margin-top: 40px;
}

/* ==================== About Section ==================== */
.about-section {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-stat {
    background: #fafafa;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #f0f0f4;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.about-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 6px;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ==================== Footer ==================== */
.landing-footer {
    background: #08050f;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 56px 48px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 26px;
    opacity: 0.6;
}

.footer-logo span {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.07em;
}

.footer-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.18);
    margin: 0;
}

/* ==================== Responsive ==================== */
@media (max-width: 768px) {
    .landing-nav {
        padding: 0 24px;
    }

    .landing-nav-links {
        gap: 20px;
    }

    .landing-nav-links a:not(.btn-nav) {
        display: none;
    }

    .hero {
        padding: 100px 24px 72px;
    }

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

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .section {
        padding: 72px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .season-card {
        padding: 40px 24px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-box {
        min-width: 72px;
        padding: 18px 12px;
    }

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

    .landing-footer {
        padding: 40px 24px;
    }

    .footer-links {
        gap: 16px;
    }
}
