:root {
    --gold: #FFD700;
    --gold-dim: rgba(255, 215, 0, 0.1);
    --gold-glow: rgba(255, 215, 0, 0.4);
    --black-bg: #0a0a0a;
    --glass: rgba(20, 20, 20, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --success: #4CAF50;
    --danger: #FF5252;
    --nav-height: 80px;
    --transition-smooth: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* --- EMPÊCHER LA SÉLECTION (ANTI-COPIE) --- */
body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black-bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- VIDEO BACKGROUND --- */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}
.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transform: scale(1.05);
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.95) 100%);
    z-index: -1;
}

/* --- NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(0, 0, 0, 0.0);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    height: 70px;
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1002;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 0.9rem;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    padding: 8px 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 1002;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background: var(--gold);
    color: #000;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
}

.logo-display {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    padding: 5px;
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInDown 1s ease forwards 0.5s;
}

.logo-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: contrast(1.1);
    pointer-events: none; /* Empêche l'enregistrement de l'image */
}

.logo-display::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 50%;
    box-shadow: 0 0 30px var(--gold-dim);
    animation: pulse-gold 3s infinite;
    z-index: -1;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

.hero-actions {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: ripple 1.5s infinite;
    opacity: 0.6;
}

.status-badge.open .status-dot { background-color: var(--success); }
.status-badge.open { border-color: rgba(76, 175, 80, 0.3); color: var(--success); }

.status-badge.closed .status-dot { background-color: var(--danger); }
.status-badge.closed { border-color: rgba(255, 82, 82, 0.3); color: var(--danger); }

.cta-btn {
    position: relative;
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--gold);
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: var(--gold);
    transition: width 0.4s ease;
    z-index: -1;
}

.cta-btn:hover {
    color: #000;
}

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

/* --- SECTIONS --- */
section {
    padding: 120px 10%;
    position: relative;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 80px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* --- CARDS & GRIDS --- */
.schedule-grid, .prices-container, .gallery-grid, .reviews-slider {
    max-width: 1200px;
    margin: 0 auto;
}

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

.day-card {
    background: rgba(255,255,255,0.02);
    padding: 30px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.day-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-glow);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.04);
}

.day-name {
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prices-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

.price-category h3 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #fff;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.price-item:hover {
    padding-left: 10px;
    border-color: var(--gold-dim);
}

.price-name { font-size: 0.95rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.price-value { font-weight: 600; color: var(--gold); }

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-img {
    aspect-ratio: 4/5;
    background: #111;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.gallery-img:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border: 2px solid var(--gold);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: 0.3s ease;
    pointer-events: none;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}
.lightbox-close:hover { color: var(--gold); }

/* --- REVIEWS --- */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.06); /* Plus opaque */
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2); /* Bordure dorée légère */
    position: relative;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px); /* Effet de flou sur le fond pour détacher le texte */
}

.review-card:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.review-text { 
    font-style: italic; 
    color: #ffffff; /* Texte en blanc pur pour la lisibilité */
    margin-bottom: 20px; 
    font-size: 0.95rem;
}
.review-author { font-weight: 700; color: var(--gold); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* --- MAP & FOOTER --- */
.map-section { padding: 0; height: 500px; position: relative; }
iframe { width: 100%; height: 100%; border: none; filter: grayscale(1) invert(0.9) contrast(1.2); transition: 0.5s; pointer-events: auto; } /* Map needs events */
iframe:hover { filter: grayscale(0.5) invert(0.9) contrast(1.1); }

.map-overlay-info {
    position: absolute;
    top: 50%; left: 10%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.9);
    padding: 40px;
    border-left: 3px solid var(--gold);
    width: 350px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
}

footer {
    background: #050505;
    padding: 80px 20px 40px;
    text-align: center;
    border-top: 1px solid #111;
}

.social-link {
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin: 0 15px;
    transition: 0.3s;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; width: 0; height: 1px;
    background: var(--gold);
    transition: 0.3s;
}

.social-link:hover { color: var(--gold); }
.social-link:hover::before { width: 100%; }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-gold { 0% { box-shadow: 0 0 20px var(--gold-dim); } 50% { box-shadow: 0 0 40px var(--gold-glow); } 100% { box-shadow: 0 0 20px var(--gold-dim); } }
@keyframes ripple { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(2.5); opacity: 0; } }

@media (max-width: 768px) {
    header { padding: 0 15px; }
    
    .nav-links {
        position: fixed;
        top: 0; right: -100%; width: 100%; height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        gap: 40px;
    }
    
    .nav-links a { font-size: 1.2rem; }
    .nav-links.active { right: 0; }
    .mobile-menu-btn { display: block; }
    
    section { padding: 60px 5%; }
    
    h1 { 
        font-size: 2.2rem; 
        letter-spacing: 1px; 
        margin-bottom: 20px;
    }
    
    .subtitle { font-size: 0.9rem; }

    /* --- HORAIRES COMPACTS MOBILE --- */
    .schedule-grid {
        display: flex;
        flex-direction: column;
        gap: 8px; /* Espace réduit entre les jours */
    }

    .day-card {
        display: flex;
        justify-content: space-between; /* Jour à gauche, Heure à droite */
        align-items: center;
        padding: 12px 15px; /* Carte fine */
        text-align: left;
        width: 100%;
    }

    .day-name {
        margin-bottom: 0;
        font-size: 0.9rem;
    }

    .day-hours {
        font-size: 0.9rem;
        font-weight: 400;
    }

    /* --- GALERIE MOBILE --- */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    /* --- CONTACT & FOOTER FIX --- */
    .map-section {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 40px; /* Espace supplémentaire avant le footer */
    }

    .map-overlay-info {
        position: relative; top: auto; left: auto; transform: none;
        width: 100%; border: none; border-top: 2px solid var(--gold);
        padding: 30px 20px;
        text-align: center;
    }

    .map-section iframe {
        height: 300px;
    }

    footer {
        padding-top: 20px; /* Séparation nette */
    }

    .social-links {
        margin-bottom: 20px;
        gap: 20px;
        flex-wrap: wrap; /* Évite que ça déborde */
    }
}
