        :root {
            --primary-gold: #d2b289;
            --dark-bg: #2c2c2c;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: var(--dark-bg) !important;
            padding: 1rem 0;
        }
        
        .navbar-brand {
            text-decoration: none;
        }

        .navbar-logo {
            height: 80px;
            width: auto;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-gold) !important;
            margin: 0 0.5rem;
            transition: all 0.3s;
            font-weight: bold;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-gold) !important;
            border-bottom: 2px solid var(--primary-gold);
        }
        
        .hero-section {
            position: relative;
            height: 80vh;
            background-image: url('images/237228204-1.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .hero-text {
            position: relative;
            z-index: 1;
            color: #d2b289;
            font-size: 4.5rem;
            font-family: 'Exo', sans-serif;
            font-weight: 900;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        
        section {
            padding: 4rem 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
            color: var(--dark-bg);
            text-align: center;
        }
        
        .about-section {
            background-color: var(--dark-bg);
        }
        
        .about-section .section-title {
            color: var(--primary-gold);
        }
        
        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: white;
        }
        
        .amenity-card,
        .feature-card {
            text-align: center;
            padding: 2rem;
            margin-bottom: 2rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .amenity-card:hover,
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .amenity-icon,
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }
        
        .amenity-card p,
        .feature-card p {
            font-size: 1.1rem;
            color: var(--dark-bg);
            margin: 0;
        }
        
        .gallery-section {
            background-color: #f8f9fa;
        }
        
        .gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
            cursor: pointer;
        }
        
        .gallery-img:hover {
            transform: scale(1.05);
        }
        
        .map-section {
            padding: 0;
        }
        
        .map-container {
            width: 100%;
            height: 450px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        .contact-section {
            background-color: var(--dark-bg);
            color: white;
        }
        
        .contact-item {
            text-align: center;
            padding: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }
        
        .contact-item p {
            margin: 0;
            font-size: 1.1rem;
        }
        
        .contact-item a {
            color: inherit;
            text-decoration: none;
        }
        
        .contact-item a:hover {
            color: inherit;
            text-decoration: none;
        }
        
        @media (max-width: 768px) {
            .hero-text {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
