/* ============================================
   HERO BANNER COMPONENT - Simple Hero with 2 CTAs
   ============================================ */

.hero-banner-section {
    position: relative;
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
    text-align: center;
}

/* Background image overlay */
.hero-banner-section.has-background {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Title */
.hero-banner-title {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* When background image is present, make text white */
.hero-banner-section.has-background .hero-banner-title {
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Subtitle */
.hero-banner-subtitle {
    font-size: var(--text-xl);
    color: var(--gray-700);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-banner-section.has-background .hero-banner-subtitle {
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Actions */
.hero-banner-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Button enhancements */
.hero-banner-actions .btn,
.hero-banner-actions .btn-success-outlined {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all 0.3s ease;
}

.hero-banner-actions .btn i,
.hero-banner-actions .btn-success-outlined i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.hero-banner-actions .btn:hover i {
    transform: translateX(4px);
}

.hero-banner-actions .btn-success-outlined:hover i {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero-banner-section {
        padding: var(--space-2xl) 0;
    }
    
    .hero-banner-section.has-background {
        min-height: 500px;
    }
    
    .hero-banner-title {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-md);
    }
    
    .hero-banner-subtitle {
        font-size: var(--text-base);
        margin-bottom: var(--space-xl);
    }
    
    .hero-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-banner-actions .btn,
    .hero-banner-actions .btn-success-outlined {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-banner-title {
        font-size: var(--text-xl);
        line-height: 1.3;
    }
    
    .hero-banner-subtitle {
        font-size: var(--text-sm);
    }
}
