/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}


/* ============================ */
/* NAVBAR */
/* ============================ */

.navbar {
    width: 100%;
    background: #222222; /* FOND ROUGE */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.navbar .container {
    max-width: 1250px;
    padding: 0 20px;
    margin: auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
}

/* Desktop nav */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    opacity: 0.7;
}

.btn-nav {
    background: rgb(252, 181, 0);
    color: #222222 !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

/* ============================ */
/* MOBILE */
/* ============================ */

.mobile-menu {
    background: #222222;
    display: none;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 0;
    font-size: 18px;
}

.btn-mobile {
    background: white;
    color: #222222 !important;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 6px;
    font-weight: 700;
}

/* ============================ */
/* RESPONSIVE */
/* ============================ */

@media(max-width: 900px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}









/* ---------------- HERO ---------------- */
.apropos-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* texte centré verticalement */
    padding: 0 50px;
    min-height: calc(100vh - 70px); /* plein écran moins navbar */
    background: #222222; /* fond rouge */
    color: #fff;
    text-align: center;
    box-sizing: border-box;
}

/* Contenu du hero */
.hero-content {
    max-width: 800px; /* largeur maximale pour le texte */
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.5;
}

/* RESPONSIVE TABLETTE */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .apropos-hero {
        padding: 0 30px;
        min-height: calc(100vh - 70px);
    }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .apropos-hero {
        padding: 0 20px;
        min-height: calc(100vh - 70px);
    }
}



/* ---------------- NOTRE MISSION ---------------- */
.mission {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff; /* fond blanc */
    color: #ff0000; /* texte rouge */
}

.mission h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.mission p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #0d0d0d;
}

/* ---------------- NOS VALEURS ---------------- */
.valeurs {
    padding: 80px 20px;
    background-color: #f9f9f9; /* léger gris pour contraste */
    text-align: center;
    color: #333;
}

.valeurs h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #ff0000; /* titre rouge */
}

.valeurs-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.valeur {
    background-color: #fff;
    border: 2px solid #ff0000; /* contour rouge */
    border-radius: 12px;
    padding: 30px 20px;
    flex: 1 1 250px;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.valeur h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff0000;
}

.valeur p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
    .mission h2,
    .valeurs h2 {
        font-size: 32px;
    }

    .mission p,
    .valeur p {
        font-size: 16px;
    }

    .valeurs-wrapper {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mission h2,
    .valeurs h2 {
        font-size: 28px;
    }

    .mission p,
    .valeur p {
        font-size: 15px;
    }

    .valeurs-wrapper {
        flex-direction: column;
        align-items: center;
    }
}







/* ---------------- TEAM SECTION ---------------- */
.team-section {
    padding: 80px 50px;
    background-color: #fff; /* fond blanc */
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    color: #e53935; /* rouge */
    margin-bottom: 15px;
    font-weight: 600;
}

.team-section p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px auto; /* centré horizontalement */
    line-height: 1.5;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centré horizontalement */
    gap: 40px; /* espace entre membres */
}

.team-member {
    flex: 0 0 250px; /* largeur fixe pour uniformité */
    height: 360px; /* hauteur uniforme */
    background-color: #fff;
    padding: 20px;
    border-radius: 12px; /* coins légèrement arrondis */
    border: 2px solid #e53935; /* contour rouge */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-member img {
    width: 140px; /* photo légèrement plus grande */
    height: 140px;
    border-radius: 12px; /* légèrement arrondi */
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #e53935; /* bordure rouge */
}

.team-member h3 {
    font-size: 20px;
    color: #e53935; /* rouge */
    margin-bottom: 5px;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    color: #555;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
    .team-members {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-members {
        flex-direction: column; /* empile verticalement */
        gap: 25px;
        align-items: center; /* centrage sur mobile */
    }

    .team-member {
        max-width: 300px;
        height: auto; /* hauteur s’ajuste sur mobile */
        margin: 0 auto;
    }

    .team-member img {
        width: 130px;
        height: 130px;
    }
}




/* CTA */
.cta-apropos {
    background: #222222;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.cta-apropos h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #ff0000;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #ff0000;
    color: #fff;
}







/* ====================================== */
/* FOOTER                                */
/* ====================================== */
/* Footer CSS */
.footer-section {
    background: #222222;
    color: white;
    padding: 60px 20px 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

@media screen and (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo {
        align-items: center;
    }
}


#background-audio {
    display: none;
}
