 :root {
            --primary-gold: #C5A059;
            --deep-navy: #020617;
            --soft-gold: #E2D1B0;
        }

        body { 
            font-family: 'Poppins', sans-serif; 
            background-color: var(--deep-navy);
            overflow-x: hidden;
        }

        .font-playfair { font-family: 'Playfair Display', serif; }

        /* Glassmorphism Avancé */
        .glass-nav {
            background: rgba(2, 6, 23, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .glass-dropdown {
            background: rgba(2, 6, 23, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(197, 160, 89, 0.15);
        }

        /* Animations & Transitions Custom */
        .nav-link-hover {
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-link-hover::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--primary-gold);
            transition: width 0.3s ease;
        }
        .nav-link-hover:hover::after {
            width: 100%;
        }

        /* Scrollbar Design */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--deep-navy); }
        ::-webkit-scrollbar-thumb { 
            background: linear-gradient(to bottom, var(--primary-gold), var(--soft-gold)); 
            border-radius: 4px;
        }

        /* Animation Logo */
        .logo-transition { 
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
        }

        [x-cloak] { display: none !important; }