/*
 * quisommesnous.css — Page "Qui sommes-nous ?"
 * ✅ Chemin absolu supprimé → --banner-img via style inline PHP
 * ✅ --light-color → --light-bg
 * ✅ .card et .testimonial retirés (hérités de main.css/home.css)
 */

/* ═══════════════════════════════════════════
   HERO BANNIÈRE
═══════════════════════════════════════════ */
.about-hero {
    background-color: var(--blue-900); /* fallback */
    background-image:
        linear-gradient(rgba(10,22,40,.70), rgba(13,59,140,.65)),
        var(--banner-img, none);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: .02em;
}

.about-hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   TITRES DE SECTIONS
═══════════════════════════════════════════ */
.about-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--blue-900);
}

/* ═══════════════════════════════════════════
   TEXTE PRÉSENTATION
═══════════════════════════════════════════ */
.about-text p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════
   STATISTIQUES
═══════════════════════════════════════════ */
.about-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-500);
    line-height: 1;
}

.about-stat-label {
    font-size: .82rem;
    color: var(--text-soft);
    margin-top: .25rem;
}

/* ═══════════════════════════════════════════
   CARTES MISSION
   ✅ CORRIGÉ : .card générique remplacé par .mission-card dédié
═══════════════════════════════════════════ */
.mission-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mission-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blue-50);
    color: var(--blue-500);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    transition: background .2s, color .2s;
}

.mission-card:hover .mission-icon {
    background: var(--blue-500);
    color: var(--white);
}

.mission-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: .6rem;
}

.mission-text {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════
   CALENDLY
═══════════════════════════════════════════ */
.calendly-inline-widget {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .about-hero {
        background-attachment: scroll; /* fixed parallax désactivé sur mobile */
        padding: 4rem 0;
    }

    .about-stats {
        gap: 1.2rem;
    }

    .about-stat-value {
        font-size: 1.6rem;
    }
}
