/* ===================================
   HERO BANNER — Bold Branding
   =================================== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    justify-content: center; text-align: center; overflow: hidden;
    background: #000;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('/assets/images/hero-banner.png') center center / cover no-repeat;
    opacity: 0.6;
    z-index: 0;
}
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 300px;
    background: linear-gradient(transparent, var(--bg-primary)); z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: var(--space-lg); }
.hero-logo {
    width: 180px; height: 180px; margin: 0 auto var(--space-lg);
    border-radius: 50%;
    border: 3px solid rgba(255,106,0,0.4);
    object-fit: cover;
    filter: drop-shadow(0 0 25px rgba(255,106,0,0.6)) drop-shadow(0 0 50px rgba(255,60,0,0.3));
    animation: heroLogoPulse 4s ease-in-out infinite;
}
@keyframes heroLogoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 25px rgba(255,106,0,0.6)) drop-shadow(0 0 50px rgba(255,60,0,0.3));
        border-color: rgba(255,106,0,0.4);
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(255,106,0,0.8)) drop-shadow(0 0 70px rgba(255,60,0,0.4)) drop-shadow(0 0 100px rgba(255,215,0,0.15));
        border-color: rgba(255,215,0,0.5);
    }
}

.hero-title {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    line-height: 0.95;
    position: relative;
    background: linear-gradient(180deg, #FFD700 0%, #FF8C00 30%, #FF6A00 60%, #CC5500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255,106,0,0.5)) drop-shadow(0 0 40px rgba(255,60,0,0.3));
}
.hero-title-sub {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: clamp(4rem, 14vw, 10rem);
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 0.9;
    display: block;
    background: linear-gradient(180deg, #FFD700 0%, #FF8C00 25%, #FF6A00 55%, #CC5500 85%, #8B3A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(255,106,0,0.6)) drop-shadow(0 0 50px rgba(255,60,0,0.3));
}

.hero-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    color: #ccaa77;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: var(--space-md);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.hero-subtitle {
    font-family: var(--font-body); font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary); margin-bottom: var(--space-xl);
    font-weight: 300; letter-spacing: 3px; text-transform: uppercase;
}
.hero-buttons { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

/* Decorative flame lines */
.hero-flame-line {
    width: 120px; height: 3px; margin: 0 auto;
    background: linear-gradient(90deg, transparent, #FF6A00, #FFD700, #FF6A00, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255,106,0,0.5), 0 0 25px rgba(255,215,0,0.2);
}

.hero-vignette {
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, transparent 20%, rgba(0,0,0,0.7) 100%);
    z-index: 0;
}
.hero-fire-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
    background: linear-gradient(transparent, rgba(255,60,0,0.05), rgba(255,106,0,0.02));
    z-index: 0; animation: fireFlicker 4s ease-in-out infinite;
}
