/* Variables CSS */
:root {
    --couleur-principale: #1a6b2e;
    --couleur-secondaire: #145224;
    --couleur-accent: #f5c542;
    --couleur-texte: #1a1a1a;
    --couleur-texte-clair: #ffffff;
    --couleur-fond: #f4f4f4;
    --police-corps: Arial, sans-serif;
}

/*   Reset de base  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--police-corps);
    background-color: var(--couleur-fond);
    color: var(--couleur-texte);
}

/* Header */
header {
    background-color: var(--couleur-principale);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

header img {
    width: 60px;
    height: auto;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li a {
    color: var(--couleur-texte-clair);
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

nav ul li a:hover {
    color: var(--couleur-accent);
}

/* Section photo équipe */
.section-photo {
    display: flex;
    justify-content: center;
    background-color: var(--couleur-principale);
    padding: 30px 20px;
}

.photo-wrapper {
    width: 720px;
    max-width: 100%;
}

.photo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Section texte histoire */
.section-texte {
    background-color: var(--couleur-fond);
    padding: 30px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.section-texte h1 {
    font-size: 24px;
    text-align: center;
    color: var(--couleur-texte);
    margin-bottom: 20px;
    font-style: italic;
}

.section-texte p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 14px;
    text-align: justify;
}

/* Section logos */
.section-logos {
    background-color: var(--couleur-fond);
    padding: 30px 20px;
    text-align: center;
}

.section-logos h2 {
    font-size: 18px;
    color: var(--couleur-principale);
    margin-bottom: 20px;
}

.image-logos {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: var(--couleur-secondaire);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 18px 40px;
    font-size: 12px;
    margin-top: 0;
}

footer a {
    color: var(--couleur-accent);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive — Mobile */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 10px;
        padding: 12px 15px;
        text-align: center;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .section-texte {
        padding: 20px 20px;
    }

    .section-texte h1 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {

    nav ul li a {
        font-size: 11px;
    }

    .section-texte h1 {
        font-size: 17px;
    }

    .section-texte p {
        font-size: 13px;
    }
}