/* ============================================
   A-PROPOS.CSS — Styles dédiés à la page À Propos
   Dréa Digital · dreadigital.fr
   Convention : Ce fichier ne contient QUE les styles
   propres à cette page. Les composants partagés
   (header, footer, btn, nav…) restent dans main.css
   ============================================ */

/* ─── UTILITAIRES TEXTE (spécifiques à cette page) ─── */
/* .text-white est déjà dans main.css */
.text-accent-green {
    color: var(--accent-green);
}

/* ─── ÉTAT ACTIF DE LA NAV (lien page courante)
   À déplacer dans main.css si besoin sur d'autres pages ─── */
.nav__link--active {
    color: var(--text-primary);
}
.nav__link--active::after {
    width: 100% !important;
    background: var(--gradient-primary);
}

/* ─── HERO ─── */
.about-hero__subtitle {
    color: var(--text-primary);
    font-size: 1.25rem;
    line-height: 1.6;
    text-wrap: balance;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── SECTION STORY (commitment réutilisé) ─── */
.about-commitment {
    padding-top: 0;
    padding-bottom: 2rem;
}

.about-commitment__glow {
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
}

.about-commitment__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-commitment__title {
    margin-bottom: 0;
}

/* ─── EN-TÊTE DE LA STORY ─── */
.about-story__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* ─── CORPS DE LA STORY ─── */
.about-story__body {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
    text-align: left;
}

.about-story__para {
    margin-bottom: 2.5rem;
}

.about-story__para--mb-sm {
    margin-bottom: 1.5rem;
}

.about-story__para--last {
    margin-bottom: 0;
}

/* ─── MISE EN PAGE TEXTE + IMAGE ─── */
.about-story__layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.about-story__text-col {
    flex: 1 1 50%;
}

.about-story__img-col {
    flex: 1 1 300px;
    max-width: 350px;
    position: relative;
    margin: 0 auto;
}

/* ─── PHOTO DU FONDATEUR ─── */
.about-story__img-glow {
    position: absolute;
    inset: -15px;
    background: var(--gradient-primary);
    filter: blur(30px);
    opacity: 0.25;
    border-radius: var(--radius-lg);
}

.about-story__photo {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-accent);
    position: relative;
    z-index: 1;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ─── SECTION VISION / VALEURS ─── */
.about-vision {
    background: transparent;
    padding-top: 2rem;
}

/* ─── ANIMATIONS REVEAL (utilisées via about.js) ─── */
.about-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.about-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-reveal--delay-1 { transition-delay: 0.1s; }
.about-reveal--delay-2 { transition-delay: 0.2s; }
.about-reveal--delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .about-hero__subtitle {
        font-size: 1.1rem;
    }

    .about-story__body {
        font-size: 1rem;
    }

    .about-story__layout {
        gap: 2rem;
    }

    .about-story__img-col {
        max-width: 100%;
    }
}
