* {
    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: 900px auto;
}

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);
    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 */
.partenaires-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;

    max-width: 1500px;
    margin: 30px auto;
    padding: 0 20px;
}

.partenaire-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 14px;
    background: #000000;
    border: 1px solid rgba(255, 102, 0, 0.6);
    box-shadow:
        0 0 15px rgba(255, 102, 0, 0.2),
        0 0 30px rgba(176, 0, 32, 0.15);
    cursor: pointer;
}

.partenaire-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: #000000;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.partenaire-nom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;

    padding: 12px 15px;

    color: #ff8a00;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95),
        rgba(0, 0, 0, 0.65)
    );
}

.partenaire-description {
    position: absolute;
    inset: 0;
    z-index: 2;

    padding: 25px;

    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.94);

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    overflow-y: auto;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease;
}

.partenaire-description h3 {
    margin: 0 0 12px;
    flex-shrink: 0;
    color: #ff8a00;
}

.partenaire-description p {
    margin: 0;
    line-height: 1.5;
}

.partenaire-card:hover .partenaire-description,
.partenaire-card:focus .partenaire-description,
.partenaire-card:focus-within .partenaire-description {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.partenaire-card:hover img,
.partenaire-card:focus img {
    transform: scale(1.05);
    filter: brightness(0.35);
}
.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 */
}

/* =========================
   PAGE SOUVENIRS
   ========================= */

#souvenirs {
    text-align: center;
}

#souvenirs h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(255, 138, 0, 0.9),
        0 0 18px rgba(254, 2, 149, 0.7);
}

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

/* Grille des souvenirs */
.souvenirs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;

    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Carte image simple, sans nom et sans survol */
.souvenir-card {
    overflow: hidden;
    border-radius: 14px;
    background: #000000;
    border: 1px solid rgba(255, 102, 0, 0.6);
    box-shadow:
        0 0 15px rgba(255, 102, 0, 0.2),
        0 0 30px rgba(176, 0, 32, 0.15);
        
}
.souvenir-card:hover img {
    object-fit: contain;
    transform: scale(0.97);
    filter: brightness(1.05);
}

.souvenir-card img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: #000000;
}

/*Tarifs*/

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

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

.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;
}



/* 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;
}

/* =========================
   BILLETTERIE / PRÉVENTES
   ========================= */

.billetterie-highlight {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px 20px;
    text-align: center;

    background:
        radial-gradient(circle at top, rgba(255, 138, 0, 0.35), transparent 45%),
        linear-gradient(135deg, rgba(254, 2, 149, 0.22), rgba(0, 0, 0, 0.92));

    border: 2px solid #ff8a00;
    border-radius: 18px;

    box-shadow:
        0 0 20px rgba(255, 138, 0, 0.45),
        0 0 45px rgba(254, 2, 149, 0.25);
}

.billetterie-content {
    max-width: 700px;
    margin: 0 auto;
}

.billetterie-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 16px;

    color: #000000;
    background: #ff8a00;
    border-radius: 999px;

    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.billetterie-highlight h2 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 2.2rem;
    text-transform: uppercase;

    text-shadow:
        0 0 8px rgba(255, 138, 0, 0.9),
        0 0 18px rgba(254, 2, 149, 0.7);
}

.billetterie-text {
    max-width: 620px;
    margin: 0 auto 22px auto;
    color: #ffffff;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Gros bouton billetterie */
.btn-ticket-main {
    display: inline-block;
    padding: 15px 34px;

    color: #ffffff;
    background: linear-gradient(90deg, #fe0295, #ff8a00);
    border: 2px solid #ffffff;
    border-radius: 999px;

    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;

    box-shadow:
        0 0 15px rgba(255, 138, 0, 0.7),
        0 0 30px rgba(254, 2, 149, 0.45);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.btn-ticket-main:hover {
    transform: translateY(-3px) scale(1.03);
    filter: brightness(1.08);

    box-shadow:
        0 0 25px rgba(255, 138, 0, 0.95),
        0 0 45px rgba(254, 2, 149, 0.75);
}


/* 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;
    margin-top: 40px;
    background: #000000;
    color: #ffffff;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 138, 0, 0.5);
}

.site-footer a {
    color: #ff8a00;
    text-decoration: none;
    margin-left: 8px;
}

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

/* =========================
   MENTIONS LÉGALES
   ========================= */

.mentions-page {
    padding-top: 90px;
    color: #ffffff;
}

.mentions-container {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 35px 25px;

    background: rgba(0, 0, 0, 0.88);
    border: 1px solid rgba(255, 138, 0, 0.65);
    border-radius: 16px;

    box-shadow:
        0 0 20px rgba(255, 138, 0, 0.18),
        0 0 40px rgba(254, 2, 149, 0.12);
}

.mentions-header {
    margin-bottom: 35px;
    padding-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mentions-header h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
    color: #ffffff;

    text-shadow:
        0 0 8px rgba(255, 138, 0, 0.9),
        0 0 16px rgba(254, 2, 149, 0.7);
}

.mentions-header p {
    color: #f3e2d3;
}

.mentions-block {
    margin-bottom: 25px;
    padding: 22px;

    background: rgba(255, 255, 255, 0.035);
    border-left: 4px solid #ff8a00;
    border-radius: 8px;
}

.mentions-block h2 {
    margin: 0 0 15px;
    font-size: 1.4rem;
    text-align: left;
    color: #ff8a00;
}

.mentions-block p {
    margin: 0 0 12px;
    line-height: 1.7;
    color: #ffffff;
}

.mentions-block p:last-child {
    margin-bottom: 0;
}

.mentions-list {
    margin: 15px 0;
    padding-left: 22px;
}

.mentions-list li {
    margin-bottom: 9px;
    line-height: 1.6;
}

.mentions-block a {
    color: #ff4db8;
    font-weight: 600;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.mentions-block a:hover {
    color: #ff8a00;
    text-decoration: underline;
}

.mentions-block address {
    line-height: 1.7;
    font-style: normal;
}

.mentions-warning {
    border-left-color: #fe0295;
    background: rgba(254, 2, 149, 0.09);
}

.mentions-warning h2 {
    color: #ff4db8;
}

/* =========================
   RESPONSIVE TABLETTE
   ========================= */

@media (max-width: 900px) {

    .partenaires-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .infos-columns {
        grid-template-columns: 1fr;
    }

    .tarifs-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   RESPONSIVE MOBILE
   ========================= */

@media (max-width: 768px) {

    body {
        background-size: 500px auto;
    }

    section {
        padding: 30px 15px;
    }

    /* Bouton burger visible uniquement sur mobile */
    .nav-toggle {
        display: block;
    }

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

    .main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .main-nav li {
        list-style: none;
    }

    .main-nav a {
        display: block;
        padding: 6px 0;
        color: #ffffff;
    }

    /* Menu visible après clic sur le burger */
    .main-nav.nav-open {
        display: block;
    }

    .hero-activities {
        grid-template-columns: 1fr;
    }

    .hero-title img,
    #hero img {
        max-width: 240px;
    }

    .parrains-grid {
        flex-wrap: wrap;
    }

    .partenaires-grid {
        grid-template-columns: 1fr;
    }

    .infos-columns {
        grid-template-columns: 1fr;
    }

    .infos-col {
        width: 100%;
    }

    .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;
    }

    .site-footer {
        flex-direction: column;
        justify-content: center;
    }
}


/* =========================
   TRÈS PETITS ÉCRANS
   ========================= */

@media (max-width: 400px) {

    body {
        background-size: 350px auto;
    }

    .partenaire-card {
        min-height: 230px;
    }

    .partenaire-card img {
        height: 230px;
    }
}

@media (max-width: 900px) {
    .souvenirs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .souvenirs-grid {
        grid-template-columns: 1fr;
    }

    .souvenir-card img {
        height: 260px;
    }
}


