/* ===============================================
   ORACLE DU TEMPS - Styles principaux
   =============================================== */

:root {
    /* Palette Lumineuse et Rayonnante */
    --primary-color: #e8b4ff;
    --secondary-color: #b794f6;
    --accent-color: #ffd700;
    --light-bg: #ffffff;
    --lighter-bg: #fefcff;
    --cream-bg: #fffbf5;
    --light-text: #2d3748;
    --gray-text: #4a5568;
    --card-bg: rgba(255, 255, 255, 0.95);
    --gradient-1: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    --gradient-2: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    --gradient-3: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    --gradient-light: linear-gradient(135deg, #fff5f7 0%, #ffe8f0 100%);
    --gradient-gold: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    --gradient-purple: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    --shadow-color: rgba(138, 43, 226, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(to bottom, #ffffff 0%, #fffbf5 50%, #fff5f7 100%);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Masquer le contenu pendant l'intro */
body:not(.intro-finished) .header,
body:not(.intro-finished) #bg-canvas,
body:not(.intro-finished) section {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
}

/* Afficher le contenu après l'intro avec effet d'ouverture */
body.intro-finished .header,
body.intro-finished #bg-canvas,
body.intro-finished section {
    opacity: 1;
    visibility: visible;
    animation: openingSiteEffect 1s ease-out;
}

@keyframes openingSiteEffect {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Particules persistantes sur le site */
.persistent-particles {
    animation: particlesAppear 1s ease-in-out;
}

@keyframes particlesAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
}

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

/* ===============================================
   3D Background Canvas
   =============================================== */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* ===============================================
   Header & Navigation
   =============================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(138, 43, 226, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo h1 {
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.5);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.logo-symbol {
    font-size: 2rem;
    color: #ffd700;
    animation: rotate-symbol 4s ease-in-out infinite;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes rotate-symbol {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    background: transparent;
}

.nav-menu li {
    background: transparent;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    background: transparent;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 1px 3px rgba(0, 0, 0, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
    background: transparent;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 215, 0, 0.8);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* ===============================================
   Hero Section avec Vidéo
   =============================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

/* Vidéo de fond pleine largeur */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay avec dégradé transparent sur le bas de la vidéo */
.video-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.85) 15%, 
        rgba(0, 0, 0, 0.6) 35%, 
        rgba(0, 0, 0, 0.3) 60%, 
        transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Vidéo présentation centrée par-dessus */
.presentation-video-overlay {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%) scale(1);
    z-index: 10;
    width: 50%;
    max-width: 650px;
    aspect-ratio: 16/9;
    border-radius: 0;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    background: transparent;
    border: none;
    /* Effet lumineux autour de la vidéo */
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.8))
            drop-shadow(0 0 100px rgba(255, 215, 0, 0.5))
            drop-shadow(0 0 150px rgba(102, 126, 234, 0.4))
            drop-shadow(0 25px 70px rgba(0, 0, 0, 0.5));
}

/* Animation du conteneur - apparition progressive */
.presentation-video-overlay.visible {
    visibility: visible;
    animation: containerFadeIn 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Animation d'apparition du conteneur - Optimisée pour la performance */
@keyframes containerFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.presentation-video-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
    background: transparent;
    background-color: transparent;
    border-radius: 20px;
    /* MASQUE DE TRANSPARENCE PROGRESSIVE SUR TOUS LES BORDS */
    -webkit-mask-image: 
        /* Gradient radial pour effet circulaire */
        radial-gradient(
            ellipse 100% 100% at center,
            black 35%,
            rgba(0, 0, 0, 0.5) 55%,
            rgba(0, 0, 0, 0.2) 75%,
            transparent 90%
        ),
        /* Gradient horizontal pour côtés gauche/droite */
        linear-gradient(
            to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%
        ),
        /* Gradient vertical pour haut/bas */
        linear-gradient(
            to bottom,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%
        );
    mask-image: 
        radial-gradient(
            ellipse 100% 100% at center,
            black 35%,
            rgba(0, 0, 0, 0.5) 55%,
            rgba(0, 0, 0, 0.2) 75%,
            transparent 90%
        ),
        linear-gradient(
            to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%
        );
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}

.presentation-video-overlay video:hover {
    transform: scale(1.02);
}

/* Animation de la vidéo - Optimisée sans filtres lourds */
.presentation-video-overlay.visible video {
    animation: videoFadeIn 2s ease-out 0.5s forwards; /* Délai de 0.5s pour laisser la vidéo charger */
}

@keyframes videoFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Conteneur des boutons de contrôle vidéo */
.video-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    display: flex;
    gap: 1rem;
    flex-direction: row;
}

/* Boutons de contrôle individuels */
.video-control-btn {
    min-width: 60px;
    height: 60px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(224, 195, 252, 0.5);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.2rem;
    white-space: nowrap;
}

/* Texte dans les boutons */
.video-control-btn .btn-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Bouton son garde sa forme circulaire */
.video-control-btn#playButton {
    width: 60px;
    min-width: 60px;
    padding: 0;
    border-radius: 50%;
}

.video-control-btn:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 40px rgba(138, 43, 226, 0.4);
}

.video-control-btn i {
    transition: all 0.3s ease;
}

.video-control-btn:hover i {
    transform: scale(1.2);
}

/* Animation du bouton quand les animations sont actives */
.video-control-btn:not(.paused) .fa-sync-alt {
    animation: rotate-icon 3s linear infinite;
}

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

/* Bouton de pause en mode actif (animations bloquées) */
.video-control-btn.paused {
    background: rgba(255, 100, 100, 0.9);
    color: white;
    border-color: rgba(255, 100, 100, 0.5);
}

.video-control-btn.paused:hover {
    background: rgba(255, 100, 100, 1);
}

/* Stop l'animation de rotation quand bloqué */
.video-control-btn.paused .fa-sync-alt {
    animation: none;
}

/* Anciens styles pour compatibilité */
.video-sound-toggle {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(224, 195, 252, 0.5);
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-sound-toggle:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 40px rgba(138, 43, 226, 0.4);
}

.video-sound-toggle i {
    transition: all 0.3s ease;
}

.video-sound-toggle:hover i {
    transform: scale(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 251, 245, 0.7) 70%);
    z-index: 1;
    display: none; /* Désactivé car on utilise maintenant video-overlay-gradient */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4);
}

.hero-text p {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 15px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #ffd89b 0%, #ff9a76 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(255, 154, 118, 0.6),
        0 5px 20px rgba(0, 0, 0, 0.5);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(255, 154, 118, 0.8),
        0 8px 25px rgba(0, 0, 0, 0.6);
}

/* Video Container */
.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.3);
    aspect-ratio: 16/9;
    transform: none !important; /* Empêche le parallax */
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero video pleine largeur avec intro.mp4 - OBSOLÈTE (maintenant géré par .hero-video-background) */
/* Ces styles sont conservés pour compatibilité mais ne sont plus utilisés */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd89b 0%, #ff9a76 100%);
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 154, 118, 0.5);
}

.play-button:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 154, 118, 0.7);
}

.play-button:active {
    transform: scale(0.95);
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

@keyframes fadeIn {
    to { opacity: 1; }
    from { opacity: 0; }
}

/* ===============================================
   Section Headers
   =============================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-symbol {
    font-size: 2.5rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; text-shadow: 0 0 20px var(--accent-color); }
    50% { opacity: 0.7; text-shadow: 0 0 40px var(--accent-color); }
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.divider {
    width: 100px;
    height: 3px;
    background: transparent;
    margin: 1.5rem auto;
    display: none; /* Effet de trait retiré */
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

/* ===============================================
   About Section
   =============================================== */
.about-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #fffbf5 0%, #fff5f7 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #fffbf5 0%, #fff5f7 100%);
    padding: 20px;
}

.profile-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    /* Le fond sera supprimé par JavaScript */
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 122, 184, 0.3) 0%, transparent 70%);
    animation: rotate-glow 8s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.certifications {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    border: 2px solid rgba(224, 195, 252, 0.5);
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.1);
}

.certifications h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.certifications ul {
    list-style: none;
}

.certifications li {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.certifications i {
    color: var(--accent-color);
}

.cert-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===============================================
   Services Section
   =============================================== */
.services-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fffbf5 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(224, 195, 252, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.2);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.featured {
    border: 2px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.card-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.card-icon-image {
    background: transparent;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.card-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card > p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: var(--gray-text);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 122, 184, 0.2);
}

/* ===============================================
   Booking Section
   =============================================== */
.booking-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #fff5f7 0%, #ffffff 100%);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.booking-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

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

.booking-note {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
}

.booking-note i {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.booking-note p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Booking Form */
.booking-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(224, 195, 252, 0.5);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.15);
}

/* Nouveau CTA de réservation */
.booking-cta {
    text-align: center;
    padding: 2rem;
}

.cta-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.booking-cta h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--gradient-2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(162, 155, 254, 0.4);
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(162, 155, 254, 0.6);
}

.cta-button i {
    font-size: 1.3rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-text);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 122, 184, 0.2);
    border-radius: 10px;
    color: var(--light-text);
    font-family: 'Cormorant Garamond', serif;
    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(--primary-color);
    box-shadow: 0 0 20px rgba(139, 122, 184, 0.2);
}

.price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.total-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 122, 184, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 122, 184, 0.5);
}

.payment-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    color: var(--gray-text);
    font-size: 2rem;
}

.secure-badge {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===============================================
   Contact Section
   =============================================== */
.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #fffbf5 0%, #fff5f7 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(224, 195, 252, 0.5);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-card p,
.contact-card a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--accent-color);
}

.social-links {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 122, 184, 0.2);
    text-align: center;
}

.social-links h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(139, 122, 184, 0.5);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 122, 184, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

/* ===============================================
   Footer
   =============================================== */
.footer {
    background: linear-gradient(180deg, #f8f5ff 0%, #e0c3fc 100%);
    padding: 4rem 2rem 2rem;
    border-top: 2px solid rgba(224, 195, 252, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--gray-text);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 122, 184, 0.2);
    border-radius: 25px;
    color: var(--light-text);
    font-family: 'Cormorant Garamond', serif;
}

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

.newsletter-form button {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 122, 184, 0.1);
    color: var(--gray-text);
}

/* ===============================================
   Scroll to Top Button
   =============================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 122, 184, 0.3);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 122, 184, 0.5);
}

/* ===============================================
   Theme Toggle Button (dans la navbar)
   =============================================== */
.theme-toggle {
    width: 38px;
    height: 38px;
    background: var(--gradient-purple);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    margin-right: 0.8rem;
}

.theme-toggle:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.5);
}

.theme-toggle i {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.theme-toggle:hover i {
    transform: rotate(20deg);
}

/* Mode sombre - icône soleil */
.dark-theme .theme-toggle {
    background: linear-gradient(135deg, #ffd89b 0%, #ff9a76 100%);
}

/* ===============================================
   Responsive Design
   =============================================== */
@media (max-width: 968px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    /* Boutons de contrôle responsive */
    .video-controls {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.7rem;
    }
    
    .video-control-btn {
        min-width: 50px;
        height: 50px;
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .video-control-btn .btn-text {
        font-size: 0.85rem;
    }
    
    .video-control-btn#playButton {
        width: 50px;
        min-width: 50px;
    }
    
    /* Bouton son responsive (compatibilité) */
    .video-sound-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    /* Vidéo présentation responsive */
    .presentation-video-overlay {
        width: 75%;
        max-width: 600px;
        top: 130px;
    }
    
    .hero-content {
        max-width: 90%;
        padding: 1.5rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: transparent;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Bouton thème en mode mobile */
    .theme-toggle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-left: 1rem;
        margin-right: 0.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 600px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo-symbol {
        font-size: 1.5rem;
    }
    
    /* Bouton thème encore plus petit sur mobile */
    .theme-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-left: 0.7rem;
        margin-right: 0.3rem;
    }
    
    /* Boutons de contrôle mobile */
    .video-controls {
        bottom: 1rem;
        right: 1rem;
        gap: 0.5rem;
        flex-direction: column;
    }
    
    .video-control-btn {
        min-width: 45px;
        height: 45px;
        font-size: 0.9rem;
        padding: 0 0.8rem;
    }
    
    .video-control-btn .btn-text {
        font-size: 0.75rem;
    }
    
    .video-control-btn#playButton {
        width: 45px;
        min-width: 45px;
    }
    
    /* Bouton son mobile (compatibilité) */
    .video-sound-toggle {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    /* Vidéo présentation mobile */
    .presentation-video-overlay {
        width: 90%;
        max-width: 100%;
        border-radius: 10px;
        top: 120px;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form-container,
    .contact-form-wrapper {
        padding: 2rem;
    }
}


