/* --- BASE & FONT DEFINITIONS --- */
@font-face {
    font-family: 'Whitedream';
    src: url('Font/Whitedream.otf') format('opentype');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'Alice';
    src: url('Font/Alice.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lobster';
    src: url('Font/Lobster.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


body {
    margin: 0;
    font-family: 'Alice', serif; /* Police principale */
    color: #FBF2B4; /* Or très clair pour le texte */
    background: #1D2547; /* Bleu le plus foncé pour le fond */
    overflow-x: hidden;
    position: relative;
}

/* --- NAVBAR (COMMUNE À TOUTES LES PAGES) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(29, 37, 71, 0.85); /* Bleu foncé avec transparence */
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(248, 194, 44, 0.2);
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-image { width: 40px; height: auto; }
.logo h1 {
    font-family: 'Whitedream', sans-serif;
    font-size: 24px;
    color: #F8C22C; margin: 0; text-shadow: 0 0 8px rgba(248, 194, 44, 0.5);
    font-weight: normal;
}
.nav-links { list-style: none; display: flex; gap: 15px; margin: 0; padding-right: 20px; }
.nav-link {
    color: #FBF2B4; text-decoration: none; font-size: 16px; font-family: 'Alice', serif;
    position: relative; transition: color 0.3s ease;
}
.nav-link::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background-color: #EFB11B; transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: #F8C22C; }
.burger { display: none; cursor: pointer; }
.burger div { width: 20px; height: 2px; background-color: #FBF2B4; margin: 4px 0; transition: all 0.3s ease; }


/* --- HERO SECTION (HOMEPAGE & PAGES INTÉRIEURES) --- */
.hero, .page-hero {
    display: flex; justify-content: center; align-items: center; text-align: center; position: relative;
    background-image: url('Image/Acceuil.png');
    background-size: cover; background-position: center; background-attachment: fixed;
}
.hero { height: 100vh; }
.page-hero { height: 40vh; min-height: 300px; flex-direction: column; }

.hero-overlay, .page-hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(29, 37, 71, 0.6), rgba(29, 37, 71, 0.9));
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 0 15px; }
.page-hero .hero-content { display: flex; flex-direction: column; align-items: center; }

.hero-title-image {
    width: 80%;
    max-width: 650px;
    height: auto;
    margin-top: -150px; /* Remonte l'image et le contenu suivant */
    margin-bottom: 15px; /* Espace ajusté sous l'image */
}

.hero-content h2, .page-hero .hero-content h1 {
    font-family: 'Whitedream', sans-serif;
    color: #F8C22C;
    text-shadow: 0 0 10px rgba(232, 160, 16, 0.7);
    font-weight: normal; margin: 0 0 15px 0;
}
.hero-content h2 { font-size: 60px; }
.page-hero .hero-content h1 { font-size: 48px; }
.hero-content p, .page-hero .hero-content p {
    font-size: 20px; margin-bottom: 20px; color: #FBF2B4;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    font-family: 'Alice', serif;
}
.page-hero .hero-content p { font-size: 18px; max-width: 600px; }
.breadcrumb {
    position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
    font-size: 14px; color: #EFB11B; z-index: 3;
}
.breadcrumb a { color: #EFB11B; text-decoration: none; }
.breadcrumb a:hover { color: #FBF2B4; }

/* --- BOUTONS & ÉLÉMENTS COMMUNS --- */
.cta-button {
    display: inline-block; padding: 12px 30px; background-color: #E8A010;
    color: #1D2547; text-decoration: none; font-size: 16px; font-family: 'Alice', serif;
    border-radius: 50px; border: 2px solid #E8A010; transition: all 0.3s ease;
    animation: glow 2.5s infinite alternate; font-weight: bold;
}
.cta-button:hover {
    background-color: transparent; color: #F8C22C;
    border-color: #F8C22C; box-shadow: 0 0 15px rgba(248, 194, 44, 0.7);
}
@keyframes glow {
    from { box-shadow: 0 0 8px rgba(232, 160, 16, 0.6); }
    to { box-shadow: 0 0 18px rgba(239, 177, 27, 1); }
}

.page-content-section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.page-content-section h3, .salle-categorie-titre, .sponsor-tier h3 {
    font-family: 'Whitedream', sans-serif;
    font-size: 32px;
    color: #F8C22C; text-align: center; margin-bottom: 30px;
    font-weight: normal;
}
.page-content-section p { color: #FBF2B4; line-height: 1.8; font-size: 17px; text-align: justify; margin-bottom: 15px; }


/* --- SECTIONS DE CONTENU (HOMEPAGE) --- */
.intro-section { background-color: #1D2547; padding: 40px 15px; text-align: center; }
.rooms-section { background-color: #1D2547; padding: 60px 0; text-align: center; } /* Padding horizontal retiré */
.trailer-section, .gallery-section { background-color: #202E53; padding: 40px 15px; text-align: center; }

.intro-content h3 { font-family: 'Whitedream', sans-serif; font-size: 28px; color: #F8C22C; margin-bottom: 15px; font-weight: normal; }
.intro-content p { font-size: 16px; max-width: 600px; margin: 0 auto; line-height: 1.7; color: #FBF2B4; }

.trailer-section h3, .rooms-section h3, .gallery-section h3 { font-family: 'Whitedream', sans-serif; font-size: 40px; color: #F8C22C; margin-bottom: 25px; font-weight: normal;}
.video-container { position: relative; width: 100%; max-width: 900px; margin: 0 auto; aspect-ratio: 16 / 9; border: 2px solid #31456F; }
.video-container iframe { width: 100%; height: 100%; border: none; }

.rooms-button { margin-top: 40px; }

.gallery-section p { font-size: 16px; max-width: 600px; margin: 0 auto 20px; line-height: 1.7; color: #FBE475; }
.gallery { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; max-width: 1600px; margin: 0 auto; }
.gallery-item { width: 300px; height: 200px; overflow: hidden; border: 2px solid #2B3B6B; transition: transform 0.3s ease, border-color 0.3s ease; }
.gallery-item:hover { transform: scale(1.05); border-color: #EFB11B; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* Styles pour le carrousel des ambiances */
.rooms-section .carousel-container {
    position: relative;
    margin: 40px auto 0 auto;
    overflow: hidden;
}

.rooms-section .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.rooms-section .carousel-slide {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    box-sizing: border-box;
    padding: 0 8px; /* Ajoute un espacement entre les slides */
    height: 280px;
}

.rooms-section .carousel-slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px; /* Border radius augmenté */
}

.rooms-section .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rooms-section .carousel-slide-inner:hover img {
    transform: scale(1.15);
}

.rooms-section .carousel-slide .room-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(29, 37, 71, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.rooms-section .carousel-slide-inner:hover .room-overlay {
    opacity: 1;
}

.rooms-section .carousel-slide .room-overlay h4 {
    font-family: 'Whitedream', sans-serif;
    font-size: 24px;
    color: #F8C22C;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
    margin: 0;
    font-weight: normal;
    text-align: center;
    padding: 10px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.rooms-section .carousel-slide-inner:hover .room-overlay h4 {
    transform: translateY(0);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(29, 37, 71, 0.8);
    border: 1px solid #F8C22C;
    color: #F8C22C;
    cursor: pointer;
    padding: 0;
    font-size: 24px;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background-color: #E8A010;
    color: #1D2547;
    border-color: #E8A010;
}

.carousel-button.prev { left: 35px; }
.carousel-button.next { right: 35px; }


/* --- PAGE PLAN --- */
.main-content { max-width: 1200px; margin: 0 auto; padding: 60px 20px; display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; }
.map-container { background: #202E53; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); position: relative; border: 1px solid #2B3B6B; }
.map-container::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #E8A010, #F8C22C, #E8A010); z-index: 1; }
.map-container iframe { width: 100%; height: 500px; border: none; display: block; }
.info-panel { background: #202E53; border-radius: 8px; padding: 30px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); border: 1px solid #2B3B6B; }
.info-panel h2 { font-family: 'Whitedream', sans-serif; font-size: 28px; color: #F8C22C; margin: 0 0 25px 0; text-align: center; font-weight: normal; }
.info-section { margin-bottom: 30px; }
.info-section:last-child { margin-bottom: 0; }
.info-section h3 { font-family: 'Alice', sans-serif; font-size: 18px; color: #F8C22C; margin: 0 0 12px 0; display: flex; align-items: center; gap: 8px; font-weight: bold;}
.info-section p, .info-section li { font-size: 15px; line-height: 1.7; color: #FBF2B4; margin: 0 0 8px 0; }
.icon { width: 18px; height: 18px; fill: #F8C22C; }
.contact-button { display: block; background: linear-gradient(135deg, #EFB11B, #E8A010); color: #1D2547; padding: 12px 24px; border-radius: 25px; text-decoration: none; font-size: 14px; font-weight: bold; transition: all 0.3s ease; margin-top: 15px; text-align: center; }
.contact-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(248, 194, 44, 0.4); }
.access-section { max-width: 1200px; margin: 0 auto 60px auto; padding: 0 20px; }
.access-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.access-card { background: #202E53; border-radius: 8px; padding: 25px; border: 1px solid #2B3B6B; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.access-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(239, 177, 27, 0.2); border-color: #EFB11B; }
.access-card h3 { font-family: 'Whitedream', sans-serif; color: #F8C22C; font-size: 20px; margin: 0 0 15px 0; display: flex; align-items: center; gap: 10px; font-weight: normal;}
.access-card p { line-height: 1.6; font-size: 15px; margin: 0; color: #FBF2B4; }


/* --- PAGE PROGRAMME (FINAL REVISION 4) --- */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 0;
}
.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #E8A010;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    box-shadow: 0 0 10px rgba(239, 177, 27, 0.5);
    z-index: 0;
}
.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Force les colonnes à avoir la même hauteur */
    position: relative;
    margin: 0;
    padding: 30px 0;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%; /* Centre le point verticalement */
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #1D2547;
    border: 4px solid #F8C22C;
    border-radius: 50%;
    z-index: 1;
}
.timeline-side {
    width: 50%;
    box-sizing: border-box;
    display: flex;
}
.timeline-side-left {
    padding-right: 40px; /* Espace entre le contenu et la ligne centrale */
    justify-content: flex-end; /* Aligne le contenu à droite */
}
.timeline-side-right {
    padding-left: 40px; /* Espace entre le contenu et la ligne centrale */
    justify-content: flex-start; /* Aligne le contenu à gauche */
}
.timeline-content {
    background: #202E53;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #2B3B6B;
    width: 450px;
    max-width: 100%;
    box-sizing: border-box;
    height: 100%; /* Force le bloc à prendre toute la hauteur */
    display: flex; /* Permet le centrage vertical */
    flex-direction: column; /* Contenu en colonne (titre, paragraphe) */
    justify-content: center; /* Centre le contenu verticalement */
}
.timeline-side-left .timeline-content {
    text-align: right;
}
.timeline-side-right .timeline-content {
    text-align: left;
}
.timeline-side img {
    width: 450px;
    max-width: 100%;
    height: 100%;
    object-fit: cover; /* Assure que l'image remplit l'espace sans se déformer */
    border-radius: 8px;
}
.timeline-content h4 {
    font-family: 'Whitedream', sans-serif;
    color: #F8C22C;
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: normal;
}
.timeline-content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #FBF2B4;
}
.timeline-time {
    font-family: 'Whitedream', sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #FBE475;
    margin-bottom: 10px;
}
/* --- PAGE SPONSORS --- */
.sponsors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.sponsor-card { background: #202E53; border: 1px solid #2B3B6B; border-radius: 8px; padding: 25px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.sponsor-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(239, 177, 27, 0.2); border-color: #EFB11B; }
.sponsor-logo { height: 90px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }
.sponsor-logo img { max-height: 100%; max-width: 180px; }
.sponsor-card h4 { font-family: 'Whitedream', sans-serif; color: #F8C22C; font-size: 22px; margin: 0 0 10px; font-weight: normal; }
.sponsor-card p { font-size: 15px; line-height: 1.6; margin: 0; color: #FBF2B4; }

/* --- PAGE SALLES (Ambiances) --- */
.salles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.salle-card {
    background: #202E53; border-radius: 8px; overflow: hidden;
    border: 1px solid #2B3B6B; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.salle-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(239, 177, 27, 0.15); border-color: #EFB11B;}
.salle-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.salle-info { padding: 25px; }
.salle-info h3 { font-family: 'Whitedream', sans-serif; color: #F8C22C; font-size: 22px; margin: 0 0 10px 0; font-weight: normal; text-align:left; }
.salle-info p { font-size: 15px; line-height: 1.6; margin: 0; color: #FBF2B4; }


/* --- PAGE CONTACT --- */
.contact-container { display: grid; max-width: 1000px; margin: auto; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }
.contact-info h3 { font-family: 'Whitedream', sans-serif; color: #F8C22C; margin-bottom: 15px; font-weight: normal; }
.contact-info p { line-height: 1.8; font-size: 16px; color: #FBF2B4; }
.contact-info hr { border: none; height: 1px; background-color: rgba(239, 177, 27, 0.2); margin: 20px 0; }
.contact-form { background: #202E53; padding: 30px; border-radius: 8px; border: 1px solid #2B3B6B; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 14px; color: #FBE475;}
.form-group input, .form-group textarea {
    width: 100%; padding: 12px; background: #1D2547; border: 1px solid #2B3B6B;
    border-radius: 5px; color: #FBF2B4; font-family: 'Alice', serif;
    box-sizing: border-box; transition: border-color 0.3s ease; font-size: 16px;  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #E8A010; }
.contact-form .cta-button { width: 100%; padding: 15px; font-size: 16px; border: none; cursor: pointer; }

/* --- PAGE FAQ --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(232, 160, 16, 0.3);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-family: 'Whitedream', sans-serif;
    font-size: 20px;
    color: #F8C22C;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: normal;
}
.faq-question::after {
    content: '+';
    font-size: 28px;
    color: #E8A010;
    transition: transform 0.3s ease;
}
.faq-question.active::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.faq-answer p {
    padding: 0px 10px 20px 10px;
    line-height: 1.7;
    font-size: 16px;
    color: #FBF2B4;
    text-align: left;
    font-family: 'Alice', serif;
}


/* --- PAGE RESERVATIONS --- */
body#page-reservations { filter: grayscale(100%); -webkit-filter: grayscale(100%); }
.reservation-container { display: flex; width: 100%; position: relative; }
.reservation-choice {
    position: relative; width: 50%; height: 90vh; overflow: hidden;
    display: flex; justify-content: center; align-items: center;
    text-decoration: none; color: #fff; background-color: #202E53;
}
.reservation-bg {
    width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0;
    z-index: 1; opacity: 0.6; transition: opacity 0.4s ease, transform 0.4s ease;
}
.reservation-overlay {
    position: relative; z-index: 2; text-align: center; padding: 20px;
    background: rgba(0, 0, 0, 0.4); border-radius: 10px; transition: background 0.4s ease;
}
.reservation-overlay h3 {
    font-family: 'Whitedream', sans-serif;
    font-size: 3em; color: #F8C22C;
    margin: 0 0 10px 0; text-shadow: 0 2px 5px rgba(0,0,0,0.7); font-weight: normal;
}
.reservation-overlay p { font-family: 'Alice', serif; font-size: 1.2em; margin: 0; }
.reservation-choice:hover .reservation-bg { opacity: 0.9; transform: scale(1.05); }
.reservation-choice:hover .reservation-overlay { background: rgba(0, 0, 0, 0.6); }

/* --- MODIFICATION ICI --- */
/* Bannière superposée et dynamique */
.opening-overlay-banner {
    position: absolute; /* Positionné par rapport au .reservation-container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Prend 100% de la taille de .reservation-container */
    background: rgba(29, 37, 71, 0.85); /* Voile sombre bleu */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100; /* Doit être supérieur à celui de .reservation-bg (1) */
}

.banner-text {
    border: 3px solid #FBF2B4; padding: 30px 50px; text-align: center; color: #FBF2B4;
    font-family: 'Whitedream', sans-serif;
    font-size: 2.5em; font-weight: normal;
    background-color: rgba(0, 0, 0, 0.4);
}

/* --- STYLES SPÉCIFIQUES AUX PAGES --- */
#page-programme .page-hero {
    background-image: url('Image/Soiree2.jpg');
}
#page-sponsors .page-hero {
    background-image: url('Image/Soiree1.jpg');
}
#page-histoire .page-hero {
    background-image: url("Image/L'Ecs.jpg");
}
#page-salles .page-hero {
    background-image: url("Image/Soiree1.jpg");
}
#page-contact .page-hero {
    background-image: url("Image/Galerie/Sainte-Proms.png");
}
#page-faq .page-hero {
    background-image: url("Image/Galerie/Galerie7.webp");
}
#page-acceuil .page-hero {
    background-image: url("Image/Acceuil.png");
}
#page-plan .page-hero {
    background-image: url("Image/Groupe223.jpg");
}
/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #1D2547; }
::-webkit-scrollbar-thumb { background-color: #E8A010; border-radius: 20px; border: 3px solid #1D2547; }
::-webkit-scrollbar-thumb:hover { background-color: #F8C22C; }
/* --- FOOTER --- */
footer {
    background-color: #1D2547;
    padding: 40px 30px 20px 30px;
    border-top: 2px solid rgba(232, 160, 16, 0.3);
    color: #FBE475;
    text-align: left;
}
.footer-main { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 30px; }
.footer-col { flex: 1; min-width: 220px; }
.footer-logo { width: 50px; margin-bottom: 15px; opacity: 0.8; }
.footer-col h4 {
    font-family: 'Whitedream', sans-serif;
    color: #FBF2B4; font-size: 18px;
    margin-top: 0; margin-bottom: 15px; font-weight: normal;
}
.footer-col p {
    font-family: 'Alice', serif;
    font-size: 14px; line-height: 1.6; margin-bottom: 12px; color: #FBE475; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: #FBE475; text-decoration: none; font-size: 14px; transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-col ul a:hover { color: #F8C22C; padding-left: 5px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
    display: flex; justify-content: center; align-items: center;
    width: 35px; height: 35px; border: 1px solid #31456F; border-radius: 50%;
    color: #FBE475; text-decoration: none; font-family: 'Alice', serif; font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.footer-socials a:hover { background-color: #E8A010; border-color: #E8A010; color: #1D2547; }
.footer-bottom { border-top: 1px solid #2B3B6B; padding-top: 20px; text-align: center; font-size: 13px; }
.footer-bottom p {
    font-family: 'Alice', serif;
    margin: 0 0 10px 0; color: #31456F; }
.footer-bottom .footer-links { list-style: none; padding: 0; display: flex; justify-content: center; gap: 15px; margin: 0; }
.footer-bottom .footer-links a { color: #2B3B6B; text-decoration: none; font-size: 12px; transition: color 0.3s ease; }
.footer-bottom .footer-links a:hover { color: #E8A010; }


/* --- STYLE POUR LES CHIFFRES AVEC LA POLICE LOBSTER --- */
.lobster-number {
    font-family: 'Lobster', sans-serif;
}

/* --- Crédit ajouté au footer --- */
.credit-svrooms {
    font-size: 11px;
    color: #31456F;
    margin: 10px 0 0 0;
    font-family: 'Alice', serif;
}

/* --- STYLE AMÉLIORÉ POUR LES LIENS DANS LA FAQ --- */
.faq-answer p a {
    color: #F8C22C;                 /* Applique la couleur dorée principale de votre site */
    text-decoration: none;           /* Supprime le soulignement par défaut */
    font-weight: bold;               /* Met le texte en gras pour le faire ressortir */
    border-bottom: 1px dotted #EFB11B; /* Ajoute un soulignement pointillé discret */
    padding-bottom: 2px;             /* Espace légèrement le soulignement du texte */
    transition: all 0.3s ease;       /* Ajoute une transition douce pour le survol */
}

.faq-answer p a:hover {
    color: #FBF2B4;                  /* Change la couleur du texte au survol */
    border-bottom-color: #FBF2B4;    /* Change aussi la couleur du soulignement */
    text-shadow: 0 0 5px rgba(248, 194, 44, 0.5); /* Ajoute une lueur subtile */
}

.contact-info p a{
    color: #F8C22C;                 /* Applique la couleur dorée principale de votre site */
    text-decoration: none;           /* Supprime le soulignement par défaut */
    font-weight: bold;               /* Met le texte en gras pour le faire ressortir */
    border-bottom: 1px dotted #EFB11B; /* Ajoute un soulignement pointillé discret */
    padding-bottom: 2px;             /* Espace légèrement le soulignement du texte */
    transition: all 0.3s ease;       /* Ajoute une transition douce pour le survol */
}
.contact-info p a:hover {
    color: #FBF2B4;                  /* Change la couleur du texte au survol */
    border-bottom-color: #FBF2B4;    /* Change aussi la couleur du soulignement */
    text-shadow: 0 0 5px rgba(248, 194, 44, 0.5); /* Ajoute une lueur subtile */
}

/* Styles spécifiques pour la page équipe */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.team-card {
    background: #202E53;
    border: 1px solid #2B3B6B;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(239, 177, 27, 0.2);
    border-color: #EFB11B;
}
.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 4px solid #2B3B6B;
    transition: border-color 0.3s ease;
}
.team-card:hover .team-photo {
    border-color: #F8C22C;
}
.team-name {
    font-family: 'Whitedream', sans-serif;
    color: #F8C22C;
    font-size: 24px;
    margin: 0 0 5px 0;
    font-weight: normal;
}

/* --- CORRECTION APPLIQUÉE ICI --- */
/* En rendant le sélecteur plus spécifique, on s'assure que le texte est bien centré */
.team-card .team-role {
    font-family: 'Alice', serif;
    color: #FBF2B4;
    font-size: 16px;
    margin: 0 0 15px 0;
    font-style: italic;
    text-align: center; /* On force le centrage */
}

.team-email {
    font-family: 'Roboto', sans-serif;
    color: #EFB11B;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.team-email:hover {
    color: #FBF2B4;
}
/* --- PAGE FAQ --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-section-title {
    font-family: 'Whitedream', sans-serif;
    font-size: 32px;
    color: #FBF2B4;
    text-align: left;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: normal;
    border-bottom: 2px solid rgba(239, 177, 27, 0.3);
    padding-bottom: 10px;
}
.faq-container .faq-section-title:first-child {
    margin-top: 0;
}
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(232, 160, 16, 0.3);
}
/* --- RESPONSIVE --- */
@media screen and (max-width: 1200px) {
    .gallery-item:nth-child(n+9) { display: none; }
}

/* Uniquement la navbar passe en mode burger ici */
@media screen and (max-width: 1000px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(29, 37, 71, 0.98);
        padding: 15px 0;
        text-align: center;
        border-top: 1px solid rgba(239, 177, 27, 0.2);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-link {
        font-size: 18px;
        padding: 12px 0;
        display: block;
    }
    .burger {
        display: block;
        cursor: pointer;
        margin-left: auto;
        padding: 5px;
    }
    .burger div {
        width: 25px;
        height: 3px;
        background-color: #FBF2B4;
        margin: 5px 0;
        transition: all 0.3s ease;
    }
}

/* Le reste du site passe en mode mobile ici */
@media screen and (max-width: 768px) {
    .navbar { padding: 15px; }
    .logo { flex-shrink: 0; }

    /* Anciennes règles de 900px, déplacées ici */
    .gallery-item:nth-child(n+7) { display: none; }
    .gallery-item { width: 250px; height: 166px; }
    .rooms-section .carousel-slide {
        flex-basis: 50%; /* 2 slides visibles */
        max-width: 50%;
    }

    .hero-title-image {
        max-width: 450px;
    }
    .hero-content h2 { font-size: 40px; }
    .hero-content p { font-size: 16px; }

    .page-hero .hero-content h1 { font-size: 36px; }
    .page-hero .hero-content p { font-size: 16px; }
    .trailer-section h3, .gallery-section h3, .rooms-section h3, .access-card h3, .page-content-section h3 { font-size: 28px; }
    .gallery-item { width: 100%; max-width: 280px; height: auto; aspect-ratio: 3 / 2; }
    .gallery-item:nth-child(n+5) { display: none; }

    .salles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .rooms-section .carousel-slide {
        flex-basis: 100%; /* 1 slide visible */
        max-width: 100%;
    }
    .carousel-button.prev { left: 10px; }
    .carousel-button.next { right: 10px; }

    .main-content { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; }
    .info-panel { order: -1; }
    .contact-container { grid-template-columns: 1fr; }

    /* --- Styles mobile pour la timeline --- */
    .timeline-container { padding: 0 15px; }
    .timeline-container::after { display: none; }
    .timeline-dot { display: none; }
    .timeline-item {
        display: block; /* On revient à un affichage simple */
        padding: 0;
        margin-bottom: 30px;
    }
    /* On cache le côté qui contient l'image */
    .timeline-item:nth-child(odd) .timeline-side-right,
    .timeline-item:nth-child(even) .timeline-side-left {
        display: none;
    }
    .timeline-side {
        width: 100%;
        padding: 0 !important; /* On retire les paddings droite/gauche */
        align-items: flex-start !important; /* On force l'alignement à gauche */
    }
    .timeline-side .timeline-content {
        max-width: 100%;
        text-align: left !important;
    }

    .reservation-container { flex-direction: column; }
    .reservation-choice { width: 100%; height: 45vh; }
    .reservation-overlay h3 { font-size: 2.2em; }
    .reservation-overlay p { font-size: 1em; }
    .banner-text { font-size: 2em; padding: 30px; width: 90%; box-sizing: border-box; }
}

@media screen and (max-width: 480px) {
    .navbar { padding: 10px 15px; }
    .logo h1 { font-size: 20px; }

    .hero-title-image {
        max-width: 300px;
    }
    .hero-content h2 { font-size: 32px; margin-bottom: 15px; }
    .hero-content p { font-size: 14px; margin-bottom: 15px; }

    .page-hero .hero-content h1 { font-size: 28px; }
    .page-hero .hero-content p { font-size: 14px; }
    .cta-button { padding: 8px 20px; font-size: 12px; }
    .intro-section, .trailer-section, .gallery-section, .rooms-section { padding: 30px 0; }
    .intro-content p, .gallery-section p { font-size: 14px; }
    .main-content { padding: 30px 15px; }
    .info-panel, .access-card { padding: 20px; }
    .reservation-choice { height: 40vh; }
    .reservation-overlay h3 { font-size: 1.8em; }
    .reservation-overlay p { font-size: 0.9em; }
    .banner-text { font-size: 1.5em; padding: 20px; }
}