/* =========================
STRUCTURE DES SECTIONS
========================= */

section {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

/* Séparation douce entre sections */
section + section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

ul {
    list-style: none;
}

/* =========================
VARIANTES DE FOND
========================= */

.section-vert {
    background-color: #AEB4A2;
}
/* =========================
BLOC TEXTE CENTRAL
========================= */

section .text-center {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 1.5rem);
}

/* =========================
TYPOGRAPHIE RESPONSIVE
========================= */

/* Titres */
section h2 {
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.3;
}

/* Espacement spécifique */
.espace_h2 {
    margin-top: clamp(9rem, 6vw, 10rem);
}

/* Paragraphes */
section p {
    font-size: clamp(0.95rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: clamp(0.9rem, 3vw, 1.2rem);
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

li {
    font-size: clamp(0.95rem, 2.5vw, 1.25rem);
    line-height: 1.7;
}
.espacement {
    margin-bottom: 3rem;
}

.couleur {
    color : black;
}

img {
    margin: 0 auto;
}

.actu-card , .stage-card, .gallery-card {
    padding-bottom: 3rem;
}
/* =========================
IMAGE LOGO BAS DE PAGE
========================= */

img[alt="logo"] {
    display: block;
    margin: clamp(3rem, 8vw, 4rem) 2rem clamp(1.5rem, 4vw, 2rem) auto;
    max-width: clamp(150px, 30vw, 220px);
}

/* =========================
UNIFORMISATION DES IMAGES
========================= */

/* Images des actualités */
.actu-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Images des stages */
.stage-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Images des galeries */
.gallery-cover {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    section .text-center {
        max-width: 100%;
    }
}
