:root {
    /* Main Colors */
    --primary: #2E5339;     /* Dark Green */
    --secondary: #4F6F52;   /* Forest Green */
    --accent: #D9CBA3;      /* Sand/Tan */
    --dark: #333333;        /* Charcoal */
    --light: #FFFFFF;       /* White */
    
    /* Text Colors */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --text-muted: #666666;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-accent: #FFF8E7;     /* Light Sand */
    
    /* Overlay Colors */
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-light: rgba(255, 255, 255, 0.9);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    
    /* Container Width */
    --container-max: 1200px;
    --container-padding: 1rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-primary);
}

/* AOS Animation Styles */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
    transition-duration: 400ms;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
    transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
    transition-delay: 300ms;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(27, 58, 27, 0.95);
    padding: 5px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 80px;
}

.nav ul.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.btn.btn-primary {
    background-color: var(--accent) !important;
    border: none !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: #000000 !important;
    font-weight: 500;
    margin-left: 1rem;
}

.navbar-nav .nav-link.btn.btn-primary:hover,
.navbar-nav .nav-link.btn.btn-primary:focus,
.navbar-nav .nav-link.btn.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--accent) !important;
    color: #000000 !important;
    opacity: 0.9;
}

.nav a:hover,
.nav a.active {
    color: var(--leaf);
}

.mobile-nav-toggle {
    display: none;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    width: 100%;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero {
        height: 56.25vw; /* 16:9 aspect ratio */
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--jungle);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gallery .view-more {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 30px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-align: center;
}

.gallery .view-more:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.gallery .center-btn {
    text-align: center;
    margin-top: 30px;
}

/* ... */

/* Footer */
.footer {
    background-color: #1B4332;
    color: #ffffff;
    padding: 80px 0 30px;
    margin-top: 0;
    z-index: 1000;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links a:hover {
    color: #95D5B2;
    transform: translateX(5px);
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-contact i {
    color: var(--leaf);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button i {
    font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .logo img {
        height: 40px;
    }

    .nav-items {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--bg-primary);
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 99;
        overflow-y: auto;
    }

    .nav-items.active {
        right: 0;
    }

    .nav-items::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
    }

    .nav-items.active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-items.active {
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 8px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary);
        border-bottom-color: var(--primary);
    }

    .cta-button {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 250px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-content p {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-slider img {
        height: 250px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--jungle);
        padding: 20px 0;
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Welcome Section */
.welcome-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.welcome-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.welcome-divider {
    margin: 1.5rem 0;
}

.welcome-divider i {
    color: var(--primary);
    font-size: 1.5rem;
}

.welcome-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .welcome-title {
        font-size: 2rem;
    }

    .welcome-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-item {
        padding: 1.5rem 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-secondary);
}

.testimonials-wrapper {
    position: relative;
    padding: var(--spacing-md) 0;
}

.testimonials-container {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonials-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.navbar-collapse {
    flex-grow: 1;
    transition: all 0.3s ease-in-out;
}

.navbar-collapse.show {
    animation: slideDown 0.3s ease-in-out forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    flex: 0 0 300px;
    padding: var(--spacing-md);
    background: var(--light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-card .comment {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.testimonial-card .author {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (min-width: 992px) {
    .testimonials-container {
        overflow-x: visible;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .testimonial-card {
        flex: 0 0 calc(33.333% - var(--spacing-md));
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .mobile-nav-toggle span,
    .mobile-nav-toggle span::before,
    .mobile-nav-toggle span::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--text-light);
        transition: all 0.3s ease;
    }

    .mobile-nav-toggle span {
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-nav-toggle span::before {
        top: -8px;
    }

    .mobile-nav-toggle span::after {
        bottom: -8px;
    }

    .reserve-content {
        grid-template-columns: 1fr;
    }
}
