﻿/* ===== HERO SECTION ===== */

.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(240, 233, 255, 0.85) 0%, rgba(226, 232, 255, 0.75) 50%, rgba(245, 238, 255, 0.85) 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: clamp(2.2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    margin-bottom: 3.5rem;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, rgba(26, 32, 45, 0.85) 0%, rgba(20, 26, 38, 0.95) 50%, rgba(24, 30, 42, 0.85) 100%);
    border-color: rgba(255, 255, 255, 0.08);
}

.hero::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194, 109, 132, 0.22) 0%, transparent 70%);
    filter: blur(25px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(194, 109, 132, 0.12);
    border: 1px solid rgba(194, 109, 132, 0.2);
    color: var(--accent-strong);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
}

body.dark-mode .hero-badge {
    background: rgba(232, 183, 195, 0.12);
    border-color: rgba(232, 183, 195, 0.25);
    color: #e8b7c3;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--primary-deep);
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}

.hero-desc {
    color: var(--muted);
    font-size: clamp(1.02rem, 1.8vw, 1.2rem);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-btn-primary {
    background: var(--accent-gradient);
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(194, 109, 132, 0.28);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(194, 109, 132, 0.38);
    filter: brightness(1.05);
}

.hero-btn-secondary {
    background: var(--surface);
    color: var(--primary-deep) !important;
    border: 1px solid var(--line);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.hero-btn-secondary:hover {
    transform: translateY(-2px);
    background: var(--surface-alt);
    border-color: var(--card-border-hover);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    font-size: 0.9em;
    transition: transform 0.25s ease;
}

.hero-btn:hover .btn-icon {
    transform: translateY(2px);
}

.hero-btn-secondary:hover .btn-icon {
    transform: translateX(2px);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(194, 109, 132, 0.12);
}

.highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
}

.highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(194, 109, 132, 0.12);
    color: var(--accent);
    font-size: 0.8rem;
}

/* ===== CTA STRIP BELOW POSTER HERO ===== */

.hero-cta-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.6rem, 2vw, 1rem);
    padding: clamp(1.2rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
    background: var(--bg);
    /* Appear right as the LUMORA title starts expanding (title delays 0.2s).
       Duration is !important so it stays smooth even under the global
       prefers-reduced-motion override, matching the poster's entrance. */
    animation: cta-slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
    animation-duration: 0.8s !important;
}

@keyframes cta-slide-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
