:root {
            /* Couleurs principales */
            --black: #0a0a0a;
            --dark: #1a1a1a;
            --gray-dark: #2d2d2d;
            --gray: #4a4a4a;
            --gray-light: #6b6b6b;
            --gray-lighter: #8c8c8c;
            --gray-bg: #b8b8b8;
            --gray-soft: #d4d4d4;
            --white: #f5f5f5;
            --white-pure: #ffffff;
            
            /* Couleurs d'accent (à personnaliser) */
            --accent: #c9a55a;
            --accent-hover: #e0b86a;
            
            /* Typographie */
            --font-display: 'Bebas Neue', cursive;
            --font-body: 'Inter', sans-serif;
        }

        /* Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--dark);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ============================================
           HEADER — Navigation
           ============================================ */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container{
            width: 200px;
            height: 50px;
            align-items: center;
            justify-content: center;

        }


        .logo-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--gray-bg);
            transition: color 0.3s ease;
            letter-spacing: 0.05em;
        }

        nav a:hover, nav a.active {
            color: var(--white-pure);
        }

        /* MODIFIER : URL du lien "Mentions légales" si chemin différent */
        nav a.active {
            color: var(--accent);
        }

        .nav-cta {
            padding: 0.6rem 1.2rem;
            background: var(--black);
            color: var(--white-pure);
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: var(--gray-dark);
        }

        /* Menu hamburger mobile */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--white-pure);
            transition: 0.3s;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero-section {
            min-height: 40vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: var(--gray-dark);
            border: 1px solid var(--gray);
            border-radius: 50px;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            color: var(--accent);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 8vw, 5rem);
            letter-spacing: 0.1em;
            color: var(--white-pure);
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            font-weight: 300;
            color: var(--gray-bg);
            max-width: 600px;
        }

        /* ============================================
           NAVIGATION TABS — Sections
           ============================================ */
        .section-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            padding: 2rem;
            background: var(--black);
            position: sticky;
            top: 70px;
            z-index: 100;
        }

        .section-nav a {
            padding: 0.8rem 2rem;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gray-bg);
            border: 1px solid var(--gray-dark);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .section-nav a:hover,
        .section-nav a.active {
            background: var(--gray-dark);
            color: var(--white-pure);
            border-color: var(--gray);
        }

        /* ============================================
           CONTENT SECTIONS
           ============================================ */
        .legal-section {
            max-width: 900px;
            margin: 0 auto;
            padding: 4rem 2rem;
            border-bottom: 1px solid var(--gray-dark);
        }

        .legal-section:last-child {
            border-bottom: none;
        }

        .section-tag {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: var(--accent);
            color: var(--black);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            border-radius: 3px;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3rem);
            letter-spacing: 0.05em;
            color: var(--white-pure);
            margin-bottom: 2rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
        }

        .legal-content {
            color: var(--gray-bg);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .legal-content h3 {
            color: var(--white-pure);
            font-size: 1.1rem;
            font-weight: 500;
            margin: 2rem 0 1rem;
            letter-spacing: 0.02em;
        }

        .legal-content p {
            margin-bottom: 1rem;
        }

        .legal-content ul {
            margin: 1rem 0 1.5rem 1.5rem;
        }

        .legal-content li {
            margin-bottom: 0.5rem;
            position: relative;
        }

        .legal-content li::marker {
            color: var(--accent);
        }

        /* Champs à personnaliser - style distinctif */
        .customizable {
            background: rgba(201, 165, 90, 0.1);
            border-left: 3px solid var(--accent);
            padding: 1rem 1.5rem;
            margin: 1rem 0;
            font-style: italic;
            color: var(--gray-lighter);
            border-radius: 0 4px 4px 0;
        }

        /* ============================================
           FOOTER
           ============================================ */
        footer {
            background: var(--black);
            padding: 4rem 2rem 2rem;
            margin-top: 2rem;
        }

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

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            letter-spacing: 0.1em;
            color: var(--white-pure);
            margin-bottom: 1.5rem;
        }

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

        .footer-col li {
            margin-bottom: 0.75rem;
        }

        .footer-col a {
            font-size: 0.9rem;
            color: var(--gray-light);
            transition: color 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--accent);
        }

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

        .social-links a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-dark);
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent);
            color: var(--black);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid var(--gray-dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            font-size: 0.8rem;
            color: var(--gray);
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--accent);
        }

        /* MODIFIER : Copyright - mettre à jour l'année et le nom */
        .copyright {
            font-size: 0.8rem;
            color: var(--gray);
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--black);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
            }

            nav ul.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .section-nav {
                flex-wrap: wrap;
                gap: 0.5rem;
            }

            .section-nav a {
                padding: 0.6rem 1rem;
                font-size: 0.75rem;
            }

            .legal-section {
                padding: 3rem 1.5rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Scroll offset for fixed header */
        .section-anchor {
            scroll-margin-top: 150px;
        }