  
:root { 
    --gold: #D4AF37; 
    --dark-gold: #996515;
    --black: #0a0a0a;
}

body { font-family: 'Poppins', sans-serif; background: #ffffff; color: gold; overflow-x: hidden; }
        .texto-gold { color: var(--gold); }
        .bgo-gold { background-color: var(--gold); }
        .border-gold { border-color: var(--gold); }
        .text-neon-gold { text-shadow: 0 0 10px #D4AF37; }
        .card-hover:hover { transform: translateY(-10px); transition: 0.3s;background-color: #ffffff;}
        
        /* Styles spécifiques pour le contenu additionnel */
        h2 { font-family: 'Playfair Display', serif; }
        @property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
        .neon-gold-card { position: relative; background: #111; border-radius: 20px; padding: 2px; overflow: hidden; transition: transform 0.3s ease; }
        .neon-gold-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from var(--angle), transparent, var(--gold), transparent 30%, var(--gold), transparent); animation: spin 4s linear infinite; }
        .neon-gold-card::after { content: ''; position: absolute; inset: 3px; background: #121212; border-radius: 18px; }
        @keyframes spin { from { --angle: 0deg; } to { --angle: 360deg; } }
        .scroll-gallery { display: flex; gap: 20px; overflow-x: auto; padding: 20px 0; scrollbar-width: none; }
        .scroll-gallery::-webkit-scrollbar { display: none; }
        .promo-photo { flex: 0 0 300px; height: 200px; border-radius: 15px; object-fit: cover; border: 1px solid var(--dark-gold); filter: grayscale(40%); transition: all 0.3s ease; }
        .promo-photo:hover { filter: grayscale(0%); border-color: var(--gold); transform: scale(1.05); }
        .inner-content { position: relative; z-index: 2; display: flex; flex-direction: column; height: 100%; }
        .gold-text { color: var(--gold); }
        .btn-gold { background: linear-gradient(135deg, var(--gold), var(--dark-gold)); color: black; font-weight: 600; }
    
body {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10+ et Edge */
  user-select: none; /* Standard */
  -webkit-user-drag: none;
}
.protected-image {
    /* Empêche toute interaction souris/tactile */
    pointer-events: none;
    
    /* Empêche la sélection de l'image */
    user-select: none;
    -webkit-user-drag: none;
}

             
        body { margin: 0; overflow-x: hidden; font-family: 'Inter', sans-serif; background: #050505; color: #e5e7eb; }
        #floating-btn { position: fixed !important; top: 20px !important; left: 20px !important; width: 30px; height: 30px; background: #00008B; border: 2px solid #d4af37; cursor: pointer; display: flex !important; align-items: center; justify-content: center; color: #d4af37; font-size: 20px; z-index: 10000 !important; box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); transition: all 0.3s ease; }
        #sidebar { position: fixed; top: 0; left: 0; height: 100vh; width: 320px; transform: translateX(-100%); transition: transform 0.3s ease-in-out; background: #0a0a0a; border-right: 2px solid #d4af37; z-index: 99999 !important; display: flex; flex-direction: column; }
        #sidebar.open { transform: translateX(0); }
        .gold-gradient-text { background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .menu-item { transition: all 0.2s; padding: 12px; cursor: pointer; color: #d1d5db; display: flex; align-items: center; }
        .menu-item:hover { background: rgba(212, 175, 55, 0.1); border-left: 4px solid #d4af37; }
        .submenu { display: none; padding-left: 40px; }
        .menu-item:hover .submenu { display: block; }

        /* Ajoutez ou modifiez ces lignes dans votre <style> */
nav {
    flex-grow: 1;
    overflow-y: auto; /* Active le défilement vertical */
    scrollbar-width: thin; /* Pour Firefox */
    scrollbar-color: #d4af37 #000; /* Personnalisation barre */
}

/* Personnalisation pour Chrome/Safari/Edge */
nav::-webkit-scrollbar {
    width: 6px;
}
nav::-webkit-scrollbar-thumb {
    background-color: #d4af37;
    border-radius: 10px;
}


   .footer {
            background-color: #00008B;
            color: var(--text-light);
            padding: 80px 20px 40px;
            border-top: 2px solid var(--gold);
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }

        .footer-column h4 {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 25px;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-bottom: 1px solid #333;
            padding-bottom: 10px;
        }

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

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--gold);
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            background: transparent;
            border: 1px solid var(--gold);
            padding: 10px;
            color: white;
            width: 100%;
        }

        .newsletter-form button {
            background-color: var(--gold);
            color: black;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-weight: bold;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .footer-container { flex-direction: column; }
        }
