/*
 * BWS Common Hero Styles
 * Shared hero section styling for all main pages (About, Contact, Calculator, etc.)
 * Based on the cooler lineup page design
 * Requires: global-variables.css
 */

/* ===================================
   HERO SECTION
   =================================== */
.support-hero {
    padding: var(--spacing-xxl) 0;
    background: var(--color-teal-blue);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.support-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.support-hero-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.support-hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    color: white;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg) auto;
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

.stat-number {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
    color: var(--color-lime-green);
}

.stat-label {
    font-size: 0.9rem;
    color: white;
    opacity: 0.9;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-teal-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 80px;
    background: var(--color-lime-green);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-dark-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */
@media (max-width: 768px) {
    .hero-stats {
        gap: var(--spacing-lg);
    }

    .stat-item {
        flex: 1 1 auto;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .support-hero {
        padding: var(--spacing-xl) 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}