/* ===========================
   about.css
   Page : À propos / About Us
   Couleur principale : #0D4A7A
   =========================== */

/* --- STRUCTURE DE BASE --- */
body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    line-height: 1.6;
    background-color: #f9f9f9;
}

main {
    padding: 60px 0;
}

/* --- SECTION À PROPOS --- */
.about-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.about-section h1 {
    text-align: center;
    color: #0D4A7A;
    font-size: 2rem;
    margin-bottom: 30px;
}

.about-block {
    margin-bottom: 50px;
    padding: 20px;
    border-left: 4px solid #0D4A7A;
    background: #fdfdfd;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-block:hover {
    transform: translateX(5px);
}

.about-block h2 {
    color: #0D4A7A;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-block p,
.about-block ul {
    font-size: 1rem;
    margin-left: 10px;
}

/* --- LISTES --- */
.mission-list {
    list-style-type: disc;
    padding-left: 25px;
}

.mission-list li {
    margin-bottom: 10px;
}

/* --- ÉQUIPE --- */
.leader {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: #f2f6fa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.leader-pic {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid #0D4A7A;
}

.leader-info h3 {
    color: #0D4A7A;
    margin-bottom: 8px;
}

.note-admin {
    font-size: 0.9rem;
    color: #666;
}

/* --- CTA --- */
.btn {
    display: inline-block;
    background-color: #0D4A7A;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #09385d;
}

.footnote {
    font-size: 0.85rem;
    text-align: center;
    color: #777;
}

/* --- EFFET D’APPARITION --- */
.fade-right {
    opacity: 0;
    transform: translateX(60px);
    animation: fadeRight 1s ease-out forwards;
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- ADAPTATION MOBILE --- */
@media (max-width: 768px) {
    .leader {
        flex-direction: column;
        align-items: flex-start;
    }

    .leader-pic {
        margin-bottom: 10px;
    }

    .about-section {
        padding: 20px;
    }

    .about-block {
        padding: 15px;
    }
}
