/*
Theme Name: Pandorium
Theme URI: https://pandorium.fr
Author: Pandorium
Description: Thème sur mesure pour Pandorium Escape Game - Morschwiller-le-Bas
Version: 1.0
Text Domain: pandorium
*/

/* ============================================
   VARIABLES & RESET
============================================ */
:root {
    /* Couleurs principales - palette brume cyan inspirée de l'image */
    --noir-profond: #041015;
    --noir-section: #07171d;
    --noir-carte: #0b2028;
    --bleu-petrole: #0e6f83;
    --bleu-petrole-fonce: #083f4d;
    --bleu-petrole-clair: #1fc6e8;
    --cuivre: #149ab3;
    --cuivre-clair: #49d8f3;
    --or: #3fd5ef;
    --or-clair: #9af2ff;
    --blanc: #eefcff;
    --blanc-pur: #ffffff;
    --gris-clair: #b8dbe2;
    --gris: #6f99a2;
    --orange-cta: #16b3cf;
    --orange-cta-hover: #49d8f3;
    --rouge-horreur: #0d5c69;
    --vert-succes: #2dc9b4;

    /* Typographie */
    --font-titre: 'Cinzel', serif;
    --font-corps: 'Raleway', sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Ombres */
    --ombre-carte: 0 12px 40px rgba(0, 0, 0, 0.45);
    --ombre-bouton: 0 8px 24px rgba(22, 179, 207, 0.28);
    --lueur-or: 0 0 28px rgba(63, 213, 239, 0.18);
    --lueur-bleu: 0 0 38px rgba(63, 213, 239, 0.16);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-lente: all 0.6s ease;
}

/* RESET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-corps);
    background-color: var(--noir-profond);
    color: var(--blanc);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   TYPOGRAPHIE
============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-titre);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-transform: uppercase;
    letter-spacing: 3px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    letter-spacing: 1px;
}

p {
    font-size: 1rem;
    color: var(--gris-clair);
    line-height: 1.8;
}

/* ============================================
   BOUTONS
============================================ */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-corps);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--or), var(--cuivre));
    color: var(--noir-profond);
    box-shadow: var(--ombre-bouton);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--or-clair), var(--cuivre-clair));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(22, 179, 207, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--blanc);
    border: 2px solid var(--or);
}

.btn-secondary:hover {
    background: var(--or);
    color: var(--noir-profond);
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--orange-cta);
    color: var(--blanc-pur);
    font-size: 1rem;
    padding: 16px 40px;
    border-radius: 4px;
}

.btn-cta:hover {
    background: var(--orange-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(22, 179, 207, 0.4);
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(4, 16, 21, 0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(63, 213, 239, 0.1);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(4, 16, 21, 0.94);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.site-logo img {
    height: 55px;
    width: auto;
    filter: brightness(1);
    transition: var(--transition);
}

.site-logo:hover img {
    filter: brightness(1.2);
}

.site-logo .logo-text {
    font-family: var(--font-titre);
    font-size: 1.6rem;
    color: var(--or);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Navigation */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a {
    display: block;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blanc);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--or);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after {
    width: 60%;
}

.main-nav a:hover {
    color: var(--or);
}

/* Sous-menus */
.main-nav .menu-item-has-children {
    position: relative;
}

.main-nav .menu-item-has-children > a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
}

.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(7, 23, 29, 0.96);
    border: 1px solid rgba(63, 213, 239, 0.15);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--ombre-carte);
    flex-direction: column;
}

.main-nav .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .sub-menu a {
    padding: 10px 20px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.main-nav .sub-menu a:hover {
    background: rgba(63, 213, 239, 0.1);
}

/* Bouton Réservation header */
.header-cta .btn-cta {
    padding: 10px 25px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

/* Hamburger mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--or);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(4, 16, 21, 0.56) 0%,
        rgba(8, 63, 77, 0.28) 40%,
        rgba(4, 16, 21, 0.58) 70%,
        rgba(4, 16, 21, 0.86) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 30px;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--or);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: var(--or);
}

.hero-location {
    font-size: 1.1rem;
    color: var(--gris-clair);
    margin-bottom: 35px;
    letter-spacing: 2px;
}

.hero-location i {
    color: var(--or);
    margin-right: 8px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Icônes rapides sous hero (comme Escape Hunt) */
.hero-quick-links {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 30px;
}

.hero-quick-link {
    text-align: center;
    transition: var(--transition);
}

.hero-quick-link:hover {
    transform: translateY(-5px);
}

.hero-quick-link .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--gris);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: var(--transition);
}

.hero-quick-link:hover .icon-circle {
    border-color: var(--or);
    box-shadow: 0 0 20px rgba(63, 213, 239, 0.3);
}

.hero-quick-link .icon-circle i {
    font-size: 1.5rem;
    color: var(--gris-clair);
    transition: var(--transition);
}

.hero-quick-link:hover .icon-circle i {
    color: var(--or);
}

.hero-quick-link span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gris-clair);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--or);
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   SECTIONS GÉNÉRALES
============================================ */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--noir-profond);
}

.section-darker {
    background: var(--noir-section);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--or);
}

.section-header .section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--cuivre), var(--or));
    margin: 15px auto;
    border-radius: 2px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================
   SECTION NOS SALLES
============================================ */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--noir-carte);
    border: 1px solid rgba(63, 213, 239, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.room-card:hover {
    transform: translateY(-5px);
    border-color: rgba(63, 213, 239, 0.3);
    box-shadow: var(--lueur-or);
}

.room-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-lente);
}

.room-card:hover .room-card-image img {
    transform: scale(1.05);
}

.room-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--rouge-horreur);
    color: var(--blanc-pur);
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.room-card-badge.aventure {
    background: var(--bleu-petrole);
}

.room-card-badge.nouveau {
    background: var(--vert-succes);
}

.room-card-badge.construction {
    background: var(--gris);
}

.room-card-content {
    padding: 25px;
}

.room-card-content h3 {
    font-family: var(--font-titre);
    color: var(--blanc);
    margin-bottom: 10px;
}

.room-card-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--gris-clair);
}

.room-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.room-card-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gris);
}

.room-card-meta .meta-item i {
    color: var(--or);
    font-size: 0.9rem;
}

/* Difficulté */
.difficulty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.difficulty-label {
    font-size: 0.8rem;
    color: var(--gris);
}

.difficulty-dots {
    display: flex;
    gap: 4px;
}

.difficulty-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(63, 213, 239, 0.2);
    border: 1px solid rgba(63, 213, 239, 0.3);
}

.difficulty-dots .dot.active {
    background: var(--or);
    border-color: var(--or);
}

.room-card .btn {
    width: 100%;
    text-align: center;
}

/* Salles en construction */
.room-card.coming-soon {
    opacity: 0.7;
}

.room-card.coming-soon .room-card-image::after {
    content: 'BIENTÔT DISPONIBLE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-titre);
    font-size: 1.2rem;
    color: var(--or);
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
    text-align: center;
    white-space: nowrap;
}

.room-card.coming-soon .room-card-image img {
    filter: blur(3px) brightness(0.4);
}

/* ============================================
   SECTION COMMENT ÇA MARCHE
============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.step-item {
    padding: 30px 20px;
}

.step-number {
    font-family: var(--font-titre);
    font-size: 3rem;
    color: var(--or);
    opacity: 0.3;
    margin-bottom: 15px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--or);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--or);
}

.step-item h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-item p {
    font-size: 0.9rem;
}

/* ============================================
   SECTION AVIS / TÉMOIGNAGES
============================================ */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item {
    padding: 40px;
}

.testimonial-stars {
    color: var(--or);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--blanc);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--or);
    font-weight: 600;
}

/* ============================================
   SECTION ÉVÉNEMENTS
============================================ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--noir-carte);
    border: 1px solid rgba(63, 213, 239, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    padding: 40px 30px;
}

.event-card:hover {
    border-color: rgba(63, 213, 239, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--lueur-or);
}

.event-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(63, 213, 239, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.event-card-icon i {
    font-size: 2rem;
    color: var(--or);
}

.event-card h3 {
    margin-bottom: 15px;
}

.event-card p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* ============================================
   SECTION TARIFS
============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--noir-carte);
    border: 1px solid rgba(63, 213, 239, 0.1);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.popular {
    border-color: var(--or);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: 'POPULAIRE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--or);
    color: var(--noir-profond);
    padding: 5px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 3px;
}

.pricing-card:hover {
    border-color: rgba(63, 213, 239, 0.3);
    box-shadow: var(--lueur-or);
}

.pricing-players {
    font-family: var(--font-titre);
    font-size: 1.1rem;
    color: var(--or);
    margin-bottom: 10px;
}

.pricing-price {
    font-family: var(--font-titre);
    font-size: 3rem;
    color: var(--blanc);
    margin-bottom: 5px;
}

.pricing-price small {
    font-size: 1rem;
    color: var(--gris);
}

.pricing-per-person {
    font-size: 0.85rem;
    color: var(--gris);
    margin-bottom: 25px;
}

.pricing-features {
    margin-bottom: 25px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gris-clair);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--or);
    font-size: 0.8rem;
}

/* ============================================
   SECTION FAQ
============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(63, 213, 239, 0.1);
    margin-bottom: 5px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--blanc);
    font-family: var(--font-corps);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--or);
}

.faq-question i {
    transition: var(--transition);
    color: var(--or);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 0 20px 0;
}

.faq-answer p {
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ============================================
   SECTION CONTACT / MAP
============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(63, 213, 239, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon i {
    color: var(--or);
    font-size: 1.1rem;
}

.contact-info-item h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--or);
}

.contact-info-item p {
    font-size: 0.9rem;
}

/* Formulaire */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--gris-clair);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(63, 213, 239, 0.15);
    border-radius: 4px;
    color: var(--blanc);
    font-family: var(--font-corps);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--or);
    box-shadow: 0 0 10px rgba(63, 213, 239, 0.1);
}

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

/* Map */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(63, 213, 239, 0.1);
    height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: var(--noir-section);
    border-top: 1px solid rgba(63, 213, 239, 0.1);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-titre);
    font-size: 0.9rem;
    color: var(--or);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.8;
}

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

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--gris-clair);
}

.footer-col ul li a:hover {
    color: var(--or);
    padding-left: 5px;
}

/* Réseaux sociaux */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(63, 213, 239, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gris-clair);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--or);
    border-color: var(--or);
    color: var(--noir-profond);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gris);
}

.footer-bottom a {
    color: var(--or);
}

/* ============================================
   ANIMATIONS
============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Particules de lumière */
.light-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--or);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 6s infinite;
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(0); }
    50% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-100px); }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Header mobile */
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(4, 16, 21, 0.94);
        padding: 30px;
        transform: translateX(-100%);
        transition: var(--transition);
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav a {
        padding: 15px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .main-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: none;
        border: none;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .header-cta {
        display: none;
    }
    
    /* Hero mobile */
    .hero {
        min-height: 600px;
    }
    
    .hero-quick-links {
        gap: 20px;
    }
    
    .hero-quick-link .icon-circle {
        width: 55px;
        height: 55px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        text-align: center;
        justify-content: center;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
}
/* ============================================
   CTA BAND (avant footer)
============================================ */
.cta-band {
    background: linear-gradient(135deg, var(--bleu-petrole-fonce), var(--bleu-petrole));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(63, 213, 239, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-band-text h3 {
    font-family: var(--font-titre);
    font-size: 1.8rem;
    color: var(--blanc-pur);
    margin-bottom: 5px;
}

.cta-band-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.cta-band .btn-cta i {
    margin-right: 8px;
}

/* ============================================
   STATS / CHIFFRES CLÉS
============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 15px;
}

.stat-number {
    font-family: var(--font-titre);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--or);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-titre);
    font-size: 1.2rem;
    color: var(--or);
    display: inline;
    margin-left: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gris-clair);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* ============================================
   TESTIMONIALS DOTS
============================================ */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(63, 213, 239, 0.2);
    border: 2px solid rgba(63, 213, 239, 0.3);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonial-dots .dot.active {
    background: var(--or);
    border-color: var(--or);
}

.testimonial-dots .dot:hover {
    border-color: var(--or);
}

/* ============================================
   RESPONSIVE STATS
============================================ */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-band-inner {
        text-align: center;
        justify-content: center;
    }
    
    .cta-band-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
/* ============================================
   PAGE HERO (INTERNE)
============================================ */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-small {
    height: 40vh;
    min-height: 320px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(4, 16, 21, 0.58) 0%,
        rgba(4, 16, 21, 0.80) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    padding-top: 80px;
}

.page-hero-subtitle {
    font-family: var(--font-titre);
    color: var(--or);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero-content h1 span {
    color: var(--or);
}

.page-hero-content > p {
    color: var(--gris-clair);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    margin-top: 25px;
    font-size: 0.85rem;
    color: var(--gris);
}

.breadcrumb a {
    color: var(--or);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--or-clair);
}

.breadcrumb i {
    font-size: 0.7rem;
    margin: 0 8px;
    color: var(--gris);
}

/* ============================================
   INTRO FEATURES (NOS JEUX)
============================================ */
.intro-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.intro-feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--noir-carte);
    border-radius: 15px;
    border: 1px solid rgba(63, 213, 239, 0.1);
    transition: var(--transition);
}

.intro-feature:hover {
    border-color: rgba(63, 213, 239, 0.3);
    transform: translateY(-5px);
}

.intro-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--or), var(--cuivre));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: var(--noir-profond);
}

.intro-feature h4 {
    color: var(--blanc);
    margin-bottom: 5px;
    font-size: 1rem;
}

.intro-feature p {
    color: var(--gris);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   ROOM DETAIL
============================================ */
.room-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.room-detail-grid.reverse {
    direction: rtl;
}

.room-detail-grid.reverse > * {
    direction: ltr;
}

/* Gallery */
.room-main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.room-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-main-image:hover img {
    transform: scale(1.03);
}

.room-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.room-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.6;
}

.room-thumb.active,
.room-thumb:hover {
    border-color: var(--or);
    opacity: 1;
}

/* Room Info */
.room-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.room-tag.horreur {
    background: rgba(139, 0, 0, 0.2);
    color: #ff4444;
    border: 1px solid rgba(139, 0, 0, 0.4);
}

.room-tag.aventure {
    background: rgba(63, 213, 239, 0.2);
    color: #5dade2;
    border: 1px solid rgba(63, 213, 239, 0.4);
}

.room-detail-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.room-story {
    margin-bottom: 30px;
}

.room-story h4 {
    color: var(--or);
    margin-bottom: 10px;
    font-size: 1rem;
}

.room-story h4 i {
    margin-right: 8px;
}

.room-story p {
    color: var(--gris-clair);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Specs */
.room-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.room-spec {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.room-spec > i {
    color: var(--or);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.room-spec strong {
    display: block;
    color: var(--blanc);
    font-size: 0.85rem;
}

.room-spec span {
    color: var(--gris);
    font-size: 0.85rem;
}

/* Difficulty dots inline */
.difficulty-inline {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dot-sm {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot-sm.active {
    background: var(--or);
    border-color: var(--or);
}

.dot-sm.active.red {
    background: #ff4444;
    border-color: #ff4444;
}

/* Warnings */
.room-warnings {
    padding: 15px 20px;
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 10px;
    margin-bottom: 25px;
}

.room-warnings p {
    color: var(--gris-clair);
    font-size: 0.85rem;
    margin: 0;
}

.room-detail-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   COMING SOON
============================================ */
.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.coming-soon-card {
    background: var(--noir-carte);
    border-radius: 15px;
    padding: 40px 30px;
    border: 1px solid rgba(63, 213, 239, 0.15);
    text-align: center;
    transition: var(--transition);
}

.coming-soon-card:hover {
    border-color: rgba(63, 213, 239, 0.4);
    transform: translateY(-5px);
}

.coming-soon-visual {
    margin-bottom: 25px;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(63, 213, 239, 0.2), rgba(63, 213, 239, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--or);
    border: 2px dashed rgba(63, 213, 239, 0.3);
}

.coming-soon-progress {
    max-width: 250px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--or), var(--cuivre));
    border-radius: 3px;
    transition: width 1s ease;
}

.coming-soon-progress span {
    font-size: 0.75rem;
    color: var(--or);
    font-style: italic;
}

.coming-soon-card h3 {
    color: var(--blanc);
    margin-bottom: 10px;
}

.coming-soon-card p {
    color: var(--gris);
    font-size: 0.9rem;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.coming-soon-features span {
    color: var(--gris);
    font-size: 0.8rem;
}

.coming-soon-features i {
    color: var(--or);
    margin-right: 5px;
}

/* Newsletter Box */
.newsletter-box {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(63, 213, 239, 0.1), rgba(63, 213, 239, 0.02));
    border: 1px solid rgba(63, 213, 239, 0.2);
    border-radius: 15px;
}

.newsletter-box h4 {
    color: var(--or);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.newsletter-box p {
    color: var(--gris-clair);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(63, 213, 239, 0.3);
    background: var(--noir-profond);
    color: var(--blanc);
    font-family: var(--font-corps);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--or);
}

.newsletter-form .btn {
    border-radius: 50px;
    white-space: nowrap;
}

/* ============================================
   EVENTS
============================================ */
.event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.event-image {
    border-radius: 15px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-image:hover img {
    transform: scale(1.05);
}

.event-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(63, 213, 239, 0.15);
    color: var(--or);
    border: 1px solid rgba(63, 213, 239, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.event-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.event-content p {
    color: var(--gris-clair);
    line-height: 1.8;
    margin-bottom: 10px;
}

.event-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.event-features li {
    color: var(--gris-clair);
    padding: 8px 0;
    font-size: 0.95rem;
}

.event-features li i {
    color: var(--or);
    margin-right: 10px;
    width: 20px;
}

/* ============================================
   PRICING
============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pricing-card {
    background: var(--noir-carte);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(63, 213, 239, 0.3);
}

.pricing-card.popular {
    border: 2px solid var(--or);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--or), var(--cuivre));
    color: var(--noir-profond);
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-badge.green {
    background: linear-gradient(135deg, var(--vert-succes), #2ecc71);
}

.pricing-players {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--or);
    font-size: 1.1rem;
}

.pricing-header h3 {
    color: var(--blanc);
    font-family: var(--font-corps);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 10px;
}

.price-amount {
    font-family: var(--font-titre);
    font-size: 3rem;
    color: var(--or);
    font-weight: 700;
    line-height: 1;
}

.price-amount sup {
    font-size: 1.2rem;
    vertical-align: super;
}

.price-per {
    display: block;
    color: var(--gris);
    font-size: 0.85rem;
    margin-top: 5px;
}

.pricing-total {
    padding: 10px;
    background: rgba(63, 213, 239, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gris-clair);
}

.pricing-total strong {
    color: var(--or);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--gris-clair);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-features li i {
    color: var(--vert-succes);
    margin-right: 10px;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px 30px;
    background: rgba(63, 213, 239, 0.05);
    border: 1px solid rgba(63, 213, 239, 0.15);
    border-radius: 10px;
}

.pricing-note p {
    color: var(--gris);
    font-size: 0.9rem;
    margin: 0;
}

.pricing-note i {
    color: var(--or);
    margin-right: 8px;
}

/* ============================================
   SPECIAL OFFERS
============================================ */
.special-offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.special-offer-card {
    background: var(--noir-carte);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.special-offer-card:hover {
    border-color: rgba(63, 213, 239, 0.3);
    transform: translateY(-5px);
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(63, 213, 239, 0.2), rgba(63, 213, 239, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: var(--or);
}

.special-offer-card h3 {
    color: var(--blanc);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.special-offer-card p {
    color: var(--gris);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.offer-prices {
    margin-bottom: 20px;
    color: var(--gris-clair);
}

.offer-prices strong {
    color: var(--or);
    font-size: 1.2rem;
}

/* ============================================
   PAYMENT METHODS
============================================ */
.payment-methods {
    text-align: center;
    padding: 40px;
    background: var(--noir-carte);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-methods h3 {
    color: var(--blanc);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.payment-icon {
    text-align: center;
    color: var(--gris);
}

.payment-icon i {
    font-size: 2rem;
    color: var(--or);
    display: block;
    margin-bottom: 10px;
}

.payment-icon span {
    font-size: 0.85rem;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper h2 {
    margin-bottom: 10px;
}

.contact-form-wrapper h2 span {
    color: var(--or);
}

.contact-form-wrapper > p {
    color: var(--gris);
    margin-bottom: 30px;
}

/* Forms */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--blanc);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--noir-carte);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--blanc);
    font-family: var(--font-corps);
    font-size: 0.95rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--or);
    box-shadow: 0 0 0 3px rgba(63, 213, 239, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gris);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a84c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gris);
    font-size: 0.85rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--or);
}

.checkbox-label a {
    color: var(--or);
}

.btn-full {
    width: 100%;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: var(--noir-carte);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-card h3 {
    color: var(--or);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-titre);
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .icon {
    width: 40px;
    height: 40px;
    background: rgba(63, 213, 239, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--or);
    flex-shrink: 0;
}

.contact-info-item h4 {
    color: var(--blanc);
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.contact-info-item p {
    color: var(--gris);
    font-size: 0.85rem;
    margin: 0;
}

.contact-info-item a {
    color: var(--gris);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--or);
}

/* Map */
.map-container-large {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================
   FAQ
============================================ */
.container-narrow {
    max-width: 800px;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(63, 213, 239, 0.2);
}

.faq-category h2 i {
    color: var(--or);
    margin-right: 10px;
}

.faq-item {
    margin-bottom: 5px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--noir-carte);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(63, 213, 239, 0.3);
}

.faq-question {
    width: 100%;
    padding: 18px 25px;
    background: none;
    border: none;
    color: var(--blanc);
    font-family: var(--font-corps);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--or);
}

.faq-question i {
    color: var(--or);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 25px 20px;
}

.faq-answer-inner p {
    color: var(--gris-clair);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* FAQ Contact Box */
.faq-contact-box {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(63, 213, 239, 0.1), rgba(63, 213, 239, 0.02));
    border: 1px solid rgba(63, 213, 239, 0.2);
    border-radius: 15px;
    margin-top: 50px;
}

.faq-contact-box h3 {
    color: var(--or);
    margin-bottom: 10px;
}

.faq-contact-box p {
    color: var(--gris-clair);
    margin-bottom: 20px;
}

.faq-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   BOOKING PAGE
============================================ */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.booking-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--or), var(--cuivre));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titre);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--noir-profond);
    margin: 0 auto 10px;
}

.booking-step h4 {
    color: var(--blanc);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.booking-step p {
    color: var(--gris);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   GLOBAL FADE-IN SAFETY
============================================ */
.fade-in {
    opacity: 1;
    transform: none;
}

/* ============================================
   NOS SALLES - CORRECTIONS TEMPLATE
============================================ */
.room-detail-header {
    margin-bottom: 40px;
}

.room-detail-header h2 {
    margin-bottom: 15px;
}

.room-detail-header h2 span {
    color: var(--or);
}

.room-detail-grid.room-detail-grid-reverse,
.room-detail-grid.reverse {
    direction: rtl;
}

.room-detail-grid.room-detail-grid-reverse > *,
.room-detail-grid.reverse > * {
    direction: ltr;
}

.room-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.room-badge-horror {
    background: rgba(139, 0, 0, 0.18);
    color: #ff6b6b;
    border: 1px solid rgba(139, 0, 0, 0.35);
}

.room-badge-aventure {
    background: rgba(63, 213, 239, 0.18);
    color: #74b9ff;
    border: 1px solid rgba(63, 213, 239, 0.35);
}

.room-info h3 {
    color: var(--or);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.room-story-text {
    color: var(--gris-clair);
    line-height: 1.8;
    margin-bottom: 14px;
}

.room-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.room-meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 16px;
    background: rgba(26, 26, 26, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.room-meta-item > i {
    width: 22px;
    text-align: center;
    color: var(--or);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.room-meta-item strong {
    display: block;
    color: var(--blanc);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.room-meta-item span {
    color: var(--gris);
    font-size: 0.85rem;
}

.room-meta-item .difficulty-dots {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--or);
}

.room-image-placeholder {
    min-height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(63, 213, 239, 0.18);
    background:
        radial-gradient(circle at top, rgba(63, 213, 239, 0.14), transparent 55%),
        linear-gradient(135deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 1));
}

.room-image-placeholder i {
    font-size: 3rem;
    color: var(--or);
}

.room-image-placeholder span {
    color: var(--blanc);
    font-family: var(--font-titre);
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.horror-placeholder {
    background:
        radial-gradient(circle at top, rgba(139, 0, 0, 0.22), transparent 55%),
        linear-gradient(135deg, rgba(25, 10, 10, 0.98), rgba(8, 8, 8, 1));
}

.musee-placeholder {
    background:
        radial-gradient(circle at top, rgba(63, 213, 239, 0.2), transparent 55%),
        linear-gradient(135deg, rgba(10, 18, 30, 0.98), rgba(8, 8, 8, 1));
}

.coming-soon-card h4 {
    color: var(--blanc);
    margin-bottom: 8px;
}

.coming-soon-tag {
    display: inline-block;
    margin-top: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(63, 213, 239, 0.12);
    border: 1px solid rgba(63, 213, 239, 0.25);
    color: var(--or);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-cta {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
}

.section-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(63, 213, 239, 0.14), transparent 55%);
}

.section-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 63, 77, 0.28), rgba(10, 10, 10, 0.82));
}

.section-cta .container {
    position: relative;
    z-index: 2;
}

.section-cta-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.section-cta-content h2 {
    margin-bottom: 16px;
}

.section-cta-content h2 span {
    color: var(--or);
}

.section-cta-content p {
    color: var(--gris-clair);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .room-meta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .room-detail-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .room-detail-grid.room-detail-grid-reverse,
    .room-detail-grid.reverse {
        direction: ltr;
    }

    .coming-soon-grid {
        grid-template-columns: 1fr;
    }

    .section-cta {
        padding: 70px 0;
    }
}


/* ============================================
   THEME OVERRIDES - BRUME CYAN
============================================ */
body {
    background:
        radial-gradient(circle at 50% 12%, rgba(63, 213, 239, 0.20), transparent 28%),
        radial-gradient(circle at 50% 32%, rgba(15, 132, 152, 0.22), transparent 36%),
        linear-gradient(180deg, #031015 0%, #06181f 42%, #041015 100%);
    color: var(--blanc);
}

.site-header {
    background: rgba(4, 16, 21, 0.72);
    border-bottom: 1px solid rgba(63, 213, 239, 0.16);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.site-header.scrolled {
    background: rgba(4, 16, 21, 0.90);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

.main-nav a,
.site-logo .logo-text,
.footer-col a,
.footer-col p,
.footer-bottom,
.breadcrumb span {
    color: var(--blanc);
}

.main-nav a:hover,
.main-nav .current-menu-item a,
.footer-col a:hover,
.breadcrumb a,
.hero-subtitle,
.page-hero-subtitle {
    color: var(--or);
}

.hero-overlay {
    background:
        linear-gradient(to bottom, rgba(4,16,21,0.40) 0%, rgba(8,63,77,0.22) 36%, rgba(4,16,21,0.72) 72%, rgba(4,16,21,0.95) 100%),
        radial-gradient(circle at center, rgba(63,213,239,0.12) 0%, transparent 55%);
}

.page-hero-overlay {
    background:
        linear-gradient(to bottom, rgba(4,16,21,0.34) 0%, rgba(8,63,77,0.18) 35%, rgba(4,16,21,0.82) 100%),
        radial-gradient(circle at center, rgba(63,213,239,0.10) 0%, transparent 60%);
}

.section-dark {
    background:
        linear-gradient(180deg, rgba(4,16,21,0.98) 0%, rgba(7,23,29,0.98) 100%);
}

.section-darker,
.site-footer {
    background:
        linear-gradient(180deg, rgba(7,23,29,0.98) 0%, rgba(4,16,21,1) 100%);
}

.room-card,
.event-content,
.contact-form-wrapper,
.contact-info-card,
.pricing-table,
.booking-widget-container,
.faq-item,
.room-info,
.room-main-image,
.coming-soon-card,
.footer-col,
.stat-item {
    background: linear-gradient(180deg, rgba(11,32,40,0.92) 0%, rgba(7,23,29,0.95) 100%);
    border-color: rgba(63, 213, 239, 0.18);
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
    backdrop-filter: blur(8px);
}

.room-card:hover,
.event-content:hover,
.contact-info-card:hover,
.coming-soon-card:hover,
.faq-item.active {
    border-color: rgba(154, 242, 255, 0.45);
    box-shadow: 0 18px 44px rgba(0,0,0,0.34), 0 0 28px rgba(63,213,239,0.14);
}

.btn-primary,
.btn-cta,
.booking-submit,
.contact-form button[type="submit"] {
    background: linear-gradient(135deg, #0f95ad 0%, #3fd5ef 100%);
    color: #021015;
    box-shadow: 0 10px 30px rgba(22,179,207,0.24);
}

.btn-primary:hover,
.btn-cta:hover,
.booking-submit:hover,
.contact-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #3fd5ef 0%, #9af2ff 100%);
    color: #021015;
    box-shadow: 0 12px 34px rgba(63,213,239,0.32);
}

.btn-secondary {
    border-color: rgba(63, 213, 239, 0.55);
    color: var(--blanc);
    background: rgba(63, 213, 239, 0.06);
}

.btn-secondary:hover {
    background: rgba(63, 213, 239, 0.15);
    color: var(--blanc-pur);
}

.section-header .section-line,
.progress-fill,
.timeline-progress,
.booking-progress-fill {
    background: linear-gradient(90deg, #0f95ad 0%, #3fd5ef 55%, #9af2ff 100%);
}

input,
select,
textarea,
.booking-room-card,
.booking-summary,
.pricing-note,
.contact-card,
.include-item,
.room-meta-item {
    background: rgba(8, 30, 37, 0.65);
    border-color: rgba(63, 213, 239, 0.18);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(154, 242, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(63, 213, 239, 0.12);
}

.room-card-image::before,
.room-main-image::before,
.event-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(4,16,21,0.38) 100%);
    pointer-events: none;
    z-index: 1;
}

.room-card-badge,
.room-badge,
.event-tag,
.popular-badge,
.coming-soon-tag {
    background: rgba(63, 213, 239, 0.14);
    color: var(--or-clair);
    border: 1px solid rgba(63, 213, 239, 0.32);
    box-shadow: 0 0 18px rgba(63,213,239,0.08);
}

.room-card-badge.aventure,
.room-badge-aventure {
    background: rgba(31, 198, 232, 0.16);
}

.room-card-badge.construction,
.room-card-badge.nouveau,
.room-badge-horror {
    background: rgba(13, 92, 105, 0.35);
}

.hero-quick-link .icon-circle,
.step-icon,
.stat-item,
.social-link,
.footer-social a {
    border-color: rgba(63, 213, 239, 0.30);
}

.hero-quick-link:hover .icon-circle,
.step-icon:hover,
.social-link:hover,
.footer-social a:hover {
    box-shadow: 0 0 24px rgba(63, 213, 239, 0.18);
}

.cta-band {
    background:
        linear-gradient(135deg, rgba(8,63,77,0.96) 0%, rgba(4,16,21,0.98) 100%);
    border-top: 1px solid rgba(63, 213, 239, 0.18);
    border-bottom: 1px solid rgba(63, 213, 239, 0.10);
}

.page-404,
.hero,
.page-hero {
    position: relative;
}

.page-404::before,
.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(63,213,239,0.14), transparent 28%),
        radial-gradient(circle at 50% 65%, rgba(15,132,152,0.10), transparent 35%);
    pointer-events: none;
    z-index: 1;
}

.hero-content,
.page-hero-content,
.page-404-content {
    position: relative;
    z-index: 3;
}

::selection {
    background: rgba(63, 213, 239, 0.25);
    color: var(--blanc-pur);
}
