/* Force white placeholders for reservation form */
.quick-reservation-form input::placeholder,
.quick-reservation-form textarea::placeholder {
    color: var(--white) !important;
    opacity: 1 !important;
}
/* =====================================
   STYLES.CSS - LES ENFANTS TERRIBLES
   ===================================== */

/* Import des polices */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Anton&display=swap');

/* =====================================
   RESET & VARIABLES
   ===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs officielles */
    --white: #fff;
    --black: #1c1c1c;
    --gold: #bf9850;
    --dark-gold: #a67d3a;
    --cream: #f5f5f5;
    --gold-light: #d4a574;
    --text-dark: #333;
}

/* =====================================
   BASE STYLES
   ===================================== */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .title-font {
    font-family: 'Anton', 'Oswald', 'Impact', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.body-font {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* Curseur personnalisé */
* {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="%23D4A574" opacity="0.8"/><circle cx="10" cy="10" r="3" fill="%23ffffff"/></svg>') 10 10, auto;
}

a, button {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%23D4A574"/><circle cx="12" cy="12" r="4" fill="%23ffffff"/></svg>') 12 12, pointer;
}

/* =====================================
   HEADER & NAVIGATION
   ===================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid transparent;
    background-image: 
        linear-gradient(rgba(26, 26, 26, 0.98), rgba(26, 26, 26, 0.98)),
        linear-gradient(90deg, var(--gold), var(--white), var(--gold), var(--white), var(--gold));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(191, 152, 80, 0.1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 3s ease-in-out;
}

.header.scrolled::before {
    left: 100%;
}

.header.scrolled {
    background: rgba(28, 28, 28, 0.95);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 6px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(191, 152, 80, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    height: 90px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

/* Logo avec animations */
.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /*background: linear-gradient(45deg, var(--gold), var(--dark-gold));*/
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    /*box-shadow: 0 0 30px rgba(212, 165, 116, 0.3);*/
}

.logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, var(--white) 90deg, transparent 180deg);
    opacity: 0;
    transition: all 0.6s ease;
}

.logo:hover {
    transform: rotate(360deg) scale(1.2);
    box-shadow: 0 0 50px rgba(212, 165, 116, 0.6);
}

.logo:hover::before {
    opacity: 0.3;
    animation: spin 2s linear infinite;
}

/* Logo morphing animation */
.logo-morphing {
    width: 100px;
    height: 100px;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(191, 152, 80, 0.4));
    transition: all 0.3s ease;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    animation: logo-morph 6s infinite ease-in-out;
    opacity: 1;
}

/* Navigation links */
.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform: translateX(-50%);
}

.nav-links a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    opacity: 1;
}

/* Active navigation state */
.nav-links a.active {
    color: var(--gold) !important;
}

.nav-links a.active::before {
    width: 100% !important;
    background: var(--gold);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile brand name */
.mobile-brand-name {
    display: none;
    font-family: 'Anton', 'Oswald', 'Impact', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 1rem;
    color: var(--gold);
}

@media (max-width: 768px) {
    .mobile-brand-name {
        display: inline-block;
    }
    
    .hero {
        padding-top: 110px; /* Plus d'espace sur mobile */
        height: calc(100vh - 20px); /* Ajustement pour éviter le débordement */
    }
    
    .hero-content {
        padding: 1rem;
    }
}

/* Dropdown Navigation Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    border-radius: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--white) !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(191, 152, 80, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::before,
.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white) !important;
    transform: none !important;
    text-shadow: none !important;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.dropdown-menu li:first-child a {
    border-radius: 8px 8px 0 0;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    transition: max-height 0.3s ease;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
}

.mobile-dropdown-menu a {
    padding-left: 2rem !important;
    font-size: 0.9rem !important;
    opacity: 0.8;
}

.mobile-dropdown .dropdown-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Header CTA buttons */
.header-menu-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.header-menu-cta:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(191, 152, 80, 0.7) !important;
    animation-play-state: paused !important;
}

.header-menu-cta:hover::before {
    left: 100%;
}

.header-reserve-cta::before {
    /* No highlight/line for reservation button */
    content: none;
}

.header-reserve-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(191, 152, 80, 0.5);
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--white) !important;
    border-color: var(--white) !important;
}

.header-reserve-cta:hover i {
    color: var(--white) !important;
}

.header-reserve-cta:hover::before {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, rgba(28, 28, 28, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 100px 30px 30px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateX(-50px);
    animation: none;
}

.mobile-menu.active .mobile-nav-links li {
    animation: slideInMobile 0.6s ease forwards;
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu.active .mobile-nav-links li:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInMobile {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-link {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-align: center;
    padding: 1.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--gold);
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(191, 152, 80, 0.5);
}

.mobile-nav-link:hover::after {
    width: 80%;
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    margin: 1rem 0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 250px;
    font-family: 'Cinzel', serif;
}

.mobile-menu-cta.primary {
    background: linear-gradient(135deg, var(--gold), #d4af5f);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(191, 152, 80, 0.4);
}

.mobile-menu-cta.secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.mobile-menu-cta:hover {
    transform: scale(1.05);
}

.mobile-menu-cta:hover::before {
    left: 100%;
}

.mobile-menu-cta.primary:hover {
    box-shadow: 0 15px 40px rgba(191, 152, 80, 0.6);
}

.mobile-menu-cta.secondary:hover {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 15px 40px rgba(191, 152, 80, 0.4);
}

/* =====================================
   HERO SECTION
   ===================================== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 50%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px; /* Espace pour le header fixe */
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    width: 140%;
    height: 140%;
    background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/trame/Trame-Enfants-Terribles copie-4.png');
    background-size: 800px 800px;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.2;
    transform-origin: center center;
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
}

.main-logo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoEntrance 2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 60px rgba(212, 165, 116, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 80px rgba(212, 165, 116, 0.5),
        inset 0 0 60px rgba(255, 255, 255, 0.2);
}

.main-logo:active {
    transform: scale(0.98);
}

.main-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,0.3) 90deg, transparent 180deg);
    animation: rotate 8s linear infinite;
}

.main-logo img {
    width: 320px;
    height: 320px;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
    object-fit: contain;
    transition: filter 0.3s ease;
    pointer-events: none;
}

.main-logo.logo-clicked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border: 3px solid rgba(212, 165, 116, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple-effect 1s ease-out;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    animation: textEntrance 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
    position: relative;
}

.terribles-shake {
    position: relative;
    display: inline-block;
    color: var(--gold);
}

.hero .subtitle {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-style: italic;
    animation: fadeInUp 1s ease 1s both;
}

.hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 2s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Nouveau conteneur pour le texte en rotation */
.rotating-tagline-container {
    margin: 2rem 0 4rem 0;
    min-height: 60px;
    display: block !important;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

.rotating-tagline {
    font-family: 'Anton', 'Oswald', 'Impact', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 1.2rem;
    min-height: 2.5em;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: opacity 0.5s;
}

.rotating-text {
    display: none;
    color: var(--gold);
    font-weight: 700;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Anton', 'Oswald', 'Impact', sans-serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    z-index: 20;
    transition: opacity 0.5s ease;
}

.rotating-text.active {
    display: inline !important;
    opacity: 1 !important;
}

.rotating-text:first-child {
    display: inline !important;
    opacity: 1 !important;
}

@keyframes text-glow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
        color: var(--gold);
    }
    50% { 
        text-shadow: 0 0 20px rgba(255, 193, 7, 0.8), 0 0 30px rgba(255, 193, 7, 0.3);
        color: #ffcc33;
    }
}

.tagline-item {
    display: inline-block;
    opacity: 0;
    transform: translateX(-100px) rotate(-5deg);
    animation: tagline-terrible-appear 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 0 rgba(212, 165, 116, 0));
}

.emoji-bounce {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: emoji-terrible-bounce 2.5s ease-in-out infinite;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    vertical-align: middle;
}

/* Monogrammes */
.monogramme-seul-1 {
    background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png');
}

.monogramme-seul-2 {
    background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Blanc.png');
}

.monogramme-seul-3 {
    background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-3-Blanc-12.png');
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 2s both;
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.5);
    text-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: 0 15px 35px rgba(191, 152, 80, 0.2);
}

.cta-button.secondary::after {
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    opacity: 0.1;
}

.cta-button.secondary:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* =====================================
   SECTIONS
   ===================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Anton', 'Oswald', 'Impact', sans-serif;
    font-size: 4rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Team Section */
.team {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, #2a2a2a 0%, var(--black) 70%);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Trame supprimée */
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin: 4rem 0;
}

.team-member {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.3), rgba(212, 165, 116, 0.15));
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 165, 116, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg, transparent, var(--gold), transparent, var(--gold), transparent);
    opacity: 0;
    transition: all 0.8s ease;
    animation: spin 10s linear infinite;
}

.team-member:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(212, 165, 116, 0.3);
    border-color: var(--gold);
}

.team-member:hover::before {
    opacity: 0.1;
}

.team-member-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.4);
    transition: transform 0.3s ease;
}

.team-member-avatar:hover {
    transform: scale(1.1);
}

.team-member-avatar img {
    width: 130px;
    height: 130px;
    transition: transform 0.3s ease;
}

.team-member-avatar:hover img {
    transform: scale(1.2);
}

.team-member h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.team-member .role {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
}

.team-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    font-style: italic;
}

.team-quote {
    max-width: 800px;
    margin: 4rem auto 0;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--gold);
    text-align: center;
    border-left: 4px solid var(--gold);
    padding-left: 2rem;
    background: rgba(212, 165, 116, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

/* Carrousel des citations */
.team-quotes-carousel {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.quote-container {
    position: relative;
    height: 120px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(212, 165, 116, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.quote-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.quote-slide.exit {
    opacity: 0;
    transform: translateX(-100%);
}

.quote-slide blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--gold);
    margin-bottom: 1rem;
}

.quote-slide cite {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.quote-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.5);
}

/* Concept Section */
.concept {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.concept::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png'),
        url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Blanc.png');
    background-size: 120px 120px, 180px 180px;
    background-position: 0 0, 60px 60px;
    background-repeat: repeat;
    opacity: 0.03;
    animation: concept-pattern 80s ease-in-out infinite;
    z-index: 0;
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.concept-text h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-family: 'Impact', 'Anton', 'Oswald', sans-serif;
}

.concept-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.concept-image {
    position: relative;
    text-align: center;
}

.concept-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--black);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.concept-visual {
    background: rgba(212, 165, 116, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.concept-visual img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 165, 116, 0.3));
}

.duality-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin: 5rem 0;
    position: relative;
    z-index: 1;
}

.duality-card {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(212, 165, 116, 0.05));
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.duality-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, var(--gold) 20deg, transparent 40deg, var(--gold) 60deg, transparent 80deg);
    opacity: 0;
    transition: all 0.8s ease;
    animation: slowSpin 15s linear infinite;
}

.duality-card:hover {
    transform: translateY(-20px) rotateY(5deg);
    box-shadow: 0 40px 80px rgba(212, 165, 116, 0.3);
    border-color: var(--gold);
}

.duality-card:hover::before {
    opacity: 0.1;
}

.duality-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.4);
}

.duality-card h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.duality-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
}

/* Menu Preview Section */
.menu-preview {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.menu-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 10%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
    animation: menuGlow 12s ease-in-out infinite;
}

.menu-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/Les-Enfants-Terribles-2025-MONSTRES_Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png'),
        url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/Les-Enfants-Terribles-2025-MONSTRES_Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Blanc.png');
    background-size: 60px 60px, 80px 80px;
    background-position: 10% 20%, 90% 80%;
    background-repeat: no-repeat;
    opacity: 0.04;
    animation: menuDecoration 20s ease-in-out infinite;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 4rem;
    margin: 5rem 0;
}

.menu-category {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(212, 165, 116, 0.08));
    padding: 3rem 2.5rem;
    border-radius: 25px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(212, 165, 116, 0.2);
}

.menu-category::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.menu-category:hover::before {
    opacity: 1;
}

.menu-category::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    transition: all 0.4s ease;
    animation: pastille-float 4s ease-in-out infinite;
}

.menu-category:hover {
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.25);
    transform: translateY(-10px) scale(1.02);
}

.menu-category:hover::after {
    opacity: 0.3;
    transform: rotate(360deg) scale(1.2);
    animation: menu-logo-pulse 2s ease-in-out infinite;
}

.menu-category h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-category h3 i {
    font-size: 1.8rem;
    padding: 0.5rem;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.4);
}

.menu-item {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px dotted rgba(212, 165, 116, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.menu-item:hover {
    transform: translateX(10px);
    background: rgba(212, 165, 116, 0.05);
    border-radius: 10px;
    padding-left: 1rem;
    border-bottom-color: var(--gold);
}

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

.menu-item h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.menu-item:hover h4 {
    color: var(--gold);
}

.menu-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.menu-cta-button:hover {
    transform: translateY(-5px) scale(1.08) !important;
    box-shadow: 0 20px 50px rgba(191, 152, 80, 0.8) !important;
    animation-play-state: paused;
}

/* Menu Formula Section */
.menu-formula-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--cream) 0%, #f9f7f3 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.formula-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.formula-content {
    text-align: left;
}

.formula-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--black), #2a2a2a);
    color: var(--gold);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-family: 'Impact', 'Anton', 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 25px rgba(191, 152, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.formula-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191, 152, 80, 0.2), transparent);
    transition: left 0.6s ease;
}

.formula-badge:hover::before {
    left: 100%;
}

.formula-content h2 {
    font-family: 'Impact', 'Anton', 'Oswald', sans-serif;
    font-size: 3.5rem;
    background: linear-gradient(45deg, var(--black), var(--gold), var(--black));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: shimmer 3s ease-in-out infinite;
}

.formula-price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(191, 152, 80, 0.3);
}

.formula-description {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.formula-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(191, 152, 80, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

.highlight-text {
    color: var(--black) !important;
    font-weight: 600;
}

.highlight-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.formula-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.reserve-formula-btn, .view-menu-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reserve-formula-btn {
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(191, 152, 80, 0.3);
}

.reserve-formula-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(191, 152, 80, 0.4);
}

.view-menu-btn {
    background: #f5f5f5;
    color: #1c1c1c;
    border: 2px solid var(--gold);
    font-weight: 600;
}

.view-menu-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(191, 152, 80, 0.4);
}

.formula-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.formula-image-container {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(191, 152, 80, 0.3);
    animation: formula-float 6s ease-in-out infinite;
}

.formula-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
}

/* Business Section */
.business-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.business-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Noir.png') 10% 20% / 100px no-repeat,
        url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Noir.png') 90% 80% / 120px no-repeat,
        url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-3-Noir-06.png') 50% 10% / 80px no-repeat;
    opacity: 0.1;
    pointer-events: none;
}

.business-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 4rem;
    opacity: 0.9;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.business-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    color: var(--black);
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(191, 152, 80, 0.2);
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.business-card.full-width {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 3rem;
    padding: 3.5rem 4rem;
}

.business-card.full-width .business-icon {
    margin: 0;
}

.business-card.full-width .business-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.business-card.full-width .business-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 0;
}

.business-card.full-width .business-cta-dedicated {
    display: flex;
    align-items: flex-end;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 25px;
}

.business-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(191, 152, 80, 0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.business-card:hover::before {
    opacity: 0.95;
}

.business-card:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.business-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 10px 20px rgba(191, 152, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: var(--gold);
}

.business-card:hover * {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.business-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    box-shadow: 
        0 10px 25px rgba(191, 152, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.business-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, var(--gold), var(--white), var(--gold));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.business-card:hover .business-icon {
    background: linear-gradient(135deg, var(--white), #f0f0f0);
    color: var(--gold);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(191, 152, 80, 0.3);
}

.business-card:hover .business-icon::before {
    opacity: 1;
}

.business-card h3 {
    font-family: 'Impact', 'Anton', 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, var(--black), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.business-card p {
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.business-features {
    list-style: none;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(191, 152, 80, 0.2);
}

.business-features li {
    padding: 1rem 0;
    position: relative;
    padding-left: 3rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(191, 152, 80, 0.1);
}

.business-features li:last-child {
    border-bottom: none;
}

.business-features li::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-features li::after {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--white);
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.business-card:hover .business-features {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.business-card:hover .business-features li::before {
    background: linear-gradient(45deg, var(--white), #f0f0f0);
}

.business-card:hover .business-features li::after {
    color: var(--gold);
}

.business-cta {
    text-align: center;
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.business-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 4rem;
    background: linear-gradient(135deg, var(--black), #2a2a2a);
    color: var(--white);
    text-decoration: none;
    font-family: 'Impact', 'Anton', 'Oswald', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: 3px solid var(--gold);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(191, 152, 80, 0.4);
}

.business-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.business-cta-btn::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.business-cta-btn:hover::before {
    left: 100%;
}

.business-cta-btn:hover::after {
    opacity: 1;
}

.business-cta-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 10px 25px rgba(191, 152, 80, 0.6);
    border-color: var(--white);
}

.business-cta-btn:hover * {
    position: relative;
    z-index: 2;
    color: var(--black);
}

.business-cta-btn i {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.5rem;
}

.business-cta-btn:hover i {
    transform: translateX(10px) rotate(45deg);
}

.dedicated-reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    text-decoration: none;
    font-family: 'Impact', 'Anton', 'Oswald', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 25px rgba(191, 152, 80, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.dedicated-reserve-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.dedicated-reserve-btn:hover::before {
    left: 100%;
}

.dedicated-reserve-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(191, 152, 80, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--white), #f0f0f0);
    color: var(--gold);
    border-color: var(--gold);
}

.dedicated-reserve-btn i {
    transition: transform 0.4s ease;
}

.dedicated-reserve-btn:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png');
    background-size: 200px 200px;
    opacity: 0.02;
    animation: contactFloat 25s ease-in-out infinite;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

/* Contact Section (suite) */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover {
    background: rgba(212, 165, 116, 0.05);
    transform: translateX(10px);
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item i {
    color: var(--gold);
    margin-right: 1.5rem;
    width: 25px;
    font-size: 1.5rem;
}

.map-container {
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    height: 500px;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.3);
    transition: all 0.4s ease;
}

.map-wrapper {
    position: relative;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.map-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(28, 28, 28, 0.9);
    color: var(--gold);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
}

.map-marker i {
    margin-right: 8px;
    animation: marker-pulse 2s ease-in-out infinite;
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(212, 165, 116, 0.4);
}

.map-container:hover .map-wrapper iframe {
    transform: scale(1.05);
}

.map-content {
    text-align: center;
    color: var(--black);
    font-size: 1.1rem;
    font-weight: bold;
}

/* Space Invader Game Section */
.space-invader-section {
    background: linear-gradient(135deg, var(--black) 0%, #0a0a0a 50%, var(--black) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.space-invader-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    animation: gameGlow 6s ease-in-out infinite;
}

.space-invader-game {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid var(--gold);
    border-radius: 15px;
    padding: 30px;
    position: relative;
}

.game-area {
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, #000033 0%, #000066 50%, #000033 100%);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.player {
    width: 50px;
    height: 50px;
    background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Ocre.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: left 0.1s ease;
    z-index: 2;
}

.invader {
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

/* Removed .invader::after golden overlay - was causing visual artifacts */

.bullet {
    width: 8px;
    height: 15px;
    background: linear-gradient(180deg, var(--gold), var(--dark-gold));
    border-radius: 4px;
    position: absolute;
    box-shadow: 0 0 10px var(--gold);
}

.score {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--gold);
    font-family: 'Impact', 'Anton', 'Oswald', serif;
    font-size: 1.2rem;
    font-weight: bold;
}

.game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: var(--gold);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--gold);
}

.game-over.hidden {
    display: none;
}

.game-controls {
    text-align: center;
    margin-top: 20px;
}

.game-btn, .restart-btn {
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-family: 'Impact', 'Anton', 'Oswald', serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-btn:hover, .restart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

.controls-info {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-size: 0.9rem;
}

.game-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--black) 50%, #1a1a1a 100%);
    padding: 100px 0;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png'),
        url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Blanc.png');
    background-size: 80px 80px, 60px 60px;
    background-position: 10% 20%, 90% 80%;
    background-repeat: no-repeat;
    opacity: 0.03;
    animation: contactDecoration 25s ease-in-out infinite;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(212, 165, 116, 0.05));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    height: fit-content;
}

.contact-info-card h3 {
    font-family: 'Impact', 'Anton', 'Oswald', serif;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-item.highlight {
    background: rgba(212, 165, 116, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.reservation-form-card {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.95), rgba(42, 42, 42, 0.95));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-family: 'Impact', 'Anton', 'Oswald', serif;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Form Steps Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    margin: 20px 0 30px;
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(191, 152, 80, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    right: 25%;
    height: 3px;
    background: linear-gradient(90deg, rgba(191, 152, 80, 0.3), var(--gold), rgba(191, 152, 80, 0.3));
    z-index: 0;
    border-radius: 2px;
    transform: translateY(-50%);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 30px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.9);
    border: 3px solid rgba(191, 152, 80, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.step.active .step-number {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 
        0 8px 25px rgba(191, 152, 80, 0.4),
        0 0 20px rgba(191, 152, 80, 0.3);
}

.step.completed .step-number {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(191, 152, 80, 0.3);
}

.step-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.step.active .step-label {
    color: var(--gold);
    font-weight: 600;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.form-step h4 {
    color: var(--gold);
    font-family: 'Impact', 'Anton', 'Oswald', serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.form-buttons.right-aligned {
    justify-content: flex-end;
}

.btn-prev, .btn-next, .btn-submit {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-prev {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-next, .btn-submit {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    font-family: 'Impact', 'Anton', 'Oswald', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    box-shadow: 
        0 10px 25px rgba(191, 152, 80, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    justify-content: center;
}

.btn-next::before, .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-next:hover::before, .btn-submit:hover::before {
    left: 100%;
}

.btn-next:hover, .btn-submit:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(191, 152, 80, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--white), #f5f5f5);
    color: var(--gold);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Form Messages */
.form-message {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

.form-message.success {
    background: rgba(46, 160, 67, 0.1);
    border: 1px solid rgba(46, 160, 67, 0.3);
    color: #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.form-message i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-message h4 {
    margin-bottom: 10px;
    font-family: 'Impact', 'Anton', 'Oswald', serif;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-family: 'Impact', 'Anton', 'Oswald', serif;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 400px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.4);
}

.submit-btn i {
    margin-right: 10px;
}

.form-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 15px;
    font-style: italic;
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 165, 116, 0.05), transparent);
    animation: footerWave 6s ease-in-out infinite;
}

.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png'),
        url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Blanc.png');
    background-size: 60px 60px, 80px 80px;
    background-position: 0 0, 40px 40px;
    background-repeat: repeat;
    opacity: 0.03;
    animation: footer-pattern 120s linear infinite;
}

.footer-main {
    padding: 5rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1600px;
    margin: 0 auto 4rem;
    padding: 0 3rem;
}

.footer-brand {
    grid-column: span 1;
    padding-right: 2rem;
}

.footer-main-logo {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(191, 152, 80, 0.3));
    transition: all 0.3s ease;
}

.footer-main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(191, 152, 80, 0.5));
}

.footer-title {
    font-family: 'Impact', 'Anton', 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: normal;
    color: var(--white);
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 4px 20px rgba(191, 152, 80, 0.3);
    background: linear-gradient(45deg, var(--gold), var(--white), var(--gold));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 4s ease-in-out infinite;
}

.footer-baseline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.4rem;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-subtitle {
    color: var(--gold);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer-credits {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Social Networks */
.social-networks h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link.facebook { background: linear-gradient(45deg, #1877f2, #42a5f5); }
.social-link.instagram { background: linear-gradient(45deg, #E4405F, #FCAF45, #833AB4); }
.social-link.tripadvisor { background: linear-gradient(45deg, #00AF87, #00C3A5); }
.social-link.google { background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335); }

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Footer Contact */
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.opening-hours h5 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hours-grid {
    display: grid;
    gap: 0.5rem;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.day-hours.closed {
    opacity: 0.6;
}

.day {
    font-weight: 500;
}

.hours {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Footer Navigation */
.footer-nav h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.footer-menu a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    border-left: 3px solid transparent;
    padding-left: 0.5rem;
}

.footer-menu a:hover {
    color: var(--gold);
    border-left-color: var(--gold);
    transform: translateX(5px);
}

.footer-services h5 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.footer-services i {
    color: var(--gold);
    width: 16px;
}

/* Newsletter */
.newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.newsletter p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 8px;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    border: none;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(191, 152, 80, 0.4);
}

/* Certifications */
.certifications h5 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cert-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cert-badge {
    text-align: center;
    padding: 1rem 0.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(191, 152, 80, 0.3);
    transition: all 0.3s ease;
    flex: 1;
}

.cert-badge:hover {
    background: rgba(191, 152, 80, 0.1);
    transform: translateY(-2px);
}

.cert-badge i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.cert-badge span {
    font-size: 0.8rem;
    line-height: 1.2;
}

/* Footer Monsters */
.footer-monsters {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.monster-logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(191, 152, 80, 0.3));
    transition: all 0.3s ease;
    animation: monster-float 3s ease-in-out infinite;
}

.monster-logo:nth-child(1) { animation-delay: 0s; }
.monster-logo:nth-child(2) { animation-delay: 1s; }
.monster-logo:nth-child(3) { animation-delay: 2s; }

.monster-logo:hover {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 4px 8px rgba(191, 152, 80, 0.6));
}

/* Footer Legal */
.footer-legal {
    background: var(--black);
    border-top: 2px solid var(--gold);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.legal-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.legal-links a:hover {
    color: var(--gold);
    opacity: 1;
}

.legal-info {
    text-align: center;
    opacity: 0.7;
}

.legal-info p {
    margin: 0;
    font-size: 0.9rem;
}

.legal-info a {
    color: var(--gold);
    text-decoration: none;
}

.legal-info a:hover {
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    border-top: 3px solid var(--gold);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-text p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-accept {
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--white);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 152, 80, 0.4);
}

.cookie-customize {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.cookie-customize:hover {
    background: var(--gold);
    color: var(--black);
}

.cookie-refuse {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.cookie-refuse:hover {
    background: rgba(255,255,255,0.1);
}

/* Floating Particles - Limited to specific sections */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    display: none; /* Hidden by default */
}

/* Show particles only on hero and team sections */
.hero .floating-particles,
#team .floating-particles {
    display: block;
}

.particle {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.1;
    animation: float 25s infinite ease-in-out;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 6px rgba(191, 152, 80, 0.2));
}

/* Classes pour les particules */
.particle.pastille-1 { background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png'); }
.particle.pastille-2 { background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Blanc.png'); }
.particle.pastille-3 { background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-3-Blanc-12.png'); }
.particle.pastille-4 { background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Noir.png'); }
.particle.pastille-5 { background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Noir.png'); }

.particle.mono-1 {
    background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png');
    width: 45px;
    height: 45px;
}

.particle.mono-2 {
    background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Blanc.png');
    width: 45px;
    height: 45px;
}

.particle.logo-g1 {
    background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Noir.png');
    width: 55px;
    height: 55px;
}

.particle.logo-p1 {
    background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Noir.png');
    width: 35px;
    height: 35px;
}

/* Ghost Logo */
.ghost-logo {
    position: fixed;
    width: 50px;
    height: 50px;
    background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.6));
    transition: opacity 0.3s ease;
}

/* Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =====================================
   ANIMATIONS KEYFRAMES
   ===================================== */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes logo-morph {
    0%, 20% {
        background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png');
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.3));
    }
    25%, 45% {
        background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Blanc.png');
        transform: scale(1.1) rotate(5deg);
        opacity: 0.95;
        filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
    }
    50%, 70% {
        background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-3-Blanc-12.png');
        transform: scale(0.9) rotate(-3deg);
        opacity: 1;
        filter: drop-shadow(0 3px 8px rgba(255, 255, 255, 0.2));
    }
    75%, 95% {
        background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Noir.png');
        transform: scale(1.05) rotate(2deg);
        opacity: 0.9;
        filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
    }
    100% {
        background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png');
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.3));
    }
}

@keyframes header-cta-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(191, 152, 80, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 25px rgba(191, 152, 80, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(191, 152, 80, 0.4);
    }
}

@keyframes logoEntrance {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    50% { transform: scale(1.1) rotate(-90deg); opacity: 0.8; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ripple-effect {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 140%;
        height: 140%;
        opacity: 0;
    }
}

@keyframes textEntrance {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes tagline-terrible-appear {
    0% { 
        opacity: 0; 
        transform: translateX(-100px) rotate(-5deg) scale(0.8);
        filter: drop-shadow(0 0 0 rgba(212, 165, 116, 0));
    }
    30% {
        opacity: 0.7;
        transform: translateX(20px) rotate(2deg) scale(1.1);
        filter: drop-shadow(0 0 15px rgba(212, 165, 116, 0.6));
    }
    60% {
        opacity: 0.9;
        transform: translateX(-10px) rotate(-1deg) scale(1.05);
        filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.8));
    }
    80% {
        opacity: 1;
        transform: translateX(5px) rotate(0.5deg) scale(0.98);
        filter: drop-shadow(0 0 25px rgba(212, 165, 116, 0.9));
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) rotate(0deg) scale(1);
        filter: drop-shadow(0 0 15px rgba(212, 165, 116, 0.4));
    }
}

@keyframes emoji-terrible-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    }
    10% {
        transform: translateY(-12px) scale(1.2) rotate(-10deg);
        filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.8));
    }
    40% {
        transform: translateY(-8px) scale(1.1) rotate(5deg);
        filter: drop-shadow(0 0 15px rgba(212, 165, 116, 0.6));
    }
    60% {
        transform: translateY(-4px) scale(1.05) rotate(-3deg);
        filter: drop-shadow(0 0 12px rgba(212, 165, 116, 0.4));
    }
}

@keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulse-gold {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(191, 152, 80, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(191, 152, 80, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(191, 152, 80, 0.4);
    }
}

@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes patternMove {
    0% { transform: translateX(-60px) translateY(-60px); }
    100% { transform: translateX(60px) translateY(60px); }
}

@keyframes concept-pattern {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.03;
    }
    25% {
        transform: scale(1.05) rotate(90deg);
        opacity: 0.04;
    }
    50% { 
        transform: scale(0.95) rotate(180deg);
        opacity: 0.02;
    }
    75% {
        transform: scale(1.02) rotate(270deg);
        opacity: 0.035;
    }
}

@keyframes slowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes menuGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    33% { opacity: 0.8; transform: scale(1.02); }
    66% { opacity: 0.6; transform: scale(0.98); }
}

@keyframes menuDecoration {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.04; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.08; }
}

@keyframes pastille-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(10deg); }
}

@keyframes menu-logo-pulse {
    0%, 100% { transform: rotate(360deg) scale(1.2); }
    50% { transform: rotate(360deg) scale(1.4); opacity: 0.5; }
}

@keyframes formula-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes contactFloat {
    0%, 100% { transform: rotate(0deg) translateY(0px); }
    50% { transform: rotate(180deg) translateY(-40px); }
}

@keyframes marker-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes gameGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes contactDecoration {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.03; }
    50% { transform: translateY(-15px) rotate(3deg); opacity: 0.06; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes footerWave {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes footer-pattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-80px) translateY(-80px); }
}

@keyframes monster-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.25;
    }
    25% {
        transform: translateY(75vh) rotate(120deg) scale(1.0);
        opacity: 0.18;
    }
    50% {
        transform: translateY(30vh) rotate(240deg) scale(1.4);
        opacity: 0.35;
    }
    75% {
        transform: translateY(-5vh) rotate(360deg) scale(0.8);
        opacity: 0.15;
    }
}

@keyframes mega-morph {
    0%, 12.5% {
        background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png');
        filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.6));
    }
    12.6%, 25% {
        background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Blanc.png');
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    }
    25.1%, 37.5% {
        background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-3-Blanc-12.png');
        filter: brightness(1.2) drop-shadow(0 2px 6px rgba(255, 255, 255, 0.7));
    }
    37.6%, 50% {
        background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Noir.png');
        filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.8));
    }
    50.1%, 62.5% {
        background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Noir.png');
        filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.9));
    }
    62.6%, 75% {
        background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png');
        filter: brightness(1.3) drop-shadow(0 3px 10px rgba(255, 255, 255, 0.9));
    }
    75.1%, 87.5% {
        background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Blanc.png');
        filter: brightness(1.1) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.8));
    }
    87.6%, 100% {
        background-image: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Noir.png');
        filter: brightness(0.9) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
    }
}

/* =====================================
   RESPONSIVE DESIGN
   ===================================== */

/* Tablet */
@media (max-width: 1680px) {
    .footer-grid {
        max-width: 1400px;
        padding: 0 2rem;
    }
}

@media (max-width: 1024px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .space-invader-game {
        padding: 20px;
    }

    .game-area {
        height: 350px;
    }

    .hero-tagline {
        font-size: 1.5rem;
        padding: 0 30px;
    }

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

    .team-members {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .menu-highlight {
        padding: 60px 20px;
    }

    .menu-highlight h2 {
        font-size: 2.5rem;
    }

    .particle {
        width: 40px;
        height: 40px;
        opacity: 0.12;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
        max-width: 1000px;
        padding: 0 2rem;
    }

    /* Mobile menu show on tablet */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav {
        padding: 1rem 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .mobile-nav-link {
        font-size: 2rem;
        padding: 1rem 0;
    }

    .mobile-menu-cta {
        min-width: 200px;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .concept-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .duality-cards {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* =====================================
   EXCELLENCE CARDS SECTION
   ===================================== */
.excellence-cards {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--black), #0f0f0f);
    position: relative;
    overflow: hidden;
}

.excellence-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(212, 165, 116, 0.05) 50%, transparent 60%);
    animation: shimmer-bg 8s ease-in-out infinite;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.excellence-card {
    background: linear-gradient(135deg, #232323 80%, #181818 100%);
    border: 2px solid rgba(191, 152, 80, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.excellence-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(191, 152, 80, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.excellence-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(191, 152, 80, 0.3);
}

.excellence-card:hover::before {
    opacity: 1;
}

.card-icon {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.card-icon i {
    font-size: 4rem;
    color: var(--gold);
    transition: all 0.4s ease;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(191, 152, 80, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.excellence-card:hover .icon-glow {
    opacity: 1;
    animation: glow-pulse 2s ease-in-out infinite;
}

.excellence-card:hover .card-icon i {
    transform: scale(1.2) rotate(10deg);
    color: var(--gold-light);
}

.excellence-card h3 {
    font-family: sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold);
    transition: color 0.4s ease;
}

.excellence-card:hover h3 {
    color: var(--gold-light);
}

.excellence-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.4s ease;
}

.excellence-card:hover p {
    color: var(--white);
}

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.floating-particle.p1 {
    top: 20%;
    right: 20%;
    animation: float-particle-1 4s ease-in-out infinite;
}

.floating-particle.p2 {
    bottom: 20%;
    left: 20%;
    animation: float-particle-2 3s ease-in-out infinite;
}

.excellence-card:hover .floating-particle {
    opacity: 0.8;
}

/* WOW Effects for Team Page */
.revolution-text {
    font-family: sans-serif !important;
    font-weight: 900 !important;
    color: var(--gold) !important;
    text-shadow: 0 0 20px rgba(191, 152, 80, 0.5) !important;
    animation: revolution-glow 3s ease-in-out infinite !important;
}

.wow-text {
    position: relative;
    display: inline-block;
}

.wow-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: underline-glow 2s ease-in-out infinite;
}

/* Animations */
@keyframes shimmer-bg {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

@keyframes float-particle-1 {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    25% { transform: translate(10px, -15px); opacity: 0.8; }
    50% { transform: translate(-5px, -25px); opacity: 0.6; }
    75% { transform: translate(-15px, -10px); opacity: 0.9; }
}

@keyframes float-particle-2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    33% { transform: translate(-12px, 10px); opacity: 0.7; }
    66% { transform: translate(8px, -8px); opacity: 0.9; }
}

@keyframes revolution-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(191, 152, 80, 0.5); }
    50% { text-shadow: 0 0 30px rgba(191, 152, 80, 0.8), 0 0 40px rgba(212, 165, 116, 0.6); }
}

@keyframes underline-glow {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

/* Mobile Responsive for Excellence Cards */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .excellence-cards {
        padding: 6rem 0;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .excellence-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon i {
        font-size: 3rem;
    }
    
    .excellence-card h3 {
        font-size: 1.5rem;
    }
}

/* WOW Cards Animation */
.wow-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wow-card.wow-animate {
    opacity: 1;
    transform: translateY(0);
    animation: wow-entrance 0.8s ease-out var(--wow-delay, 0s) both;
}

@keyframes wow-entrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =====================================
   FOOTER WOW EFFECTS
   ===================================== */
.wow-footer {
    position: relative;
    overflow: hidden;
}

.wow-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: footer-line-sweep 6s ease-in-out infinite;
}

.footer-wow-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.footer-wow-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-logo-glow:hover {
    filter: drop-shadow(0 0 20px rgba(191, 152, 80, 0.6));
    transform: scale(1.05);
    transition: all 0.4s ease;
}

.footer-title-glow {
    position: relative;
    transition: all 0.4s ease;
}

.footer-title-glow:hover {
    color: var(--gold-light);
    text-shadow: 0 0 15px rgba(191, 152, 80, 0.5);
}

.footer-title-glow::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.4s ease;
}

.footer-title-glow:hover::after {
    width: 100%;
}

.footer-links-wow li {
    transition: transform 0.3s ease;
}

.footer-links-wow li:hover {
    transform: translateX(10px);
}

.footer-link-hover {
    position: relative;
    transition: all 0.3s ease;
}

.footer-link-hover::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--gold);
}

.footer-link-hover:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-link-hover:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(191, 152, 80, 0.3);
}

/* Contact items hover effects */
.contact-item {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.5rem;
}

.contact-item:hover {
    background: rgba(191, 152, 80, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: var(--gold-light);
    transform: scale(1.2);
}

/* Newsletter enhanced */
.newsletter-form {
    position: relative;
}

.newsletter-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light), var(--gold));
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.newsletter-form:hover::before {
    opacity: 0.3;
}

/* Animations */
@keyframes footer-line-sweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* =====================================
   FOOTER EXCELLENCE MINI CARDS
   ===================================== */
.footer-excellence {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.footer-excellence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.mini-excellence-card {
    background: rgba(191, 152, 80, 0.05);
    border: 1px solid rgba(191, 152, 80, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.mini-excellence-card:hover {
    background: rgba(191, 152, 80, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(191, 152, 80, 0.2);
}

.mini-card-icon {
    margin-bottom: 1rem;
}

.mini-card-icon i {
    font-size: 2rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.mini-excellence-card:hover .mini-card-icon i {
    color: var(--gold-light);
    transform: scale(1.1);
}

.mini-excellence-card h4 {
    font-family: sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
    transition: color 0.3s ease;
}

.mini-excellence-card:hover h4 {
    color: var(--gold-light);
}

.mini-excellence-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.mini-excellence-card:hover p {
    color: var(--white);
}

/* Mobile responsive for mini cards */
@media (max-width: 768px) {
    .footer-excellence-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .mini-excellence-card {
        padding: 1rem;
    }
    
    .mini-card-icon i {
        font-size: 1.5rem;
    }
    
    .mini-excellence-card h4 {
        font-size: 1rem;
    }
    
    .mini-excellence-card p {
        font-size: 0.85rem;
    }
}

/* =====================================
   ENTREPRISES PAGE RESPONSIVE
   ===================================== */
@media (max-width: 768px) {
    /* Quick Access Bar mobile */
    .quick-access-bar {
        padding: 2rem 0 !important;
    }
    
    .quick-access-bar > div {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    /* Business cards mobile - single column */
    .business-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Events grid mobile - single column */
    .events-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Contact form grid mobile */
    .contact-form-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .contact-form-grid .form-span-2 {
        grid-column: span 1 !important;
    }
    
    /* General responsive fixes for all pages */
    .menu-grid, 
    .team-grid,
    .concept-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Ensure any 2-column layouts become 1-column on mobile */
    [style*="grid-template-columns: repeat(2, 1fr)"],
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Menu sections responsive */
    .menu-category {
        margin-bottom: 3rem;
    }
    
    /* Contact page responsive */
    .contact-grid,
    .availability-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Homepage responsive improvements */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        text-align: center;
    }
    
    /* Ensure all grid layouts are single column on mobile */
    .info-grid,
    .team-quotes-carousel .quote-container,
    .awards-grid,
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Add classes to entreprises.php grids for easier targeting */
.business-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* ========================
   PAGES LÉGALES - CSS 
======================== */

.legal-page-hero {
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 12rem 2rem 8rem;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.legal-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Ocre.png') center/200px no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.legal-page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.legal-page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.legal-page-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-content {
    padding: 6rem 2rem;
    background: var(--white);
    min-height: 60vh;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-nav {
    margin-bottom: 4rem;
    text-align: center;
}

.legal-nav a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid var(--gold);
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.legal-nav a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(191, 152, 80, 0.3);
}

.legal-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--cream);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.legal-section-content {
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--cream);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.legal-section h2,
.legal-section-content h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 1rem;
}

.legal-section h3,
.legal-section-content h3 {
    color: var(--black);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.legal-section p,
.legal-section-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.legal-section ul,
.legal-section-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section li,
.legal-section-content li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* Styles spécifiques pour les pages légales */
.info-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-box {
    background: var(--gold);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid var(--gold-dark);
}

.highlight-box p {
    color: var(--white) !important;
    margin-bottom: 0;
}

.legal-text {
    background: var(--white);
    padding: 0;
}

.contact-legal-info {
    background: var(--gold);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.contact-legal-info h3 {
    color: var(--white) !important;
    margin-bottom: 1rem;
}

.contact-legal-info p {
    color: var(--white) !important;
    margin-bottom: 0.5rem;
}

.legal-contact-info {
    background: var(--gold);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 4rem 0;
}

.legal-contact-info h3 {
    color: var(--white);
    margin-bottom: 2rem;
}

.legal-contact-info p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.legal-contact-info strong {
    font-weight: 700;
}

/* ========================
   PAGE CONTACT - CSS 
======================== */

.contact-hero {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-2-Ocre.png') center/300px no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-left-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
}

.hero-left h1 {
    font-family: 'Anton', 'Oswald', 'Impact', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: normal;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--white), var(--gold), var(--white));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-left h1 span {
    display: block;
    color: var(--gold);
    font-size: 3rem;
    font-weight: 600;
    margin-top: 1rem;
}

.gradient-text {
    background: linear-gradient(45deg, var(--gold), var(--white), var(--gold));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 3s ease-in-out infinite;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.hero-right {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') center/cover no-repeat;
    position: relative;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(191, 152, 80, 0.3), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.info-section {
    padding: 8rem 2rem;
    background: var(--cream);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 5px solid var(--gold);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.info-card h3 {
    color: var(--black);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-form-section {
    padding: 8rem 2rem;
    background: var(--white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.form-container h2 {
    color: var(--black);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-container .section-subtitle {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.contact-form {
    background: var(--cream);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(191, 152, 80, 0.2);
}

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

.submit-btn {
    background: var(--gold);
    color: var(--white);
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    width: 100%;
}

.submit-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(191, 152, 80, 0.4);
}

/* CSS FORMULAIRE DE RÉSERVATION CONTACT */
.reservation-section {
    padding: 8rem 2rem;
    background: var(--black);
    color: var(--white);
}

.reservation-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.reservation-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.reservation-info h2 span {
    color: var(--gold);
}

.reservation-info p {
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.availability h3 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.availability-grid div {
    color: var(--black) !important;
}

.reservation-form {
    background: var(--cream);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-header h3 {
    color: var(--black);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    color: var(--black) !important;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.form-group label.label-white {
    color: var(--white) !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--black) !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(191, 152, 80, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    grid-column: span 2;
    background: var(--gold);
    color: var(--white);
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    width: 100%;
}

.submit-button:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(191, 152, 80, 0.4);
}

.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.modal-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.modal-content h3 {
    color: var(--black);
    margin-bottom: 2rem;
}

.modal-content p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Responsive pour contact */
@media (max-width: 768px) {
    .reservation-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .reservation-form {
        padding: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .submit-button {
        grid-column: span 1;
    }
}

/* Offset pour ancres avec header fixe */
#reservationForm {
    scroll-margin-top: 120px;
}

/* Responsive Design pour pages légales et contact */
@media (max-width: 768px) {
    .legal-page-hero {
        padding: 8rem 1rem 6rem;
    }
    
    .legal-page-hero h1 {
        font-size: 2.5rem;
    }
    
    .legal-content {
        padding: 4rem 1rem;
    }
    
    .legal-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-hero {
        flex-direction: column;
    }
    
    .hero-left,
    .hero-right {
        flex: none;
        min-height: 50vh;
    }
    
    .hero-left {
        padding: 3rem 1rem;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .hero-left h1 span {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* =====================================
   RÉSERVATION EXPRESS - SYSTÈME D'ÉTAPES
   ===================================== */

.reservation-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
    position: relative;
}

.reservation-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
    width: 200px;
    transform: translateX(-50%);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: var(--cream);
    padding: 0 1rem;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', 'Oswald', 'Impact', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    transition: background 0.2s, color 0.2s, border 0.2s;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.step-label {
    font-size: 0.85rem;
    color: var(--black);
    font-weight: 600;
    text-align: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(191,152,80,0.15);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(191, 152, 80, 0.4);
}

.step.active .step-label {
    color: var(--gold);
    opacity: 1;
    font-weight: 700;
}

.step.completed .step-number {
    background: var(--gold);
    color: var(--white);
}

.step.completed .step-label {
    color: var(--gold);
    opacity: 1;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step Buttons */
.step-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    text-align: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    margin-left: auto;
    display: block;
    margin-top: 2rem;
}

.next-btn:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(191, 152, 80, 0.4);
}

.prev-btn {
    background: #f0f0f0;
    color: var(--black);
}

.prev-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Confirmation Summary */
.confirmation-summary {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--gold);
}

.confirmation-summary h4 {
    color: var(--black);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: var(--black);
}

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

.summary-item strong {
    color: var(--black);
}

.summary-item span {
    color: var(--gold);
    font-weight: 600;
}

/* Responsive pour les étapes */
@media (max-width: 768px) {
    .reservation-steps {
        margin: 1.5rem 0 2rem 0;
    }
    
    .reservation-steps::before {
        width: 150px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .step-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .confirmation-summary {
        padding: 1.5rem;
    }
    
    .summary-item {
        flex-direction: column;
        gap: 0.3rem;
        text-align: left;
    }
}