/* --- VARIABLES & RESET --- */
:root {
    --bg-color: #0D0D0D;
    --gold: #D4AF37;
    --emerald: #236B48;
    --text-main: #F5F5F5;
    --text-muted: #cccccc;
    --bordeaux: #6A040F;
    --font-title: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-title);
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: var(--gold);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--emerald);
}

/* --- NAVIGATION --- */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(150, 16, 16, 0.95);
    border-bottom: 1px solid var(--gold);
    z-index: 1000;
    padding: 15px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    font-size: 1.1rem;
    font-weight: bold;
    position: relative;
    padding: 5px 0;
    color: var(--text-main);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* --- HERO SECTION --- */
.hero {
    height: 90vh; /* Impact visuel fort */
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/fond.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}
/* --- Index --- */
 /* Styles spécifiques pour le format STORY vertical (Complémentaires à style.css) */
.barman-section {
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 80px 10%;
            background: #0a0a0a;
            flex-wrap: wrap;
        }
        .barman-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        .barman-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.2); /* Lueur dorée */
        }
        .barman-text {
            flex: 1;
            min-width: 300px;
        }

        .energy-caption {
            color: var(--gold);
            font-family: var(--font-title);
            font-size: 1.3rem;
            margin-bottom: 15px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Surcharge de la galerie existante pour format Story */
        .story-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            padding: 20px 0;
        }

        .story-gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            border: 1px solid #333;
            /* Forcer le format Story vertical */
            aspect-ratio: 9 / 16; 
        }

        .story-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, filter 0.5s ease;
            filter: brightness(0.8) grayscale(20%);
        }

        .story-gallery-item:hover img {
            transform: scale(1.1);
            filter: brightness(1.1) grayscale(0%);
        }

        /* Reprise de la légende existante mais adaptée au format long */
        .photo-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: var(--gold);
            padding: 30px 15px 15px; /* Plus de padding en bas */
            font-size: 1rem;
            font-weight: bold;
            font-family: var(--font-title);
            text-transform: uppercase;
        }

        /* Responsive Mobile */
        @media (max-width: 768px) {
            .story-gallery-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur mobile pour le format portrait */
                gap: 10px;
            }
            .photo-caption {
                font-size: 0.8rem;
                padding: 20px 10px 10px;
            }
        }
/* --- BOUTONS (CTA) --- */
.btn-gold {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    margin: 10px;
    transition: all 0.3s ease;
}

.btn-gold:hover, .btn-gold.filled {
    background-color: var(--gold);
    color: var(--bg-color);
}

/* --- SECTIONS GÉNÉRALES --- */
.section {
     background: #1a1a1a;
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--emerald);
    margin: 10px auto 0;
}

/* --- AVIS CLIENTS (Social Proof) --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #1a1a1a;
    padding: 25px;
    border-left: 3px solid var(--gold);
    text-align: left;
}

.stars { color: var(--gold); }
.review-author { display: block; margin-top: 15px; font-style: italic; color: var(--text-muted); font-size: 0.9rem; }

/* --- PAGE CARTE (PDF & Teaser) --- */
.pdf-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

/* --- PAGE EXPÉRIENCE (Gallery) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    border: 1px solid #333;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- PAGE CONTACT --- */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.info-box, .map-box {
    flex: 1 1 400px;
    background: #1a1a1a;
    padding: 30px;
    border: 1px solid #333;
}

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

.info-item i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 5px;
}






/* RESPONSIVE */
@media (max-width: 900px) {
    .tiktok-experience-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .tiktok-profile-card {
        max-width: 350px;
    }
}
/* --- FOOTER --- */
footer {
    background-color: #000;
    padding: 50px 20px 20px;
    border-top: 4px solid var(--gold);
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 15px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #666;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    nav ul { flex-direction: column; text-align: center; gap: 10px; }
    .contact-wrapper { flex-direction: column; }
}
.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: var(--gold);
    padding: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    transform: translateY(100%);
    transition: 0.3s;
}

.gallery-item:hover .photo-caption {
    transform: translateY(0);
}

/* --- Styles Sliders Story --- */
.story-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 9/16; /* Force le format Story peu importe la taille de l'écran */
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--gold);
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.story-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.story-slide.active { opacity: 1; }

.story-slide img, .story-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85); /* Assombrit légèrement pour bien lire le texte */
}

.story-overlay {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    text-align: center;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: bold;
    font-family: var(--font-title);
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

.story-progress {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.progress-segment {
    height: 3px;
    background: rgba(255,255,255,0.3);
    flex: 1;
    border-radius: 2px;
}

.progress-fill {
    height: 100%;
    background: var(--gold);
    width: 0%;
    border-radius: 2px;
}

.story-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 20px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.story-nav:hover { opacity: 1; }
.story-nav.prev { left: 0; }
.story-nav.next { right: 0; }

/* --- SECTION RESEAUX DOUBLE (STORY & TIKTOK) --- */
.social-media-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    flex: 1;
}

.social-column .energy-caption {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--text-main);
}

.social-column .energy-caption i {
    color: var(--gold);
    margin-right: 10px;
}

.social-column .btn-gold {
    width: 100%;
    margin-top: 20px;
    border-radius: 5px;
}


/* --- MENU BURGER --- */

/* Masqué par défaut sur ordinateur */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--gold);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .burger {
        display: flex; 
        position: absolute;
        left: 20px;
        top: -8px;
    }

    nav ul {
        display: none; 
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 70%;
        background-color: rgba(13, 13, 13, 0.98);
        border-left: 2px solid var(--gold);
        padding-top: 100px;
        z-index: 1000;
        transition: transform 0.3s ease-in;
    }

    nav ul.nav-active {
        display: flex;
    }

    nav ul li {
        margin: 20px 0;
    }

    .toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .toggle span:nth-child(2) {
        opacity: 0;
    }
    .toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}