* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: white;
}

.topbar {
    background: linear-gradient(to right, #020e25, #80170c);
    height: 120px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.topbar-container {
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* LEFT */
.topbar-left {
    color: white;
    font-size: 18px;
}

.slogan {
    display: block;
    margin-bottom: 8px;
}

.socials a {
    color: white;
    margin-right: 12px;
    font-size: 26px;
    text-decoration: none;
}

.socials a:hover {
    color: #9cff00;
}

/* CENTER */
.topbar-center {
    text-align: center;
}

.logo {
    height: 170px;
}

/* RIGHT */
.topbar-right ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.topbar-right a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1px;
}

.topbar-right li.active a,
.topbar-right a:hover {
    color: #4A7BAF;
}

.topbar-right i {
    font-size: 20px;
    
}

.topbar-right a:hover i {
    color: #4A7BAF;
}


.hero-slider {
    width: 100%;
    height: 650px; /* ⬅️ ICI tu règles la hauteur */
    position: relative;
    overflow: hidden;
    margin-top: 120px;
    z-index: 1;
}

/* SECTION IMAGE */
.hero-banner {
    position: relative;
    z-index: 10;               /* au-dessus du hero */
    margin-top: -70px;        /* ⬅️ FAIT REMONTER l’image */
    text-align: center;
}

/* IMAGE */
.hero-banner img {
    max-width: 20%;
    height: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;       /* couvre toute la zone */
    background-position: center;  /* centre l’image */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    
}

.slide.active {
    opacity: 1;
}

/* Contenu texte */
.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: #fff;
    max-width: 500px;
}

.slide-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.slide-content p {
    font-size: 18px;
}

/* Option : fond sombre pour lisibilité */
.slide-content {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 25px;
    border-left: 5px solid #80170c;
}

/* TEXTE AU-DESSUS */
.stats-intro {
    background: #fff;
    text-align: center;
    padding: 50px 20px 40px;
}

.stats-intro h2 {
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.stats-intro h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: #80170c;
    margin: 10px auto 0;
}

.stats-intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    color: #333;
}

/* BANNIÈRE STATS */
.stats-banner {
    background: #020e25;
    padding: 50px 20px;
}

.stats-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* BLOC STAT */
.stat {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

/* CHIFFRES */
.stat-number {
    font-size: 42px;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

/* LABEL */
.stat-label {
    font-size: 15px;
    color: #cfd6b5;
}

/* COULEURS */
.green  { color: #9cff00; }
.yellow { color: #ffc400; }
.grey   { color: #cfd6b5; }
.red    { color: #ff4c4c; }
.blue   { color: #4aa3ff; }


.content-sections {
    background: #fff;
    padding: 80px 20px;
}

.content-block {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Inversion image / texte */
.content-block.reverse {
    flex-direction: row-reverse;
}

/* TEXTE */
.content-text {
    flex: 1;
}

.content-number {
    font-size: 26px;
    color: #2b311e;
    display: block;
    margin-bottom: 10px;
}

.content-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.content-text h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 3px;
    background: #80170c;
}

.content-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

/* BOUTON */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 26px;
    background: #80170c;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    transition: background 0.3s;
}

.btn:hover {
    background: #9cff00;
    color: #000;
}

/* IMAGE */
.content-image {
    flex: 1;
}

.content-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
}


/* SECTION RÉSEAUX + VIDEO UNIQUE */
.social-video {
    background: #2b311e; /* cohérent avec ta section stats */
    padding: 80px 20px;
    text-align: center;
}

.social-video h2 {
    font-size: 32px;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.social-video h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: #9cff00;
    margin: 10px auto 0;
}

/* ICONES */
.social-icons {
    margin-bottom: 40px;
}

.social-icons a {
    color: #fff;
    font-size: 32px;
    margin: 0 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #9cff00;
}

/* CADRE VIDEO */
.video-wrapper {
    max-width: 900px;
    margin: auto;
    background: #000;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.video-wrapper iframe {
    width: 100%;
    height: 500px;
    border-radius: 4px;
    border: 2px solid #333;
}

/* --- PAGE LA TEAM --- */

.team-header {
    text-align: center;
    padding: 120px 20px 60px;
    background: #fff;
}

.team-header h1 {
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    margin-top: 120px;
    color: #2b311e;
}

.team-photo img {
    max-width: 900px;
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    margin-bottom: 25px;
}

.team-quote {
    font-size: 22px;
    font-style: italic;
    color: #5b6a2f;
    margin-top: 10px;
}

/* TEXTE VALEURS */
.team-values {
    background: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.team-values p {
    max-width: 900px;
    margin: auto;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

/* TIMELINE */
.team-timeline {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.team-timeline h2 {
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.team-timeline h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: #80170c;
    margin: 10px auto 0;
}

/* --- TIMELINE CENTRALE ALTERNÉE --- */

.team-timeline {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.team-timeline h2 {
    font-size: 32px;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.team-timeline h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: #80170c;
    margin: 10px auto 0;
}

/* Structure */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
    padding: 20px 0;
}

/* Ligne centrale */
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: #80170c;
    transform: translateX(-50%);
}

/* Items */
.timeline-item {
    width: 50%;
    padding: 20px 40px;
    position: relative;
}

.timeline-item .content {
    background: #f5f5f5;
    padding: 20px 25px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-left: 4px solid #80170c;
}

/* Alternance gauche/droite */
.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

/* Points sur la ligne */
.timeline-item::before {
    content: "";
    position: absolute;
    top: 30px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    border: 3px solid #2b311e;
}

.timeline-item.left::before {
    right: -9px;
}

.timeline-item.right::before {
    left: -9px;
}

/* Texte */
.year {
    font-size: 22px;
    font-weight: bold;
    color: #80170c;
}

.timeline-item h3 {
    font-size: 20px;
    margin: 8px 0 10px;
    color: #2b311e;
}

.timeline-item p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* --- SECTION MEMBRES --- */

.team-members {
    background: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
}

.team-members h2 {
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.team-members h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: #80170c;
    margin: 10px auto 0;
}

/* Grille */
.members-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

/* Carte membre */
.member-card {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.member-card:hover {
    transform: translateY(-5px);
}

/* Photo */
.member-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Nom */
.member-card h3 {
    font-size: 20px;
    color: #2b311e;
    margin-bottom: 8px;
}

/* Rôle */
.member-card .role {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #80170c;
    margin-bottom: 10px;
}

/* Infos */
.member-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* --- PAGE LE JEU : ALTERNANCE TEXTE / IMAGE --- */

.game-alt-section {
    background: #fff;
    padding: 80px 20px;
}

.game-block {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Inversion */
.game-block.reverse {
    flex-direction: row-reverse;
}

/* Texte */
.game-text {
    flex: 1;
}

.game-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #2b311e;
}

.game-text h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 3px;
    background: #80170c;
}

.game-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

/* Image */
.game-image {
    flex: 1;
}

.game-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* --- GALERIE PHOTO --- */

.gallery-section {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.gallery-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.gallery-section h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: #80170c;
    margin: 10px auto 0;
}

/* Grille mosaïque */
.gallery-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    grid-auto-rows: 260px;
    gap: 20px;
}

/* Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Variations de taille */
.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

/* Images */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* --- LIGHTBOX AVEC NAVIGATION --- */

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: #9cff00;
}

/* Flèches navigation */
.nav {
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    padding: 10px 20px;
    transform: translateY(-50%);
    transition: 0.3s;
    user-select: none;
}

.nav:hover {
    color: #9cff00;
}

.nav.prev {
    left: 40px;
}

.nav.next {
    right: 40px;
}


/* --- PAGE ACCES MEMBRES --- */

.access-container {
    margin-top: 180px; /* pour passer sous le header fixe */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 20px;
}

.access-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 30px;
    border-radius: 8px;
    border: 2px solid #80170c;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.access-box h2 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 28px;
}

.access-box input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #555;
    background: #222;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.access-box input:focus {
    border-color: #9cff00;
}

.access-box button {
    width: 100%;
    padding: 12px;
    background: #80170c;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.access-box button:hover {
    background: #baff33;
}

.dashboard {
    margin-top: 110px;
    padding: 20px;
    color: #fff;
}

.events-box, .admin-box {
    background: rgba(0,0,0,0.7);
    border: 2px solid #80170c;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.event-item {
    padding: 10px;
    border-bottom: 1px solid #444;
}

.event-item:last-child {
    border-bottom: none;
}

.admin-box input, .admin-box button {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #80170c;
    background: #222;
    color: #fff;
}

.admin-box button {
    background: #80170c;
    cursor: pointer;
    font-weight: bold;
}

.page-offset {
    margin-top: 60px; /* ajuste si besoin */
}

/* Icône du calendrier en blanc */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}


/* --- ENCARt BIENVENUE MEMBRES --- */

.welcome-box {
    margin-top: 70px; /* Ajuste selon la hauteur de ton header */
    display: flex;
    justify-content: center;
    width: 100%;
}

.welcome-content {
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid #80170c;
    padding: 20px 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.welcome-content i {
    font-size: 32px;
    color: white;
}

.welcome-content strong {
    color: #ffffff;
}

.delete-btn {
    margin-left: 15px;
    background: #ff4444;
    border: none;
    padding: 5px 10px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.delete-btn:hover {
    background: #ff0000;
}

.event-item em {
    color: #ccc;
    font-size: 14px;
}

textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #80170c;
    background: rgba(0,0,0,0.6);
    color: white;
    border-radius: 5px;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.participate-btn {
    margin-top: 5px;
    background: #0099ff;
    border: none;
    padding: 6px 12px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.participate-btn:hover {
    background: #0077cc;
}

.participants-list {
    margin: 5px 0;
    color: #9cff00;
    font-size: 14px;
}

.participants-count {
    margin: 5px 0;
    font-size: 14px;
    color: #9cff00;
    font-weight: bold;
}

.fab-footer {
    background: linear-gradient(to right, #020e25, #80170c);
    padding: 40px 20px;
    color: white;
    margin-top: 0px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
    position: relative;
}

/* Colonnes */
.footer-col {
    flex: 1;
}

/* Titres */
.footer-col h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #4A7BAF;
}

/* Liens */
.footer-col a {
    color: white;
    text-decoration: none;
}

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

/* Icônes réseaux */
.footer-socials a {
    margin-right: 10px;
    color: white;
    font-size: 18px;
}

.footer-socials a:hover {
    color: #4A7BAF;
}

/* Traits verticaux entre colonnes */
.footer-col:not(:last-child) {
    border-right: 2px solid rgba(255,255,255,0.4);
    padding-right: 20px;
}

.footer-col:not(:first-child) {
    padding-left: 20px;
}

/* Bas du footer */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom a {
    color: #4A7BAF;
    text-decoration: none;
}

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

.login-info {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #9cff00;
    color: #ddd;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 5px;
}

.login-info-box {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7); /* même fond que ta box */
    border: 2px solid #80170c; /* bordure style FAB */
    border-radius: 10px;
    text-align: center;
    color: white;
    font-size: 18px;
    line-height: 1.6;
}


/* SECTION CONTACT */
.contact-section {
    padding: 60px 20px;
    background: white;
    color: black;
    margin-top: 120px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-item: stretch;
}

/* Colonne gauche */
.contact-left h2,
.contact-right h2 {
    color: black;
    margin-bottom: 15px;
}

.contact-left p {
    line-height: 1.6;
    font-size: 15px;
    color: black;
}

/* Colonne droite : formulaire */
.contact-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid grey;
    padding: 12px;
    border-radius: 8px;
    color: black;
    font-size: 14px;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form button {
    background: #80170c;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #ab3f33;
}

.contact-hours {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 14px;
}

.contact-hours th,
.contact-hours td {
    border: 1px solid grey;
    padding: 8px;
    text-align: center;
    color: black;
}

.contact-hours th {
    background: rgba(255, 255, 255, 0.1);
    color: #9cff00;
}

.contact-left,
.contact-right {
    flex: 1;
}

/* Trait vertical entre les deux colonnes */
.contact-left {
    border-right: 2px solid #80170c;
    padding-right: 60px;
}

.contact-right {
    padding-left: 20px;
}

/* --- INFOS MEMBRE --- */

.membre-infos {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #80170c;
    border-radius: 8px;
    padding: 20px 30px;
    margin: 20px 0 10px 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.membre-infos p {
    color: #ffffff;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.membre-infos p::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 16px;
    background: #9cff00;
    border-radius: 2px;
    flex-shrink: 0;
}

.logo-equipe {
    height: 120px;
    width: auto;
    border-radius: 6px;
    border: 2px solid #80170c;
}


/* Bouton imprimer feuille d'émargement */
.print-btn {
    display: inline-block;
    margin-left: 10px;
    background: #2b311e;
    border: none;
    padding: 5px 10px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}

.print-btn:hover {
    background: #9cff00;
    color: #000;
}

/* Bouton modifier — même style que supprimer */
.edit-btn {
    margin-left: 15px;
    background: #ff4444;
    border: none;
    padding: 5px 10px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.edit-btn:hover {
    background: #ff0000;
}

/* Formulaire de modification */
.edit-form {
    margin-top: 12px;
    background: rgba(0,0,0,0.4);
    border: 1px solid #80170c;
    border-radius: 6px;
    padding: 15px;
}

.edit-form input,
.edit-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #555;
    background: #222;
    color: #fff;
    font-size: 14px;
}

.edit-save-btn {
    background: #80170c;
    border: none;
    padding: 5px 10px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 8px;
}

.edit-save-btn:hover { background: #9cff00; color: #000; }

.edit-cancel-btn {
    background: #555;
    border: none;
    padding: 5px 10px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.edit-cancel-btn:hover { background: #777; }


.contact-form select {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid grey;
    padding: 12px;
    border-radius: 8px;
    color: black;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form select:focus {
    outline: none;
    border-color: #80170c;
}

.captcha-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.mentions-container {
    margin-top: 170px; /* Ajuste selon la hauteur de ton menu */
    padding: 20px;
}
