 :root {
            --gold: #d4af37;
            --light-gold: #e6c567;
            --dark-gold: #b8860b;
            --ivory: #f9f6f0;
            --charcoal: #333333;
            --soft-pink: #f8e6e0;
            --mauve: #c8a2c8;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            line-height: 1.6;
            color: var(--charcoal);
            background-color: var(--ivory);
            overflow-x: hidden;
            padding-top: 80px;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--charcoal);
        }
        
        /* Navbar Styles */
        #navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(249, 246, 240, 0.95);
            transition: var(--transition);
            z-index: 1000;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        #navbar.scrolled {
            background-color: rgba(249, 246, 240, 0.98);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 70px;
            transition: var(--transition);
        }
        
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-left: 12px;
            color: var(--gold);
            font-weight: 600;
        }
		.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.responsive-logo {
    max-width: 100%;
    height: auto;
    width: 400px; /* You can adjust this max width as needed */
}
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: var(--charcoal);
            transition: var(--transition);
            position: relative;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: var(--transition);
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: var(--gold);
        }
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }
        
        .hamburger {
            display: block;
            width: 30px;
            height: 2px;
            background: var(--charcoal);
            position: relative;
            transition: var(--transition);
        }
        
        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: inherit;
            left: 0;
            transition: var(--transition);
        }
        
        .hamburger::before { top: -8px; }
        .hamburger::after { top: 8px; }
        
        .mobile-menu-toggle.active .hamburger {
            background: transparent;
        }
        
        .mobile-menu-toggle.active .hamburger::before {
            transform: rotate(45deg);
            top: 0;
        }
        
        .mobile-menu-toggle.active .hamburger::after {
            transform: rotate(-45deg);
            top: 0;
        }
        
        /* Home Section */
        #home {
            padding-top: 0;
        }
        
        .hero-container {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('pool_main.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
        }
        
        .hero-content h1 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
            color: white;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 2.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
            font-style: italic;
            line-height: 1.4;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 3rem;
        }
        
        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            font-size: 1.1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .primary-btn {
            background-color: var(--gold);
            color: white;
            border: 2px solid var(--gold);
        }
        
        .primary-btn:hover {
            background-color: var(--dark-gold);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .secondary-btn {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .secondary-btn:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .gold-divider {
            width: 100px;
            height: 3px;
            background-color: var(--gold);
            margin: 2rem auto;
        }
        
        /* About Section */
        #about {
            padding: 10px 20px;
            background-color: white;
            position: relative;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .about-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-image:before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            border-top: 3px solid var(--gold);
            border-left: 3px solid var(--gold);
            z-index: 1;
        }
        
        .about-image:after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            border-bottom: 3px solid var(--gold);
            border-right: 3px solid var(--gold);
            z-index: 1;
        }
        
        .about-text-container h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .about-text-container h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--gold);
        }
        
        .about-text {
            margin-top: 2.5rem;
            color: #555;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
        }
        
        .signature {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 1.3rem;
            color: var(--gold);
            margin-top: 2rem;
            display: block;
        }
/* Gallery Section */
#gallery {
    padding: 5px 5px;
    background-color: var(--ivory);
    position: relative;
}

.gallery-slideshow {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    text-align: center;
}

/* Navigation arrows */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
}

.slide-nav:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.slide-nav.prev {
    left: 20px;
}

.slide-nav.next {
    right: 20px;
}

/* Slide indicators */
.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--gold);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--light-gold);
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-slideshow {
        margin: 2rem auto 0;
    }
    
    .slideshow-container {
        height: 400px;
    }
    
    .slide-caption {
		bottom: 45px;
        font-size: 1.1rem;
        padding: 1.5rem 1rem 1rem;
    }
    
    .slide-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slide-nav.prev {
        left: 10px;
    }
    
    .slide-nav.next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .slideshow-container {
        height: 300px;
    }
    
    .slide-caption {
		bottom: 35px;
        font-size: 1rem;
        padding: 1rem 0.5rem 0.5rem;
    }
}
        
        /* Services Section */
        #services {
            padding: 80px 20px;
            background-color: var(--ivory);
            position: relative;
            overflow: hidden;
        }
        
        #services:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="%23ffffff"/></svg>') no-repeat center top;
            background-size: 100% 100%;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .container h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.7;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .service-item {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid rgba(212, 175, 55, 0.15);
            position: relative;
            overflow: hidden;
        }
        
        .service-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: var(--gold);
            transition: var(--transition);
        }
        
        .service-item:hover:before {
            height: 100%;
        }
        
        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        
        .service-item:hover .service-icon {
            transform: scale(1.2);
            color: var(--dark-gold);
        }
        
        .service-item h3 {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            color: var(--charcoal);
        }
        
        .service-description {
            color: #555;
            line-height: 1.8;
            text-align: left;
            font-size: 1.1rem;
        }
        
        .service-price {
            font-weight: 600;
            color: var(--dark-gold);
            margin-top: 1rem;
            display: block;
        }
        .service-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    margin-bottom: 1rem;
}
        /* Reviews Section */
        #reviews {
            padding: 10px 20px;
            background: linear-gradient(to bottom, var(--ivory) 0%, white 100%);
            position: relative;
        }
        
        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .review-card {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.15);
            position: relative;
            transition: var(--transition);
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .review-card:before {
            content: """;
            position: absolute;
            top: 20px;
            left: 20px;
            font-family: 'Playfair Display', serif;
            font-size: 6rem;
            color: rgba(212, 175, 55, 0.1);
            line-height: 1;
        }
        
        .rating {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }
        
        .review-text {
            color: #555;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            position: relative;
            z-index: 2;
        }
        
        .reviewer {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .initial {
            width: 50px;
            height: 50px;
            background: var(--gold);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .reviewer-info {
            text-align: left;
        }
        
        .reviewer-name {
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 0.3rem;
        }
        
        .review-source {
            color: #777;
            font-size: 0.9rem;
        }
        
        /* Contact Section */
        #contact {
            padding: 10px 20px;
            background-color: white;
            position: relative;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
            max-width: 1200px;
            margin: 3rem auto 0;
        }
        
        .contact-details {
            text-align: left;
        }
        
        .contact-details h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--charcoal);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.8rem;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--ivory);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.3rem;
            flex-shrink: 0;
            margin-right: 1.5rem;
            transition: var(--transition);
        }
        
        .contact-item:hover .contact-icon {
            background: var(--gold);
            color: white;
            transform: rotate(10deg);
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-text h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--charcoal);
        }
        
        .contact-text p, .contact-text a {
            color: #666;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        
        .contact-text a:hover {
            color: var(--gold);
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom right, var(--ivory), #e0d8c9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        /* Footer */
        footer {
            background-color: var(--charcoal);
            padding: 3rem 0 2rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            padding: 0 20px;
        }
        
        .footer-logo {
            display: flex;
            flex-direction: column;
        }
        
        .footer-logo img {
            
           height: 75%;
            margin-bottom: 1.5rem;
        }
        
        .footer-about {
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .social-links a:hover {
            background: var(--gold);
            transform: translateY(-3px);
        }
        
        .footer-title {
            font-size: 1.4rem;
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--gold);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        
        .footer-links a:before {
            content: '•';
            color: var(--gold);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .footer-links a:hover {
            color: var(--gold);
            padding-left: 5px;
        }
        
        .hours-list {
            list-style: none;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hours-list li span:first-child {
            font-weight: 500;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3.8rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 2rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .service-description {
                font-size: 1rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
			.responsive-logo {
        width: 60%;
    }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .container h2 {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
        }
