/* Template travel Styles */
:root {
            --primary: #1a2a1d; /* Deep Forest */
            --accent: #d4a373; /* Elegant Gold/Sand */
            --bg-body: #f8f6f2; /* Warm Paper */
            --white: #ffffff;
            --text-dark: #2c3e50;
            --text-muted: #7f8c8d;
        }
        
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }
        
        h1, h2, h3 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        /* Immersive Navbar */
        .navbar {
            padding: 2rem 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(to bottom, rgba(26,42,29,0.8) 0%, rgba(26,42,29,0) 100%);
            z-index: 1050; /* Keep z-index */
        }
        .navbar.scrolled {
            padding: 1rem 0;
            background: rgba(26,42,29,0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .navbar-brand {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            letter-spacing: 2px;
        }
        .navbar-brand span { font-weight: 300; opacity: 0.7; font-size: 0.9rem; margin-left: 5px; }
        .nav-link {
            color: rgba(255,255,255,0.7) !important;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 3px;
            margin: 0 1.5rem;
            transition: all 0.3s;
            position: relative;
        }
        .nav-link:hover, .nav-link.active { color: var(--accent) !important; }
        
        .btn-nomad {
            background: var(--accent);
            color: var(--primary) !important;
            padding: 1.1rem 2.2rem;
            border-radius: 0;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.75rem;
            transition: all 0.4s;
            border: 1px solid var(--accent);
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .btn-nomad:hover {
            background: transparent;
            color: white !important;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .btn-outline-nomad {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            color: white !important;
            padding: 1.1rem 2.2rem;
            border-radius: 0;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.75rem;
            transition: all 0.4s;
            display: inline-block;
            text-decoration: none;
        }
        .btn-outline-nomad:hover {
            color: var(--white) !important;
        }

        section { padding: 8rem 0; }
        .py-10 { padding: 10rem 0; }

        /* Custom Cursor for Travel */
        #cursor-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s;
        }
        
        #cursor-ring {
            width: 40px;
            height: 40px;
            border: 1px solid var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
        }

        /* Footer Travel */
        footer {
            background: var(--primary);
            color: rgba(255,255,255,0.7);
            padding: 8rem 0 4rem;
        }

        footer h5 {
            color: var(--white);
            margin-bottom: 2rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
        }

        footer a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            display: block;
            margin-bottom: 1rem;
            transition: all 0.3s;
        }

        footer a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            display: block;
        }
        .footer-logo span { color: var(--accent-color); }
        .white { color: white; }
    
        /* 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; }
        }

