/* ------------------- GLOBAL ------------------- */

body {
    background-color: black;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    color: white;
}

h1, h2, h3, p, label {
    color: white;
}

/* ------------------- HEADER ------------------- */

header {
    background-color: rgb(255, 119, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
}

#Logo {
    width: 120px;
    height: auto;
}

header h1 {
    margin: 10px;
    font-size: 50px;
}

header h3 {
    margin: 0;
    font-size: 22px;
    text-align: center;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.header-bouttons {
    background-color: black;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 16px;
    transition: 0.3s;
}

.header-bouttons:hover {
    background-color: white;
    color: black;
}

/* ------------------- CONTENT ------------------- */

.content {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 25px;
    flex-wrap: wrap;
}

.colone_une,
.colone_deux,
.colone_trois {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

/* ------------------- IMAGES ------------------- */

.collectif,
.stade {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

/* ------------------- PARAGRAPHES ------------------- */

p {
    color: white;
    width: 90%;
    max-width: 400px;
    margin: 15px auto;
    text-align: center;
    line-height: 1.5;
}

/* ------------------- MAP ------------------- */

.map-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    border: none;
}




/* ------------------- RESPONSIVE ------------------- */

/* Tablettes et téléphones */
@media (max-width: 900px) {
    header {
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    header h1 {
        font-size: 40px;
    }

    .header-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* format Téléphones */
@media (max-width: 600px) {
    header h1 {
        font-size: 32px;
    }

    header h3 {
        font-size: 18px;
    }

    #Logo {
        width: 90px;
    }
}
/* ---------- PAGE À PROPOS : IMAGE DE FOND ---------- */

.apropos-background {
    background-image: url("rcavusy_equipe.jpg"); /* ← mets ici TON image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

/* Voile sombre pour la lisibilité */
.apropos-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

/* Le contenu passe au-dessus de l’image */
.apropos-background .content {
    position: relative;
    z-index: 1;
}

/* Cartes texte */
.apropos-background .colone_une,
.apropos-background .colone_deux,
.apropos-background .colone_trois {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 25px;
    border-radius: 12px;}

/* ------------------- FOOTER (CORRIGÉ) ------------------- */

footer {
    background-color: rgb(255, 119, 0);
    padding: 30px 0;
}

/* Bloc sponsors */

.sponsor {
    width: 100%;
    text-align: center;
}

.sponsor_titre {
    color: black;
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Logos sponsors – VERSION STABLE */

.sponsor-logos {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.sponsor-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logos img {
    width: 180px;          /* taille IDENTIQUE partout */
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sponsor-logos img:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

/* Ligne séparation */

hr {
    border: none;
    border-top: 2px solid #111;
    max-width: 1100px;
    margin: 25px auto;
}

/* Contact info – CENTRÉ ET STABLE */

.contact-info {
    display: flex;
    justify-content: center;   /* correction clé */
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.contact-info p {
    color: black;
    font-weight: bold;
    margin: 0;
}