/* ==========================================================================
   HERO.CSS - Immersive Hero Banner with Visual Elements & Metrics
   Collectif Bouaye Pro
   ========================================================================== */

.hero-section {
    padding-top: 140px;
    padding-bottom: 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(12, 30, 52, 0.94) 0%, rgba(19, 42, 71, 0.88) 100%), 
                url('../assets/hero-bg.jpg') center/cover no-repeat;
    color: var(--color-text-white);
    overflow: hidden;
}

/* Floating decorative light orbs */
.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--color-teal-glow) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-orange-glow) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Text Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-teal-light);
    margin-bottom: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-badge span.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-orange-brand);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-orange-brand);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 112, 41, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(217, 112, 41, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 112, 41, 0); }
}

.hero-title {
    font-size: 3.5rem;
    color: var(--color-text-white);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #00C4CC, var(--color-orange-brand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #E2E8F0;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 620px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Right Column Visual Card / Logo Frame */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    max-width: 380px;
    width: 100%;
}

.hero-card-glass img {
    max-width: 220px;
    margin: 0 auto 1.5rem auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.hero-card-glass p {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-teal-light);
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Metrics Row */
.hero-metrics {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-orange-brand);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #CBD5E1;
}

@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
