/* Template hotel2 Styles */
:root {
            --bg-dark: #1a1a1a;
            --bg-sidebar: #141414;
            --gold: #d4af37;
            --bronze: #b08d57;
            --text-muted: #a0a0a0;
            --text-light: #f5f5f5;
            --accent: #1e3d59;
        }
        
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .display-1 { font-size: 3.2rem !important; font-weight: 600 !important; letter-spacing: -0.5px !important; }
        .display-2 { font-size: 2.3rem !important; font-weight: 600 !important; letter-spacing: -0.5px !important; }
        .display-3 { font-size: 2.0rem !important; font-weight: 600 !important; letter-spacing: 0 !important; }
        .display-4 { font-size: 1.8rem !important; font-weight: 600 !important; }
        .display-5 { font-size: 1.5rem !important; font-weight: 600 !important; }

        /* === SIDEBAR NAVIGATION === */
        .sidebar {
            width: 280px;
            height: 100vh;
            position: fixed;
            left: 0;
            top: 0;
            background: #0d1117;
            border-right: 1px solid rgba(255,255,255,0.08);
            padding: 45px 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
        }

        .sidebar-brand {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.35rem;
            font-weight: 800;
            color: #ffffff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2.5px;
        }
        
        .nav-links {
            list-style: none;
            padding: 0;
            margin: 40px 0;
        }
        
        .nav-links li {
            margin-bottom: 12px;
        }
        
        .nav-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            padding: 10px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .nav-links a i {
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: #ffffff;
            background: rgba(212, 175, 55, 0.15);
            border-left: 3px solid var(--gold);
        }

        .nav-links a:hover i,
        .nav-links a.active i {
            color: var(--gold);
        }

        .hover-gold:hover {
            color: var(--gold) !important;
            opacity: 1 !important;
        }
        
        /* === MAIN CONTENT === */
        .main-wrapper {
            margin-left: 300px;
            min-height: 100vh;
            padding: 0;
        }
        
        /* === BUTTONS === */
        .btn-modern {
            padding: 15px 35px;
            border-radius: 0;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            font-size: 0.85rem;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }
        
        .btn-modern-gold {
            background-color: var(--gold);
            color: #000;
            border: none;
        }
        
        .btn-modern-gold:hover {
            background-color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        
        .btn-modern-outline {
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            background: transparent;
        }
        
        .btn-modern-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        /* Responsive Sidebar */
        @media (max-width: 991px) {
            .sidebar {
                width: 100%;
                height: auto;
                position: relative;
                padding: 20px;
                flex-direction: row;
                align-items: center;
            }
            .sidebar-brand { margin-bottom: 0; }
            .nav-links { display: none; }
            .main-wrapper { margin-left: 0; }
        }

        /* FORCE VISIBILITY */
        [data-aos] { opacity: 1 !important; transform: none !important; visibility: visible !important; }
    
        /* 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; }
        }

