/* Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("fond-marbre-noir.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #f5f5f5;
    line-height: 1.6;
}

/* Couleurs thème */
:root {
    --noir: #050505;
    --noir-soft: #111111;
    --or: #d4af37;
    --or-soft: #b8942e;
    --gris: #aaaaaa;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    height: 200px;
}

/* LOGO */
.site-header .logo img {
    height: 200px;
    width: auto;
    display: block;
}

/* PLAYER */
#mon-player-moderne {
    transform: scale(0.90);
    transform-origin: center center;
    margin-top: -5px;
}

/* NAVIGATION */
.main-nav a {
    color: #f5f5f5;
    text-decoration: none;
    margin-left: 1rem;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding: 5px 10px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    background: var(--or);
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* SECTIONS */
.section {
    padding: 3rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section h1,
.section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--or);
}

/* ACCUEIL */
.accueil {
    padding-top: 4rem;
}

.intro-texte {
    border: 1px solid var(--or);
    padding: 1.5rem;
    margin: 0 auto 2rem auto;
    max-width: 800px;
    background: radial-gradient(circle at top, #1a1a1a 0, #050505 60%);
}

.intro-texte p {
    color: #f5f5f5;
    text-align: center;
    font-size: 1.5rem;
}

/* Animation fade-in + slide-up */
.fade-in-up {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PARTENAIRES */
.partenaires {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.logo-encadre {
    border: 2px solid #f5d36c;
    padding: 6px;
    border-radius: 8px;
    display: inline-block;
}

.chat-button img {
    height: 55px;
    width: auto;
}
.facebook-logo img {
    height:55px;
    margin: 0 15px;
    opacity: 0.9;
    transition: 0.3s;
}

.facebook-logo img:hover {
    opacity: 1;
    filter: drop-shadow(0 0 6px #d4af37);
}

.sacem-logo img {
    height: 55px;
    width: auto;
    display: block;
}

.sacem-logo {
    padding: 6px 10px;
    background: #000;
    border-radius: 6px;
    border: 1px solid #f5d36c;
}

/* ÉQUIPE */
.equipe {
    background: #080808;
}

.grid-equipe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.card-animateur {
    background: #0f0f0f;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-animateur:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.card-animateur .photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background: linear-gradient(135deg, #222, #444);
    margin-bottom: 0.8rem;
}

.card-animateur h3 {
    color: var(--or);
    margin-bottom: 0.2rem;
}

.card-animateur p {
    color: var(--gris);
    font-size: 0.9rem;
}

/* CONTACT */
.contact {
    background: #080808;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
    color: #f5f5f5;
}

.contact-form input,
.contact-form textarea {
    margin-top: 0.3rem;
    padding: 0.6rem 0.7rem;
    border-radius: 6px;
    border: 1px solid #333;
    background: #050505;
    color: #f5f5f5;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--or);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.contact-form button {
    align-self: flex-start;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--or), var(--or-soft));
    color: #050505;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* FOOTER */
.site-footer {
    text-align: center;
    padding: 1.5rem 1rem 2rem 1rem;
    background: #020202;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    font-size: 0.85rem;
    color: var(--gris);
}

.site-footer p + p {
    margin-top: 0.3rem;
    color: var(--or-soft);
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .main-nav a {
        font-size: 0.8rem;
        margin-left: 0.6rem;
    }

    .intro-texte {
        padding: 1.1rem;
    }

    .player-card {
        padding: 1.1rem;
    }
}
.fond-noir {
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("fond-marbre-noir.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}
/* Fond marbre noir pour la page planning */
.fond-planning {
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("fond-marbre-noir.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 40px 0;
}
/* Effet fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* CONTENU DU PLANNING — SANS CADRE, SANS FOND, COMME L'ACCUEIL */
.planning-container {
    max-width: 900px;
    width: 90%;
    margin: 60px auto; /* descend et centre */
    padding: 0; /* pas de cadre */
    background: none; /* pas de fond en bloc */
    border: none; /* pas de bordure */
    box-shadow: none; /* pas d’ombre */
}
/* Image du planning */
.planning-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
/* ===========================
   VERSION MOBILE
   =========================== */
@media screen and (max-width: 768px) {

    /* --- Structure générale --- */
    body {
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }

    section {
        padding: 20px 10px;
    }

    h1, h2, h3 {
        font-size: 1.4rem;
        text-align: center;
    }

    p {
        font-size: 1rem;
        line-height: 1.4;
        text-align: center;
    }

    /* --- HEADER --- */
    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        height: auto;
    }

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

    /* --- MENU BURGER --- */
    nav ul {
        display: none;
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
    }

    .burger {
        display: block;
        font-size: 30px;
        cursor: pointer;
        margin-top: 10px;
    }

    .menu-open nav ul {
        display: flex;
    }

    /* --- PLAYER RADIO --- */
    .player-container {
        width: 100%;
        margin: 10px 0;
        display: flex;
        justify-content: center;
    }

    iframe, audio {
        width: 100% !important;
        max-width: 350px;
    }

    /* --- ÉQUIPE / PHOTOS --- */
    .team-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .team-member img {
        width: 70%;
        margin: 0 auto;
        display: block;
        border-radius: 10px;
    }

    /* --- PLANNING --- */
    .planning-table {
        width: 100%;
        font-size: 0.9rem;
    }

    .planning-table td, .planning-table th {
        padding: 8px;
    }

    /* --- PARTENAIRES --- */
    .partners-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .partners-grid img {
        width: 60%;
        margin: 0 auto;
    }

    /* --- FOOTER --- */
    footer {
        text-align: center;
        padding: 20px 10px;
    }

    footer img {
        width: 120px;
        margin-bottom: 10px;
    }
}
