/* ============================================
   STYLES PAGE ABOUT US
   ============================================ */

body {
    background-color: #F9F9F9; /* Fond général gris très clair comme sur la photo */
}

.about-section {
 padding: 40px 0px;
    min-height: 600px;
    background-color: #f5f5f5;
}

/* --- BANDEAU SUPERIEUR --- */
.about-banner {
    /* Même logique que Privacy : Dégradé vert sur image de fond */
    background-image:
      linear-gradient(to right, rgba(150, 220, 2, 0.85), rgba(0, 0, 0, 0.9)),
      url("./assets/1.png"); /* Mettez votre image de fond ici */
    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
    
    border-radius: 20px;
    height: 230px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.about-banner h1 {
    font-family: 'Inter-bold';
    font-size: 40px;
    color: #FFFFFF;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* --- SECTION 1 : LOGO + TEXTE --- */
.about-intro-container {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px; /* Espace entre le logo et le texte */
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.about-logo-wrapper {
    flex-shrink: 0; /* Empêche le logo de rétrécir */
}

/* Style pour l'image ronde verte du logo */
.about-logo-wrapper img {
    height: 300px;
    width: 300px;
    object-fit: contain;
    /* Si votre image n'est pas ronde de base, ajoutez border-radius: 50%; */
}

.about-text p {
    font-family: 'Inter-regular';
    font-weight:600;
    font-size: 19px;
    color: #000;
    line-height: 1.8; /* Bonne hauteur de ligne pour la lisibilité */
    margin-bottom: 20px;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* --- SECTION 2 : MISSION & VISION (GRILLE) --- */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colonnes égales */
    gap: 30px;
    margin-bottom: 40px;
}

.mv-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mv-icon {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    
}

.mv-card h2 {
    font-family: 'Inter-bold';
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
}

.mv-card p {
    font-family: 'Inter-semiregular';
    font-size: 17px;
    color: #000;
    line-height: 1.6;
    text-align: justify;
}

/* --- RESPONSIVE --- */

@media (max-width: 1024px) {
    .about-section {
        padding:  40px;
    }
    
    .about-intro-container {
        flex-direction: column; /* Empiler logo et texte */
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr; /* 1 seule colonne pour Mission/Vision */
    }
    .about-section {
    padding: 30px 15px 1px;
}
.about-text p {
    font-size: 16px;
    line-height: 1.5;
}
}

@media (max-width: 600px) {
   

    .about-banner {
        height: 120px;
        margin-bottom: 25px;
    }

    .about-banner h1 {
        font-size: 28px;
    }

    .about-intro-container, .mv-card {
        padding: 25px;
    }

    .about-logo-wrapper img {
        height: 180px;
        width: 180px;
    }
}
/* ============================================
   ANIMATIONS AU SCROLL
   ============================================ */

/* 1. État initial (Caché) */
.reveal {
    opacity: 0;
    transform: translateY(50px); /* Décalé vers le bas */
    transition: all 1s ease-out; /* Transition douce */
    visibility: hidden; /* Pour éviter les bugs visuels au chargement */
}

/* 2. État final (Visible - Ajouté par JS) */
.reveal.active {
    opacity: 1;
    transform: translateY(0); /* Revient à sa place */
    visibility: visible;
}

/* Variantes (Optionnel : Venir de la gauche ou droite) */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Délais pour l'effet "cascade" (Mission puis Vision) */
.delay-200 { transition-delay: 0.2s; }