/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

:root {
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #c8e6c9;
    --accent-color: #25d366;
    --accent-dark: #128c7e;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #fff;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2 {
    margin-bottom: 20px;
    color: #2e7d32;
}

section {
    padding: 60px 0;
}

/* Header Styles */
.sticky-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex: 0 0 auto;
    max-width: 200px;
    height: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.logo-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

/* Navigation Styles */
.main-nav {
    margin-left: 20px;
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-container {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover, 
.nav-menu a.active {
    color: #2e7d32;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2e7d32;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, 
.nav-menu a.active::after {
    width: 100%;
}

.booking-link {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.booking-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.booking-link::after {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #2e7d32;
    transition: all 0.3s ease;
}

/* Hero Slider Styles */
.hero-slider {
    padding: 0;
    overflow: hidden;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-container {
    display: flex;
    width: 400%;
    height: 70vh; /* Responsive height based on viewport */
    max-height: 600px; /* Maximum height */
    min-height: 400px; /* Minimum height */
    animation: slide 20s infinite;
    position: relative;
}

.slide {
    width: 25%;
    overflow: hidden;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.slide:hover img {
    transform: scale(1.05);
}

/* Slider Navigation Controls */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    transform: translateY(-50%);
}

.slider-nav button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-nav button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-25%);
    }
    45% {
        transform: translateX(-25%);
    }
    50% {
        transform: translateX(-50%);
    }
    70% {
        transform: translateX(-50%);
    }
    75% {
        transform: translateX(-75%);
    }
    95% {
        transform: translateX(-75%);
    }
    100% {
        transform: translateX(0);
    }
}

/* About Section Styles */
.about {
    background-color: #fff;
}

.about p {
    font-size: 1.1rem;
    text-align: justify;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Features & Amenities Styles */
.features {
    background-color: #f1f8e9;
}

.amenities-list {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.amenities-list li {
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
}

.amenities-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

/* Location Section Styles */
.location {
    background-color: #fff;
}

.location-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.directions {
    background-color: #f1f8e9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.directions h3 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.direction-item {
    margin-bottom: 20px;
}

.direction-item h4 {
    color: #2e7d32;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.direction-item p {
    line-height: 1.5;
}

/* Booking CTA Styles */
.booking-cta {
    background-color: #e8f5e9;
}

.cta-box {
    background-color: #c8e6c9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.phone-numbers {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2e7d32;
    margin: 15px 0;
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.whatsapp-btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: var(--accent-dark);
}

.floating-whatsapp .whatsapp-icon {
    width: 30px;
    height: 30px;
    margin: 0;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 10px 0;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Testimonials Styles */
.testimonials {
    background-color: #e8f5e9;
    padding: 60px 0;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin: 30px auto;
    max-width: 800px;
}

.testimonial-slide {
    padding: 20px;
}

.testimonial-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: #e0e0e0;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: right;
    font-weight: bold;
    color: var(--primary-color);
}

.testimonial-dots {
    text-align: center;
    margin-top: 20px;
}

.testimonial-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-info, .footer-links {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-info h3, .footer-links h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-info p {
    margin-bottom: 8px;
    color: #ccc;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-content {
        flex-direction: row;
        align-items: center;
    }
    
    .main-nav {
        margin-left: 0;
        width: auto;
    }
    
    .nav-menu {
        justify-content: flex-end;
    }
    
    .nav-menu li {
        margin-left: 0;
        margin-right: 10px;
    }
    
    .nav-menu li:last-child {
        margin-right: 0;
    }
    
    .logo-container {
        max-width: 150px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .sticky-header {
        padding: 10px 0;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .logo-container {
        max-width: 120px;
        height: 40px;
    }
    
    .main-nav {
        margin-left: 0;
        margin-top: 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1002;
        background-color: transparent;
    }
    
    .menu-toggle .bar {
        width: 22px;
        height: 2px;
        margin: 4px auto;
        background-color: var(--primary-color);
        transition: var(--transition);
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        transition: right 0.3s ease;
        z-index: 1001;
        pointer-events: none;
    }
    
    .nav-container.active {
        right: 0;
        pointer-events: all;
    }
    
    .nav-menu {
        position: absolute;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 10px 15px;
        font-size: 1.2rem;
    }
    
    .booking-link {
        margin: 20px auto;
        display: inline-block;
        width: auto;
        padding: 10px 20px !important;
    }
    
    /* Animated hamburger to X */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    /* Add overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    
    /* Other responsive styles */
    .slider-container {
        height: 50vh;
        min-height: 300px;
    }
    
    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
    
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 350px;
    }
    
    .map-container iframe {
        height: 100%;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp .whatsapp-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    
    .logo-container {
        max-width: 100px;
        height: 35px;
    }
    
    .slider-container {
        height: 40vh;
        min-height: 200px;
    }
    
    .slider-nav button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .directions {
        padding: 15px;
    }
    
    .directions h3 {
        font-size: 1.2rem;
    }
    
    .direction-item h4 {
        font-size: 1rem;
    }
    
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .floating-whatsapp {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
    }
    
    .floating-whatsapp .whatsapp-icon {
        width: 22px;
        height: 22px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}
