* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/*couleur : 
rose #fe0295 -- 254, 2, 149
orange #ff8a00
blanc #ffffff
noir #000000
Or doux #D4AF37 ou #C7A24A
Aubergine / prune #2A0036
Sable #F3E2D3
Blanc cassé #FFF1E6
Rose adouci #FF4DB8
*/

body {
     background: #050308 url('images/Fond.jpg') no-repeat center center fixed;
    background-size: cover;
}

h2{
   font-size: 2.4rem;
   margin-bottom: 7px;
   color: #ffffff;
   text-align: center;
}

.titre-contour {
    color: #FFF1E6;                 /* remplissage*/
    -webkit-text-stroke: 0.5px #000000;  /* contour*/
    font-size: 2rem;               /* taille à adapter */
    text-transform: uppercase;      /* optionnel, juste pour le style */
}

/* Header fixe */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ff8a00;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
    overflow: visible;
}

.logo a {
    color: #fe0295;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo img {
    height: 48px;      /* tu peux tester 32, 40, 48… */
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* Bouton burger : caché sur grand écran */
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 6px;
    padding: 4px 8px;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
}

.btn-ticket {
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #ffffff;
    background: #fe0295;
}

/* Main */
main {
    padding-top: 80px; /* pour ne pas passer sous le header */
}

/* Sections */
section {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

#hero {
    text-align: center;
    padding: 40px 20px;
    background: rgba(176, 0, 32, 0.25);   /* fond rouge transparent */
    border: 2px solid #b00020;            /* cadre rouge */
    border-radius: 16px;                  /* angles arrondis */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.95);
    margin-top: 40px;
    margin-bottom: 40px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centre horizontalement tout le contenu */
    text-align: center;
}

.hero-title img {
    display: inline-block;
    max-width: 220px;   /* à ajuster selon la taille que tu veux */
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.hero-activities-wrapper {
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 12px;
    border: 1px solid rgba(255, 102, 0, 0.6); /* léger rappel feu/orange */
}

.hero-activities-title {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #fe0295; /* ton rose si tu l’utilises déjà */
    text-align: left;
}

.hero-activities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colonnes sur grand écran */
    gap: 6px 18px;
    font-size: 1rem;
}

.hero-activities li::before {
    content: "•";
    margin-right: 6px;
    color: #ff6600; /* petit bullet orange feu */
}

.hero-activities li {
    display: flex;
    align-items: flex-start;
    color: #ffffff;
}



.feu-inline img {
    height: 3em;           /* taille relative au texte : tu peux ajuster à 1em / 1.5em */
    width: auto;
    vertical-align: -0.15em; /* ajuste la position verticale si besoin */
    display: inline-block;
}


#hero h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #ffffff;
}

#hero h2 {
    font-size: 2.4rem;
    margin-bottom: 7px;
    color: #ffffff;
}

#hero p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    color: #ffffff;
}

/* Parrains */
#parrains {
    text-align: center;
}

#parrains h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #ffffff;
    text-align: center;
}

#parrains p {
    max-width: 700px;
    margin: 0 auto 20px auto;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
}

.parrains-grid {
    display: flex;
    flex-wrap: nowrap;          /* IMPORTANT : côte à côte */
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.parrain-card {
    background: rgba(254, 2, 149, 0.40);
    border-radius: 12px;
    padding: 25px 19px;
    max-width: 380px;           /* un peu plus étroit */
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.parrain-photo img {
    width: 210px;          /* Taille contrôlée */
    height: 280px;         /* 3/4 de width */
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto 10px auto;  /* centré */
}

.parrain-card h3 {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 1.1rem;
}

/* Présentateur */
.presentateur-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.presentateur-card {
    background: rgba(254, 2, 149, 0.40);
    border-radius: 12px;
    padding: 10px 14px;
    max-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.presentateur-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-bottom: 10px;
}

.presentateur-card h3 {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 1.15rem;
}

/* Partenaires */
#partenaires {
    text-align: center;
}

#partenaires h1 {
    font-size: 2,8rem;
    margin-bottom: 12px;
    color: #ffffff;
}

#partenaires h2 {
font-size: 1.8rem;
    margin-bottom: 8px;
    color: #ffffff;
    text-align: center;
}

#partenaires p {
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.5;
    color: #ffffff;
}

/* Grille des partenaires */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
}

/* Carte logo partenaire cliquable */
.partner-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partner-card img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
    display: block;
}

/* Effet au survol */
.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
    border-color: #ff3366;
}

.infos-news-item {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-align: left;
}

.infos-news-item h4 {
    margin-bottom: 5px;
    font-size: 3rem;
    color: #ffffff;
}

.infos-news-item p {
    margin-bottom: 4px;
}

.infos-col p {
    /* pour éviter que tout soit collé au bord */
    line-height: 1.4;
}

/* News */
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.news-card {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.news-card h2 {
    margin-bottom: 12px;
    color: #ffffff;
}

.news-card h3 {
    margin-bottom: 8px;
    color: #ffffff;
}

.news-card time {
    font-size: 0.8rem;
    opacity: 0.8;
}

.news-card p {
    margin-top: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.news-card-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 8px;
    object-fit: cover;
}

/* Infos pratiques */
#infos ul {
    margin-top: 10px;
    margin-left: 16px;
    line-height: 1.6;
}

#infos{
    text-align: center;
    padding: 40px 20px;
    background: rgba(176, 0, 32, 0.25);   /* fond rouge transparent */
    border: 2px solid #b00020;            /* cadre rouge */
    border-radius: 16px;                  /* angles arrondis */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.95);
    margin-top: 40px;
    margin-bottom: 40px;
}

#infos h2,
#infos h3,
#infos p,
#infos li {
    color: #ffffff;
}

/* Conteneur 3 colonnes dans #infos */
.infos-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes égales */
    gap: 20px;                             /* espace entre les colonnes */
    margin-top: 20px;
}

/* Chaque “case” */
.infos-col {
    text-align: center;
    padding: 10px 12px;
}

/* Titres de colonnes */
.infos-col h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #ffb3c6;
}

.infos-col-feu {
    border: 6px solid #ff8a00; /* test visuel */   
    background: rgba(255, 69, 0, 0.6);   /* fond orange transparent */
    border-radius: 20px;                  /* angles arrondis */
    color: #ffffff;
    padding-bottom: 180px; /* pour bien voir le feu au début */
}

/*Tarifs*/

.tarifs-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.tarifs-intro {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1rem;
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.tarif-card {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 12px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 102, 0, 0.4);
}

.tarif-card-highlight {
    border-color: #ff6600;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.6);
}

.tarif-card h2 {
    margin: 0 0 4px 0;
    font-size: 1.2rem;
}

.tarif-soustitre {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    color: #ffb3c6;
}

.tarif-prix {
    margin: 0 0 4px 0;
}

.tarif-detail {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.tarifs-info-complementaire ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    font-size: 0.9rem;
}

.tarifs-info-complementaire li {
    margin-bottom: 4px;
}

.tarifs-cta-center {
    text-align: center;
}

/* SECTION TARIFS */
.tarifs-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 30px 20px;
    color: #ffffff;
}

.tarifs-main-title {
    text-align: center;
    font-size: 2.4rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(255, 102, 0, 0.9),
        0 0 18px rgba(176, 0, 32, 0.8);
}

/* Conteneur responsive du tableau */
.tarifs-table-wrapper {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 102, 0, 0.7);
    box-shadow:
        0 0 18px rgba(255, 102, 0, 0.25),
        0 0 35px rgba(176, 0, 32, 0.25);
    background: rgba(0, 0, 0, 0.65);
}

/* Tableau */
.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
    background: rgba(10, 10, 10, 0.88);
}

/* En-tête */
.tarifs-table thead {
    background: linear-gradient(90deg, #7a0015, #b00020, #ff6600);
}

.tarifs-table th {
    padding: 16px 35px;
    text-align: center;
    font-size: 1.1rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Cellules */
.tarifs-table td {
    padding: 14px 35px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

/* Première colonne */
.tarifs-table td:first-child {
    width: 46%;
}

/* Colonnes prix */
.tarifs-table td:nth-child(2),
.tarifs-table td:nth-child(3) {
    text-align: center;
    white-space: nowrap;
}

/* Alternance légère des lignes */
.tarifs-table tbody tr:nth-child(even) {
    background: rgba(255, 102, 0, 0.06);
}

.tarifs-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

/* Effet au survol */
.tarifs-table tbody tr:hover {
    background: rgba(255, 102, 0, 0.18);
}

/* Note dans une cellule */
.tarif-note {
    font-size: 0.9rem;
    font-weight: 400;
    color: #ffb3c6;
}

/* Bouton ReSevent */
.tarifs-cta {
    text-align: center;
    margin-top: 25px;
}

.btn-resevent {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, #ff6600, #b00020);
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 16px rgba(255, 102, 0, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-resevent:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(255, 102, 0, 0.8);
}


/* btn-billet existe sûrement déjà, on le réutilise.
   Si besoin, voilà un rappel : */
.btn-billet {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #ff6600, #ff0033);
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
}

.btn-billet:hover {
    opacity: 0.9;
}



/* Contact */
.contact-form {
    margin-top: 20px;
    display: grid;
    gap: 12px;
    max-width: 600px;
}

.contact-form label {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.3);
    color: #f5f5f5;
}

.contact-form button {
    padding: 10px 16px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    background: linear-gradient(135deg, #ff3366, #ff8a00);
    color: #ffffff;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    opacity: 0.7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.footer-admin {
    font-size: 0.85rem;
}

.admin-link {
    color: #ffb3c6;         /* ou #ffffff si tu préfères */
    text-decoration: none;
    opacity: 0.8;
}

.admin-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive : si écran étroit, tout se met naturellement en colonne */
@media (max-width: 600px) {
    .parrains-grid {
        flex-direction: column;
        align-items: center;
    }
    .hero-activities {
        grid-template-columns: 1fr;
    }
    #hero img {
        max-width: 240px;  /* plus petit encore sur petits écrans */
    }
    .hero {
        flex-direction: column;
        align-items: center;
    }
    .tarifs-grid {
        grid-template-columns: 1fr;
    }
    /* On montre le bouton burger */
    .nav-toggle {
        display: block;
    }

    /* On cache le menu par défaut */
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.92);
        display: none;
        padding: 10px 15px 15px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        display: flex;             /* très important */
    }
    .main-nav li {
        list-style: none;
    }
    .main-nav a {
        display: block;
        padding: 6px 0;
        color: #ffffff;            /* au cas où une autre règle les mettrait en noir */
    }

    /* Quand on clique sur ☰, on ajoute nav-open -> le menu devient visible */
    .main-nav.nav-open {
        display: block;
    }
    .infos-columns {
        grid-template-columns: 1fr;
    }

    .infos-col {
        width: 100%;              /* chaque cadre prend toute la largeur */
    }
    {
    .tarifs-section {
        padding: 20px 12px;
        margin: 40px auto;
    }

    .tarifs-main-title {
        font-size: 2rem;
    }

    .tarifs-table {
        min-width: 620px;
    }

    .tarifs-table th,
    .tarifs-table td {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}



