/* ================================
   HERO BANNER
   ================================ */

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-headline {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-hero {
    display: inline-block;
    background: #cc3333;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    border: 2px solid #cc3333;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* ================================
   RAIN STREAK ANIMATION
   ================================ */

.hero-line-reveal {
    position: relative;
    display: inline-block;
}

.streak {
    position: absolute;
    left: 0;
    height: 2px;
    border-radius: 2px;
    z-index: 10;
    animation: streakMove 0.8s ease-out forwards;
    pointer-events: none;
}

.streak-red {
    background: #cc3333;
}

.streak-white {
    background: #fff;
}

.streak-black {
    background: #222;
}

@keyframes streakMove {
    0% {
        left: 0;
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* ================================
   HERO RESPONSIVE
   ================================ */

@media (max-width: 991.98px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-subheadline {
        font-size: 1.15rem;
    }
}

@media (max-width: 575.98px) {
    .hero {
        min-height: 60vh;
        padding: 3rem 0;
    }
    
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 0.85rem 2rem;
        font-size: 0.9rem;
    }
}