* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #1E1E1E;
}

.header {
    background-color: #1E1E1E;
    display: flex;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 105px;
}

.logo {
    width: auto;
    height: 105px;
    position: relative;
    right: 5vw;
}

.nav-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background-color: #7E0B0B;
}

.nav-menu.active {
    display: flex;
    position: absolute;
    top: 104px;
    left: 0;
    width: 100%;
    background: #1E1E1E;
    z-index: 999;
}

.nav-menu a {
    text-decoration: none;
    color: #DED6AE;
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;

}

.profile-icon {
    position: relative;
    top: 1vh;
}

/* Menu Burger */
#checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition-duration: .3s;
}

.bars {
    width: 100%;
    height: 4px;
    background-color: #DED6AE;
    border-radius: 5px;
    transition-duration: .3s;
}

#checkbox:checked+.toggle #bar2 {
    transform: translateY(14px) rotate(60deg);
    margin-left: 0;
    transform-origin: right;
    transition-duration: .3s;
    z-index: 2;
}

#checkbox:checked+.toggle #bar1 {
    transform: translateY(28px) rotate(-60deg);
    transition-duration: .3s;
    transform-origin: left;
    z-index: 1;
}

#checkbox:checked+.toggle {
    transform: rotate(-90deg);
}

/* --- Styles pour le Dropdown Profil --- */
.dropdown {
    position: relative;
    display: inline-block;
}

/* On cache le contenu du menu par défaut */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: 'Abhaya Libre', serif;
}

/* Changement de couleur au survol des liens du sous-menu */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Fait apparaitre le menu quand on survole le bloc .dropdown */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Optionnel : Style spécifique pour le bouton Connexion/Inscription texte */
.btn-connexion {
    font-family: 'Abhaya Libre', serif;
    /* Ajoute ici tes styles pour faire ressembler au texte de droite sur ta maquette */
}

/* Hero Section */

.hero-section {
    height: calc(100vh - 105px);
    width: 100%;
    background-image: url(/public/images/hero-section.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.hero-section h1 {
    color: #7E0B0B;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: center;
    font-size: 3rem;
}

.hero-section h1 span {
    color: #EFEEEE;
    font-family: "IM Fell Great Primer", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
}

.hero-section p {
    color: #EFEEEE;
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    width: 240px;
    font-size: 1.2rem;
}

.hero-btn {
    background-color: #7E0B0B;
    color: #DED6AE;
    padding: 20px;
    border: 0px solid;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: "IM Fell Great Primer", serif;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
    padding: 10px 35px;
    text-decoration: none;
}

.contact {
    display: flex;
    justify-content: center;
    text-decoration: none;
    margin: 0 auto;
    background-color: #7E0B0B;
    color: #DED6AE;
    padding: 20px;
    width: 10vw;
    border: 0px solid;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: "IM Fell Great Primer", serif;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
    padding: 10px 50px;
    text-decoration: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    display: none;
    transform: translateX(-50%);
    width: 30px;
    height: 60px;
    animation: bounce 2s infinite;
}

/* Page concept */

.survie-hero {
    background-image: linear-gradient(rgba(15, 15, 15, .72), rgba(15, 15, 15, .72)),
        url("/public/images/concept.jpg");
    background-size: cover;
    background-position: center;
    padding: 10px 15px 40px;
}


.survie-intro {
    text-align: center;
    padding: 25px 10px 35px;
}


.survie-intro h2 {
    color: #EFEEEE;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
    font-size: 1.7rem;
    letter-spacing: 1px;
    margin-bottom: 18px;
}


.survie-intro p {
    color: #EFEEEE;
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 560px;
    margin: 0 auto;
}


.conditions-titre {
    color: #EFEEEE;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
}


/* Grille des 5 cartes : 3 par ligne, les autres centrées */
.conditions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}


/* -------- Cartes "conditions d'accès" -------- */
.condition-card {
    background-color: transparent;
    /* fond global transparent */
    border-radius: 6px;
    overflow: hidden;
    /* coupe les coins du bloc bas */
    text-align: center;
    flex: 1 1 27%;
    min-width: 86px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}


/* Partie HAUTE : titre + icône, transparent */
.card-haut {
    background-color: rgba(222, 214, 174, 0.80);
    padding: 14px 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.condition-card h3 {
    color: #1E1E1E;
    /* clair, lisible sur l'image */
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 12px;
}


/* EMPLACEMENT ICÔNE — réserve la place ; tu déposes ton icône dedans.
  Le pointillé disparaît dès qu'un <img>/<svg> est ajouté. */
.card-icone {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* repère visuel tant que l'icône n'est pas placée : */
    border: 1px dashed rgba(126, 11, 11, .5);
    border-radius: 6px;
}


.card-icone:not(:empty) {
    border: none;
}


.card-icone img,
.card-icone svg {
    max-width: 100%;
    max-height: 100%;
}


/* Partie BASSE : texte, fond plein beige (opaque) */
.card-bas {
    background-color: #DED6AE;
    padding: 12px 12px 16px;
    flex-grow: 1;
}


.card-bas p {
    color: #3a352a;
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-size: 0.78rem;
    line-height: 1.4;
    margin: 0;
}




/* ============================================================
  COSTUMES & IMMERSION
============================================================ */
.costumes {
    padding: 45px 25px;
}


.costumes h2 {
    color: #EFEEEE;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
}


.costumes-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}


.costumes-texte p {
    color: #EFEEEE;
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 18px;
}


/* EMPLACEMENT LOGO — réserve la place pour ton logo */
.logo-emplacement {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(222, 214, 174, .35);
    border-radius: 6px;
}


.logo-emplacement:not(:empty) {
    border: none;
}


.logo-emplacement img,
.logo-emplacement svg {
    max-width: 100%;
    max-height: 100%;
}


/* ============================================================
  SOUVENIRS DE LA SOIRÉE
============================================================ */
.souvenirs {
    padding: 25px 25px 45px;
}


.souvenirs h2 {
    color: #EFEEEE;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: 1px;
    margin-bottom: 30px;
}


.souvenirs-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}


.souvenirs-img {
    width: 100%;
    max-width: 360px;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
}


.souvenirs-texte p {
    color: #EFEEEE;
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 18px;
}


/* ============================================================
  NOS RETOURS (bloc encadré rouge)
============================================================ */



.retours-panel {
    padding: 25px 20px 30px;
    border: 0px solid;
    border-radius: 25px;
}


.retours-panel h2 {
    color: #EFEEEE;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
}


.retours-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}



.retour-card {
    background-color: #2A2A2A;
    border-radius: 8px;
    padding: 18px 18px;
    width: 100%;
    max-width: 340px;
}


/* .etoiles est déjà défini plus haut dans ton CSS (page d'accueil) ;
  on garde la même apparence ici. */
.retour-card .etoiles {
    color: #DED6AE;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
}


.retour-texte {
    color: #C9C9C9;
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}


.retour-auteur {
    color: #DED6AE;
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: right;
}


.voir-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    color: #EFEEEE;
    text-decoration: none;
    font-family: "IM Fell Great Primer", serif;
    font-size: 1.4rem;
}


.voir-plus:hover {
    color: #DED6AE;
}


.voir-plus:hover svg path {
    stroke: #DED6AE;
}


/* Fin page concept */
/* ============================================================
  SECTION FAQ
============================================================ */
.faq-section {
    padding: 25px 20px 40px;
}

.faq-section h2 {
    text-align: center;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-size: 2rem;
    color: #EFEEEE;
    margin-bottom: 35px;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #2A2A2A;
    /* Même fond que tes cartes avis */
    border-radius: 8px;
    padding: 18px 22px;
    color: #EFEEEE;
    transition: background-color 0.3s ease;
}

/* Le titre de la question */
.faq-item summary {
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    list-style: none;
    /* Cache la flèche par défaut */
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

/* Cache la flèche par défaut sur les navigateurs Webkit (Chrome/Safari) */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* On crée notre propre indicateur (+ / -) avec la couleur beige */
.faq-item summary::after {
    content: '+';
    color: #DED6AE;
    font-size: 1.8rem;
    line-height: 1;
    font-family: monospace;
    /* Pour que le + soit bien centré */
}

/* Quand la question est ouverte, le + devient un - */
.faq-item[open] summary::after {
    content: '-';
}

/* Le texte de la réponse */
/* ============================================================
   ANIMATION FAQ (VERSION JAVASCRIPT)
============================================================ */

/* Le conteneur est masqué par défaut avec une hauteur de 0 */
.faq-item .faq-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.35s ease-in-out, opacity 0.3s ease-in-out;
}

/* Quand la classe active est ajoutée par le JS */
.faq-item.is-open .faq-content {
    opacity: 1;
}

/* Ton paragraphe (inchangé, sauf qu'on gère le padding proprement) */
.faq-item p {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #C9C9C9;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(222, 214, 174, 0.2);
}

/* Animation du "+" qui devient "-" en tournant légèrement */
.faq-item summary::after {
    content: '+';
    color: #DED6AE;
    font-size: 1.8rem;
    line-height: 1;
    font-family: monospace;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Si l'item est ouvert, on peut faire tourner le plus ou changer le contenu */
.faq-item.is-open summary::after {
    content: '-';
    transform: rotate(180deg);
    /* Effet de rotation sympa en prime */
}

/* Page Profil */

/* --- Styles de la page Profil (Basés sur la DA Contact) --- */
.profile-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    background-color: #1E1E1E;
}

.page-title {
    color: #EFEEEE;
    font-family: "Libre Bodoni", serif;
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
}

.da-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 800px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.input-group {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

/* Style des champs en mode "Pilule" Beige */
.input-group input,
.input-group textarea {
    width: 100%;
    background-color: #DED6AE;
    border: none;
    border-radius: 30px;
    /* Bords très arrondis comme la maquette */
    padding: 20px 25px;
    font-family: "Abhaya Libre", serif;
    font-size: 1.3rem;
    color: #1E1E1E;
    outline: none;
    transition: box-shadow 0.3s ease;
}

/* Ajustement pour le textarea pour garder le style arrondi */
.input-group textarea {
    border-radius: 20px;
    resize: none;
}

/* Effet au clic (focus) */
.input-group input:focus,
.input-group textarea:focus {
    box-shadow: 0 0 0 2px #7E0B0B;
}

/* Style du texte par défaut (placeholder) */
.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(30, 30, 30, 0.6);
}

/* L'étoile rouge positionnée à droite */
.required-star {
    position: absolute;
    right: 25px;
    color: #7E0B0B;
    font-size: 2rem;
    line-height: 1;
    pointer-events: none;
    /* Empêche l'étoile de bloquer le clic dans le champ */
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* --- Lien de redirection (Connexion <-> Inscription) --- */
.auth-redirect {
    font-family: "Abhaya Libre", serif;
    font-size: 1.2rem;
    color: #EFEEEE;
    margin-top: 10px;
}

.auth-redirect a {
    color: #DED6AE;
    /* Couleur beige de ta DA */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-redirect a:hover {
    color: #7E0B0B;
    /* Rouge sombre de la Nuit des Purges au survol */
    text-decoration: underline;
}

/* Fin Page profil */

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

.concept {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.concept h2 {
    text-align: center;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 2.2rem;
    color: #EFEEEE;
    padding: 10px;
    width: 300px;
    margin-top: 20px;
}

.concept p {
    text-align: center;
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-style: normal;
    color: #EFEEEE;
    width: 365px;
    margin: 0 auto;
}

.concept-img {
    width: 365px;
    height: 200px;
    background-color: #DED6AE;
    border: 0px solid;
    border-radius: 30px;
}

.reserve-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.reserve h2 {
    text-align: center;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 2.2rem;
    color: #EFEEEE;
    padding: 10px;
    width: 300px;
    margin-top: 20px;
    margin: 20px auto 20px auto;
}

.reserve-bloc {
    width: 365px;
    height: 370px;
    background-color: #DED6AE;
    border: 0px solid;
    border-radius: 30px;
}

.reserve-img {
    width: 340px;
    border: 2px solid #7E0B0B;
    height: 230px;
    border-radius: 20px;
    margin-top: 10px;
    margin: 10px auto;
}

.reserve-bloc h3 {
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    padding-left: 16px;
    font-size: 1.5rem;
}

.reserve-bloc p {
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    padding-left: 16px;
    font-size: 1.21rem;
}

/* Dashboard admin */

/* --- TABLEAU DE BORD ADMIN --- */

.dashboard-page {
    /* Utilise les mêmes bases que ta profile-page */
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-grid {
    display: grid;
    gap: 30px;
    width: 100%;
    /* Disposition : 1 colonne sur mobile, 2 colonnes sur grand écran */
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 2fr 1fr;
        /* La liste des inscrits prend plus de place */
    }

    .inscrits-card {
        grid-column: 1 / 3;
        /* Le tableau prend toute la largeur en haut */
    }
}

/* Style des cartes Admin (Basé sur la DA des formulaires) */
.admin-card {
    background-color: #DED6AE;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.admin-card h2 {
    font-family: "Libre Bodoni", serif;
    color: #7E0B0B;
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #7E0B0B;
    padding-bottom: 10px;
}

/* --- Style du Tableau (Liste des inscrits) --- */
.table-responsive {
    overflow-x: auto;
    /* Permet de scroller horizontalement sur mobile */
}

.da-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Abhaya Libre", serif;
    font-size: 1.2rem;
    color: #1E1E1E;
}

.da-table th {
    background-color: #7E0B0B;
    color: #EFEEEE;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.da-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(126, 11, 11, 0.2);
}

.da-table tbody tr:hover {
    background-color: rgba(126, 11, 11, 0.05);
    /* Effet au survol des lignes */
}

/* --- Style des Commentaires --- */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    background-color: #EFEEEE;
    /* Blanc cassé pour détacher du beige */
    padding: 15px;
    border-radius: 15px;
}

.comment-meta {
    font-family: "Abhaya Libre", serif;
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
}

.comment-text {
    font-family: "Abhaya Libre", serif;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
}

.comment-actions {
    display: flex;
    gap: 10px;
}

/* Boutons d'action Admin */
.admin-btn {
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    padding: 8px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    color: #EFEEEE;
}

.btn-accept {
    background-color: #2b7a0b;
    /* Vert sombre pour valider */
}

.btn-accept:hover {
    background-color: #1f5a08;
}

.btn-reject {
    background-color: #7E0B0B;
    /* Rouge de ta DA pour refuser */
}

.btn-reject:hover {
    background-color: #5a0808;
}

/* Ajustement pour le formulaire de score */
.score-form select {
    width: 100%;
    background-color: #EFEEEE;
    border: none;
    border-radius: 30px;
    padding: 20px 25px;
    font-family: "Abhaya Libre", serif;
    font-size: 1.2rem;
    color: #1E1E1E;
    outline: none;
    cursor: pointer;
}

/* Mentions legales */

/* --- PAGE MENTIONS LÉGALES --- */

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #DED6AE;
    /* Beige de ta DA */
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: "Libre Bodoni", serif;
    color: #7E0B0B;
    /* Rouge sang */
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #7E0B0B;
    padding-bottom: 5px;
    display: inline-block;
}

.legal-section p {
    font-family: "Abhaya Libre", serif;
    color: #1E1E1E;
    /* Texte sombre pour que ce soit bien lisible sur le fond beige */
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.legal-section a {
    color: #7E0B0B;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.legal-section a:hover {
    text-decoration: underline;
    color: #1E1E1E;
}

.footer {
    display: flex;
    align-items: stretch;
    background-color: #1E1E1E;
    color: #DED6AE;
    min-height: 280px;
}


.footer-logo-zone {
    flex: 0 0 auto;
    width: 200px;
    border-top-right-radius: 50% 50%;
    border-bottom-right-radius: 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.footer-logo {
    height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}


.footer-contenu {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 40px 20px;
}


.footer-cols {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-grow: 1;
    align-items: flex-start;
    padding-top: 10px;
}


.footer-col h4 {
    color: #EFEEEE;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}


.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.footer-col li {
    margin-bottom: 8px;
}


.footer-col a {
    color: #D9D9D9;
    text-decoration: none;
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-size: 1.2rem;
    transition: color .2s;
}


.footer-col a:hover {
    color: #DED6AE;
}


.footer-bas {
    display: flex;
    flex-direction: column;
    /* Empilement vertical par défaut */
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}


.footer-trait {
    width: 100%;
    height: 1px;
    background-color: rgba(222, 214, 174, 0.4);
    border: none;
    margin: 0;
}


.footer-copyright {
    color: #D9D9D9;
    font-family: "Abhaya Libre", serif;
    font-size: 0.85rem;
    text-align: center;
    margin: 0;
}

@media (min-width: 768px) {
    /* ... tes autres règles desktop existantes ... */

    .footer-bas {
        flex-direction: row;
        /* Passage en ligne */
        justify-content: space-between;
        gap: 30px;
    }

    .footer-cols {
        margin-right: 20vw;
    }

    .footer-trait {
        flex-grow: 1;
        /* Le trait s'étire */
        max-width: 50%;
        /* Reste fidèle à la maquette */
        margin: 0 auto;
    }

    .footer-copyright {
        font-size: 0.9rem;
        white-space: nowrap;
        /* Force sur une ligne */
    }
}

.contact-section {
    background-color: #7E0B0B;
}

@media (max-width: 768px) {


    .footer {
        min-height: auto;
    }

    .footer-col h4 {
        font-size: 1.1rem;
    }

    .footer-col a {
        font-size: 1rem;
    }

    .footer-logo-zone {
        width: 130px;
    }


    .footer-contenu {
        padding: 25px 20px 15px;
    }


    .footer-cols {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }


    .footer-copyright {
        text-align: center;
        font-size: 0.85rem;
    }
}


@media (max-width: 480px) {


    .footer-logo-zone {
        width: 90px;
    }


    .footer-contenu {
        padding: 20px 15px 15px;
    }
}


/* --- Surcharges CSS pour Select2 (Design La Nuit des Purges) --- */
.select2-container--default .select2-selection--single {
    background-color: #EFEEEE !important;
    border: none !important;
    border-radius: 30px !important;
    height: 62px !important;
    /* Pour correspondre au padding de 20px */
    padding: 15px 25px !important;
    outline: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1E1E1E !important;
    font-family: "Abhaya Libre", serif !important;
    font-size: 1.2rem !important;
    line-height: 32px !important;
    padding-left: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 60px !important;
    right: 20px !important;
}

.select2-dropdown {
    border: none !important;
    border-radius: 15px !important;
    background-color: #EFEEEE !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
    font-family: "Abhaya Libre", serif !important;
    font-size: 1.1rem !important;
    overflow: hidden !important;
}

.select2-search__field {
    border-radius: 15px !important;
    border: 1px solid #DED6AE !important;
    font-family: "Abhaya Libre", serif !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #7E0B0B !important;
    color: #EFEEEE !important;
}

/* Page accueil */

/* ---- Bouton rouge réutilisable ---- */
.btn-rouge {
    display: inline-block;
    background-color: #7E0B0B;
    color: #EFEEEE;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color .3s;
    padding: 20px;
    border: 0px solid;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: "IM Fell Great Primer", serif;
    font-style: normal;
}


.btn-rouge:hover {
    background-color: #9c1010;
}


.btn-large {
    padding: 14px 40px;
    font-size: 1rem;
    line-height: 1.4;
}


/* Titres de section communs */
.concept-bloc h2,
.avis-bloc h2,
.refuge-texte h2,
.immunite-bloc h2 {
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    color: #EFEEEE;
}


/* ---- Un concept unique ---- */
.concept-bloc {
    padding: 35px 25px 45px;
    text-align: center;
    background-color: #1E1E1E;
}


.concept-bloc h2 {
    font-size: 1.9rem;
    margin-bottom: 25px;
}


.concept-bloc p {
    color: #EFEEEE;
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.5;
    text-align: left;
    max-width: 620px;
    margin: 0 auto 20px;
}


.concept-bloc strong {
    font-weight: 700;
    color: #EFEEEE;
}


.concept-bloc .btn-rouge {
    margin-top: 15px;
}


/* ---- Les avis de nos survivants ---- */
.avis-bloc {
    padding: 20px 25px 45px;
}


.avis-bloc h2 {
    font-size: 1.7rem;
    margin-bottom: 30px;
    text-align: center;
}


.avis-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}


.avis-card {
    background-color: #2A2A2A;
    border-radius: 8px;
    padding: 20px 22px;
    width: 100%;
    max-width: 360px;
}


.etoiles {
    color: #DED6AE;
    font-size: 1.2rem;
    letter-spacing: 10px;
    margin-bottom: 15px;
}


.avis-texte {
    color: #C9C9C9;
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 18px;
}


.avis-auteur {
    color: #DED6AE;
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: right;
}


/* ---- Le dernier refuge ---- */
.refuge-bloc {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 25px 25px 45px;
    align-items: center;
    background-color: #1E1E1E;
}


.refuge-img {
    width: 100%;
    max-width: 360px;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}


.refuge-texte h2 {
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 20px;
}


.refuge-texte p {
    color: #EFEEEE;
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 25px;
}


.refuge-texte .btn-rouge {
    display: block;
    width: fit-content;
    margin: 0 auto;
}


/* ---- Prêt à acheter votre immunité ? ---- */
.immunite-bloc {
    padding: 25px 25px 50px;
    text-align: center;
}


.immunite-bloc h2 {
    font-size: 1.8rem;
    margin-bottom: 35px;
}


.immunite-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
}


.immunite-texte {
    color: #EFEEEE;
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.5;
    text-align: left;
    max-width: 420px;
}


.compteur-zone {
    text-align: center;
}


.compteur-label {
    color: #EFEEEE;
    font-family: "Libre Bodoni", serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
}


/* Afficheur digital rouge.
  Police "DSEG7 Classic" chargée via le <link> dans le <head>.
  Si la police ne charge pas, repli sur une mono (toujours rouge). */
.compteur {
    font-family: "DSEG7 Classic", "Courier New", monospace;
    color: #D9D9D9;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}


.compteur-zone .btn-rouge {
    text-transform: uppercase;
}

/* Page infos */

.page-infos {
    min-height: 100vh;
}


/* Titre de la page */


.infos-titre {
    text-align: center;
    padding: 30px 20px 10px;
}


.infos-titre h1 {
    color: #7E0B0B;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 2.5rem;
}


.infos-titre h1 span {
    color: #EFEEEE;
    font-family: "IM Fell Great Primer", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.6rem;
}


/* Flèche sous le titre (position normale, pas absolue) */
.fleche-scroll {
    display: block;
    margin: 15px auto 20px;
    width: 20px;
    height: auto;
    animation: bounce-fleche 2s infinite;
}


@keyframes bounce-fleche {


    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }


    40% {
        transform: translateY(-12px);
    }


    60% {
        transform: translateY(-6px);
    }
}


/* Badges infos clés */


.infos-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px 15px;
}


.badges-ligne {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}


.badge {
    background-color: #DED6AE;
    color: #1E1E1E;
    font-family: "Abhaya Libre", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.1rem;
    text-align: center;
    padding: 12px 20px;
    border-radius: 4px;
    min-width: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Plan du site + Contact */


.plan-contact {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 35px 20px;
}


.plan-contact h2 {
    text-align: center;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.9rem;
    color: #EFEEEE;
    margin-bottom: 20px;
}


.plan-img {
    display: block;
    width: 100%;
    max-width: 365px;
    margin: 0 auto;
    border-radius: 10px;
}


.contact-infos p {
    color: #EFEEEE;
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.1rem;
    max-width: 365px;
    margin: 0 auto;
}


.contact-infos ul {
    list-style: disc;
    max-width: 365px;
    margin: 12px auto 25px;
    padding-left: 35px;
}


.contact-infos li {
    color: #EFEEEE;
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1rem;
}


/* En cas d'urgence */


.urgence {
    padding: 25px 20px 40px;
}


.urgence h2 {
    text-align: center;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 2rem;
    color: #EFEEEE;
    margin-bottom: 35px;
}


.urgence-grid {
    display: flex;
    flex-direction: column;
    gap: 45px;
    align-items: center;
}


.urgence-card {
    width: 100%;
    max-width: 365px;
}


.urgence-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}


.urgence-card h3 {
    color: #EFEEEE;
    font-family: "Abhaya Libre", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.45rem;
    margin: 15px 0 10px;
}


.urgence-card p {
    color: #EFEEEE;
    font-family: "Abhaya Libre", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.05rem;
    margin-bottom: 15px;
}


/* Formulaire Contactez-nous */

.contact-panel {
    border-radius: 25px;
    width: 82vw;
    margin: 0 auto;
}



.contact-panel h2 {
    text-align: center;
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.9rem;
    color: #ffffff;
    margin-bottom: 30px;
}


.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
}


.form-field {
    position: relative;
}


.form-field input,
.form-field textarea {
    width: 100%;
    background-color: #DED6AE;
    color: #1E1E1E;
    border: none;
    border-radius: 18px;
    padding: 13px 35px 13px 18px;
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1rem;
}


.form-field textarea {
    resize: vertical;
    min-height: 110px;
}


.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(30, 30, 30, 0.65);
}


.form-field input:focus,
.form-field textarea:focus {
    outline: 2px solid #7E0B0B;
}


.etoile {
    position: absolute;
    top: 13px;
    right: 16px;
    color: #7E0B0B;
    font-weight: 700;
    font-size: 1.1rem;
    pointer-events: none;
}


.form-message {
    margin-bottom: 25px;
}


.form-btn {
    display: block;
    margin: 0 auto;
    background-color: #DED6AE;
    color: #1E1E1E;
    border: none;
    border-radius: 18px;
    padding: 13px 60px;
    font-family: "Abhaya Libre", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color .3s;
}


.form-btn:hover {
    background-color: #EFEEEE;
}

/* Reveal in scroll */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.urgence-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
    /* Animation fluide */
}

/* Le conteneur doit masquer ce qui déborde */
.urgence-card {
    overflow: hidden;
}

/* L'effet de zoom au survol */
.urgence-card:hover img {
    transform: scale(1.05);
    /* Zoom léger de 5% */
}

/* Responsive */

@media (min-width: 768px) {

    .toggle {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: row;
        position: static;
        align-items: center;
        justify-content: space-between;
        background-color: #7E0B0B;
        filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
        border: 0px solid;
        border-radius: 50px;
        gap: 3vw;
        height: 8vh;
        padding: 2vw;
    }

    .nav-menu a {
        font-size: 1.45rem;
        position: relative;
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #DED6AE;
        transition: width 0.3s ease;
    }

    .nav-menu > a:hover::after,
    .nav-menu > a.active::after {
        width: 100%;
    }

    .logo {
        right: 2vw;
    }

    .hero-section {
        background-image: url(/public/images/hero-section-desktop.jpg);
        background-size: cover;
    }

    .hero-section h1 {
        font-size: 4rem;
    }

    .hero-section p {
        width: 25vw;
    }

    .concept p {
        width: 45vw;
        font-size: 1.3rem;
    }

    .concept-img {
        width: 45vw;
    }

    .reserve-grid {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .reserve h2 {
        width: 50vw;
    }

    .reserve-bloc {
        width: 32vw;
    }

    .reserve-img {
        width: 29vw;
    }

    .reserve-bloc h3 {
        font-size: 1.7rem;
        padding-left: 30px;
    }

    .reserve-bloc p {
        font-size: 1.25rem;
        padding-left: 30px;
        width: 28vw;
    }

    .form-row {
        flex-direction: row;
    }

    .form-row.full-width {
        flex-direction: column;
    }

    .cadre-page {
        border: 34px solid transparent;
        border-image-width: 34px;
    }

    /* .avis-bloc {
        margin-top: 5vh;
    }

    .refuge-bloc {
        margin-top: 5vh;
    }

    .immunite-bloc {
        margin-top: 5vh;
    }

    .concept-bloc {
        margin-top: 5vh;
    } */

    .concept-bloc h2 {
        font-size: 2.4rem;
    }


    .avis-bloc h2 {
        font-size: 2rem;
    }


    /* 3 avis côte à côte */
    .avis-grid {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }


    .avis-card {
        width: 30%;
        max-width: 320px;
    }


    /* refuge : carte à gauche, texte à droite */
    .refuge-bloc {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }


    .refuge-img {
        width: 38%;
        max-width: 420px;
        height: 280px;
    }


    .refuge-texte {
        width: 45%;
        max-width: 480px;
    }


    .refuge-texte h2 {
        text-align: left;
    }


    .refuge-texte .btn-rouge {
        margin: 0;
    }


    /* immunité : texte à gauche, compteur à droite */

    .immunite-texte {
        font-size: 1.4rem;

    }

    .immunite-bloc h2 {
        font-size: 2.2rem;
    }


    .immunite-grid {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }


    .compteur {
        font-size: 2.6rem;
    }

    .infos-titre h1 {
        font-size: 3.5rem;
    }


    .infos-titre h1 span {
        font-size: 2rem;
    }

    .survie-intro p {
        font-size: 1.2rem;
    }

    .badge {
        font-size: 1.8rem;
        padding: 14px 30px;
        min-width: 160px;
        text-wrap: wrap;
        width: 12.5vw;
    }


    .plan-contact {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
        padding: 50px 40px;
    }


    .plan,
    .contact-infos {
        width: 38vw;
        max-width: 480px;
    }


    .plan-img {
        max-width: 60%;
    }


    .contact-infos p,
    .contact-infos ul {
        max-width: 100%;
    }

    .contact-infos p {
        font-size: 1.4rem;
    }


    .urgence-grid {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
    }


    .urgence-card {
        width: 35vw;
        max-width: 420px;
    }


    .contact-section {
        padding: 35px 50px;
    }

    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 40px;
    }

    .form-message {
        max-width: 60%;
        margin: 0 auto 30px;
    }

    /* Page concept */
    .survie-hero {
        border: 34px solid transparent;
        border-image-width: 34px;
        padding: 20px 40px 60px;
    }


    .survie-intro h2 {
        font-size: 2.4rem;
    }


    .conditions-titre {
        font-size: 2rem;
        margin-bottom: 35px;
    }


    .conditions-grid {
        gap: 30px;
        /* Un peu plus d'espace entre les grandes cartes */
        max-width: 900px;
        /* ⚠️ À augmenter (c'était 720px), sinon tes cartes vont passer à la ligne */
        margin: 0 auto;
    }


    .condition-card {
        flex: 0 1 260px;
        max-width: none;
    }


    .card-haut {
        padding: 22px 14px 16px;
    }


    .condition-card h3 {
        font-size: 1.6rem;
    }


    .card-icone {
        width: 130px;
        height: 130px;
    }


    .card-bas {
        padding: 16px 16px 20px;
    }


    .card-bas p {
        font-size: 1.1rem;
    }


    .condition-card h3 {
        font-size: 1.4rem;
    }


    .card-icone {
        width: 150px;
        height: 150px;
    }


    .condition-card p {
        font-size: 1rem;
    }

    .souvenirs-texte p {
        font-size: 1.4rem;
    }

    /* Costumes : texte à gauche, logo à droite */
    .costumes h2,
    .souvenirs h2 {
        font-size: 2rem;
    }


    .costumes-grid {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }


    .costumes-texte {
        max-width: 600px;
    }

    .costumes-texte p {
        font-size: 1.4rem;
    }


    .logo-emplacement {
        width: 19vw;
        height: 19vw;
    }

    /* Souvenirs : photo à gauche, texte à droite */
    .souvenirs-grid {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .souvenirs-img {
        width: 45%;
        max-width: 460px;
        height: 300px;
    }

    .souvenirs-texte {
        max-width: 420px;
    }

    /* Nos retours : 3 cartes côte à côte */
    .retours {
        border: 34px solid transparent;
        border-image-width: 34px;
    }

    .retours-panel {
        padding: 35px 40px 40px;
    }

    .retours-panel h2 {
        font-size: 2rem;
    }

    .retours-grid {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 25px;
    }

    .scroll-indicator {
        display: block;
    }

    .retour-texte {
        font-size: 1.2rem;
    }

    .retour-card {
        width: 30%;
        max-width: 320px;
    }

    .faq-section h2 {
        font-size: 2.4rem;
    }

    .faq-item summary {
        font-size: 1.3rem;
    }

    .footer-col h4 {
        font-size: 2rem;
    }

    .footer-col ul {
        margin-top: 2vh;
    }
}

.section-encadree {
    position: relative;
    background-color: #7E0B0B;
    /* Le rouge du cadre */

    /* C'est ce padding qui définit l'épaisseur de ta bordure rouge ! */
    /* 40px en haut/bas et 30px sur les côtés (à ajuster selon tes goûts) */
    padding: 40px 30px;

    /* Optionnel : marge extérieure si tu as plusieurs sections à la suite */
    margin-bottom: 20px;
    overflow: hidden;
    /* Empêche tout débordement */
}

/* Le style commun de nos cercles "découpeurs" */
.coin {
    position: absolute;
    width: 60px;
    /* La taille du trou */
    height: 60px;
    background-color: #1E1E1E;
    /* IMPORTANT : Doit être la même couleur que le body de ton site ! */
    border-radius: 100%;
    /* Fait le cercle parfait */
    z-index: 1;
    /* S'assure qu'ils sont par dessus le rouge */
}

.top-left {
    top: -30px;
    left: -30px;
}

.top-right {
    top: -30px;
    right: -30px;
}

.bottom-left {
    bottom: -30px;
    left: -30px;
}

.bottom-right {
    bottom: -30px;
    right: -30px;
}

/* ============================================================
   PARTAGE SOCIAL (PAGE PROFIL)
============================================================ */
.partage-social {
    background-color: #2A2A2A; /* Même fond que tes cartes avis */
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
    border: 1px solid rgba(222, 214, 174, 0.1); /* Bordure beige très discrète */
}

.partage-social h3 {
    color: #DED6AE; /* Beige de ta DA */
    font-family: "Libre Bodoni", serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.partage-social p {
    color: #EFEEEE;
    font-family: "Abhaya Libre", serif;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.boutons-partage {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Pratique pour le mobile */
}

.btn-social {
    padding: 12px 25px;
    border-radius: 30px;
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EFEEEE;
}

.btn-social:hover {
    transform: translateY(-3px); /* Petit effet de soulèvement au survol */
    opacity: 0.9;
}

/* Couleurs spécifiques des réseaux avec un rendu mat/sombre pour coller à l'univers */
.btn-x { 
    background-color: #000000; 
    border: 1px solid #333; 
}
.btn-wa { 
    background-color: #1a8f42; /* Vert WhatsApp assombri */
}
.btn-fb { 
    background-color: #1255b0; /* Bleu Facebook assombri */
}

.zone-danger {
    margin-top: 10px; 
    border: 2px dashed #7E0B0B; 
    background-color: rgba(126, 11, 11, 0.1); 
    padding: 25px;
    border-radius: 15px;
}

.zone-danger h2 {
    color: #EFEEEE;
    border-bottom: none; 
    margin-bottom: 15px;
}

.zone-danger p {
    color: #DED6AE;
    font-family: 'Abhaya Libre', serif;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.btn-dissoudre {
    background-color: transparent; 
    color: #EFEEEE; 
    border: 2px solid #7E0B0B; 
    padding: 15px 30px; 
    border-radius: 10px; 
    font-family: 'Libre Bodoni', serif; 
    font-size: 1.3rem; 
    cursor: pointer; 
    width: 100%; 
    transition: 0.3s;
}

.btn-dissoudre:hover {
    background-color: #7E0B0B; 
    color: #FFFFFF;
}