/* Template spa Styles */
:root {
            /* Delicate Palette */
            --bg-color: #F9F8F6; /* Warm Paper */
            --text-main: #5A5A5A;
            --text-heading: #2C2C2C;
            --accent-gold: #D4AF37; /* Muted Gold */
            --accent-soft: #E6E2DD; /* Beige details */
            --nav-height: 90px;
        }
        
        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            line-height: 1.9;
            overflow-x: hidden;
        }
        
        /* Typography overrides */
        h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3 {
            font-family: 'Raleway', sans-serif;
            color: var(--text-heading);
            font-weight: 400 !important;
            letter-spacing: -0.01em;
        }

        h2, .h2 { font-size: 3.5rem; }
        
        strong { font-weight: 500; color: #000; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-color); }
        ::-webkit-scrollbar-thumb { background: #d1d1d1; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #b0b0b0; }

        /* === PRELOADER === */
        #preloader {
            position: fixed; top:0; left:0; width:100%; height:100%;
            background: #ffffff; z-index: 9999;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
        .loader-spinner {
            width: 50px; height: 50px;
            border: 2px solid rgba(212, 175, 55, 0.1);
            border-top: 2px solid var(--accent-gold);
            border-radius: 50%;
            animation: spin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
            margin-bottom: 20px;
        }
        .loader-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--text-heading);
            letter-spacing: 5px;
            text-transform: uppercase;
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        
        /* === NAVIGATION === */
        .navbar-spa {
            padding: 20px 40px;
            background: rgba(249, 248, 246, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            border-bottom: 1px solid rgba(0,0,0,0.03);
        }
        
        .navbar-brand span {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            font-weight: 300;
            letter-spacing: -1px;
            position: relative;
        }
        .navbar-brand span::after {
            content: ''; position: absolute; top: 10px; right: -15px;
            width: 8px; height: 8px; background: var(--accent-gold); border-radius: 50%;
        }

        .nav-link {
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 2px;
            font-weight: 400;
            color: var(--text-heading) !important;
            margin: 0 15px;
            position: relative;
        }
        
        .nav-link::after {
            content:''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
            width: 0; height: 1px; background: var(--accent-gold); transition: 0.3s;
        }
        .nav-link:hover::after, .nav-link.active::after { width: 100%; }

        /* === SECTIONS CUSTOMIZATION === */
        /* Force generic sections to look Premium */
        section { 
            padding: 120px 0; 
            position: relative;
        }

        /* Hero override */
        .hero-section {
            height: 90vh; /* Full height aesthetics */
            display: flex; align-items: center;
        }
        
        /* Decoration */
        .deco-line {
            width: 1px; height: 100px; background: var(--accent-gold);
            margin: 0 auto 30px; display: block;
        }

        /* Buttons */
        .btn-primary {
            background: transparent;
            color: var(--text-heading);
            border: 1px solid var(--text-heading);
            border-radius: 0;
            padding: 15px 40px;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 2px;
            transition: all 0.5s ease;
        }
        .btn-primary:hover {
            background: var(--text-heading);
            color: #fff;
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background: #fff;
            padding: 100px 0;
            border-top: 1px solid var(--accent-soft);
            text-align: center;
        }
        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            margin-bottom: 2rem;
            display: inline-block;
        }

    
        /* Mobile Menu Optimization - Titan Elite Global Patch */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: white !important;
                padding: 40px !important;
                margin-top: 15px !important;
                box-shadow: 0 40px 100px rgba(0,0,0,0.2) !important;
                border-top: 4px solid var(--primary-color, var(--pizza-red, var(--acc-navy, var(--gym-green, #000)))) !important;
                max-height: 85vh !important;
                overflow-y: auto !important;
                border-radius: 0 0 20px 20px !important;
            }
            .navbar-nav .nav-link {
                color: #333 !important;
                padding: 15px 0 !important;
                border-bottom: 1px solid rgba(0,0,0,0.05) !important;
                text-align: center !important;
            }
            .navbar-nav li:last-child .nav-link { border-bottom: none !important; }
            .navbar-brand { font-size: 1.4rem !important; }
            .navbar-toggler { border: none !important; padding: 10px !important; }
        }

        /* Safe fallback for animations */
        [data-aos] {
            opacity: 1 !important;
            transform: none !important;
            visibility: visible !important;
        }

