/* ==========================================================================
   COMPONENT - HERO SECTION
   ========================================================================== */

.hero-section-container {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(3, 7, 18, 0.98) 100%), url('../../images/hero-bg.jpg') center/cover no-repeat fixed;
    min-height: 90vh;
}

body[data-theme="light"] .hero-section-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 244, 248, 0.95) 100%), url('../../images/hero-bg.jpg') center/cover no-repeat fixed;
}

.hero-badge-glow {
    background: hsla(353, 100%, 62%, 0.12);
    color: var(--primary);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    font-size: var(--font-xs);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    border: 1px solid hsla(353, 100%, 62%, 0.25);
    display: inline-block;
}

.hero-headline {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
    text-transform: none;
    color: var(--text-50);
}

.hero-headline span {
    color: var(--primary);
}

.hero-description {
    font-size: var(--font-lg);
    line-height: var(--leading-relaxed);
    font-weight: var(--font-weight-light);
    color: var(--text-400);
}