  :root {
            --resort-red: #d9534f; /* Main theme color */
            --bg-dark: #0f0f0f;
            --text-light: #dcdcdc;
            --sidebar-width: 260px;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6, .heading-font {
            font-family: 'Oswald', sans-serif;
        }

        /* ==========================================
           Sidebar Design
           ========================================== */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: var(--sidebar-width);
            height: 100vh;
            background-color: #ffffff;
            color: #333;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            border-right: 1px solid #ddd;
        }

        /* Logo Design */
        .logo-wrapper {
            padding: 30px 0 10px;
            text-align: center;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .logo-circle {
            width: 140px;
            height: 140px;
            background-color: var(--resort-red);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            border: 4px solid #e88684;
            box-shadow: 0 0 0 2px var(--resort-red);
            position: relative;
            z-index: 2;
        }
        .logo-circle .cursive {
            font-family: 'Great Vibes', cursive;
            font-size: 2.2rem;
            line-height: 1;
            margin-top: 10px;
        }
        .logo-circle .sub-text {
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            letter-spacing: 1px;
            margin-top: -5px;
        }
        .logo-ribbon {
            width: 80px;
            height: 40px;
            background-color: var(--resort-red);
            position: absolute;
            bottom: -5px;
            z-index: 1;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 70%, 0 100%);
        }

        /* Navigation */
        .sidebar-nav {
            margin-top: 20px;
            flex-grow: 1;
        }
        .sidebar-nav .nav-link {
            color: #333;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 15px 20px;
            text-align: center;
            border-top: 1px solid #f0f0f0;
            transition: all 0.3s;
        }
        .sidebar-nav .nav-item:last-child .nav-link {
            border-bottom: 1px solid #f0f0f0;
        }
        .sidebar-nav .nav-link:hover, .sidebar-nav .nav-link.active {
            color: var(--resort-red);
        }

        /* Sidebar Footer (Social & Copyright) */
        .sidebar-footer {
            padding: 20px;
            text-align: center;
        }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .social-icons a {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: 2px solid #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            text-decoration: none;
            transition: 0.3s;
            font-size: 0.9rem;
        }
        .social-icons a.rss:hover { border-color: #f26522; color: #f26522; }
        .social-icons a.fb:hover { border-color: #3b5998; color: #3b5998; }
        .social-icons a.skype:hover { border-color: #00aff0; color: #00aff0; }
        .social-icons a.tw:hover { border-color: #1da1f2; color: #1da1f2; }
        
        .copyright {
            font-size: 0.75rem;
            color: #666;
            font-weight: 600;
        }

        /* ==========================================
           Main Content Area
           ========================================== */
        .main-content {
            margin-left: var(--sidebar-width);
            min-height: 100vh;
            padding: 60px;
            position: relative;
        }
        
        /* Fixed Header Line Alignment */
        .section-header {
            display: flex;
            align-items: center;
            margin: 40px 0 30px;
        }
        .section-header::before, .section-header::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #333;
        }
        .section-header span {
            background-color: var(--resort-red);
            color: white;
            padding: 6px 20px;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 1px;
        }

        /* Home Page Typography */
        .welcome-text { font-size: 3.5rem; font-weight: 500; margin-bottom: 30px; }
        .welcome-text span { color: var(--resort-red); }
        .home-lead { font-size: 1.5rem; font-weight: 600; line-height: 1.4; margin-bottom: 20px; font-family: 'Oswald', sans-serif; }
        .contact-huge { font-size: 4rem; font-weight: 600; font-family: 'Oswald', sans-serif; margin-top: 50px; }
        .contact-huge span { color: var(--resort-red); }

        /* General UI Elements */
        .page-content { display: none; animation: fadeIn 0.4s; }
        .page-content.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* Facilities & Gallery Cards */
        .facility-card {
            background: transparent;
            text-align: center;
            margin-bottom: 20px;
        }
        .facility-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border: 4px solid #fff;
            margin-bottom: 10px;
        }
        .facility-card h5 {
            font-family: 'Oswald', sans-serif;
            color: white;
            letter-spacing: 1px;
            font-size: 1.1rem;
        }

        .side-facility-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #222;
        }
        .side-facility-item img {
            width: 70px;
            height: 50px;
            object-fit: cover;
            border: 2px solid #fff;
            margin-right: 15px;
        }

        /* Gallery Filters */
        .gallery-filters {
            display: flex;
            gap: 5px;
            margin-bottom: 30px;
        }
        .filter-btn {
            background: #222;
            color: #888;
            border: none;
            padding: 5px 15px;
            font-size: 0.8rem;
            text-transform: uppercase;
            font-weight: 600;
            transition: 0.3s;
        }
        .filter-btn.active, .filter-btn:hover {
            background: var(--resort-red);
            color: white;
        }

        /* Form Controls Dark Theme */
        .form-dark {
            background-color: transparent;
            border: 1px solid #444;
            color: white;
            border-radius: 0;
            padding: 10px;
        }
        .form-dark:focus {
            background-color: #111;
            border-color: var(--resort-red);
            color: white;
            box-shadow: none;
        }
        .form-label { font-size: 0.85rem; color: #aaa; margin-bottom: 5px; }
        .btn-red {
            background-color: #222;
            color: white;
            border: 1px solid #444;
            padding: 8px 25px;
            border-radius: 0;
            transition: 0.3s;
        }
        .btn-red:hover {
            background-color: var(--resort-red);
            border-color: var(--resort-red);
        }

        /* Home Background Slider */
        .home-bg-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }
        .slider-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 15, 15, 0.8); /* Dark overlay text ko visible rakhne ke liye */
            z-index: 1;
        }
        .home-content-wrapper {
            position: relative;
            z-index: 2;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .sidebar { width: 100%; height: auto; position: relative; border-right: none; border-bottom: 1px solid #ddd; }
            .main-content { margin-left: 0; padding: 30px 15px; }
            .welcome-text { font-size: 2.5rem; }
            .contact-huge { font-size: 2.5rem; }
        }