/* CSS Variables - Refined Nature Theme */
:root {
    --primary-color: #1e4620; /* Deep Forest Green */
    --primary-light: #2d5a27;
    --secondary-color: #e07a5f; /* Warm Terracotta / Accent */
    --accent-gold: #d4af37;
    --dark-color: #121812;
    --light-color: #f4f7f4;
    --white: #ffffff;
    --grey-light: #f8f9f8;
    --grey: #555555;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--grey);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1.2rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 7rem 0; /* Enhanced breathing room between sections to prevent color mixing */
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.bg-light {
    background-color: #f0f7f0; /* Richer, fresh light nature green background */
}

.bg-dark {
    background-color: var(--dark-color);
    color: var(--white);
}

.bg-dark h2, .bg-dark h3, .bg-dark h4 {
    color: var(--white);
}

.sub-heading {
    color: var(--primary-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.mt-4 { margin-top: 2.5rem; }
.mb-4 { margin-bottom: 2.5rem; }
.w-100 { width: 100%; }

.grid {
    display: grid;
    gap: 2.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(30, 70, 32, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(30, 70, 32, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    height: 80px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary-color);
}

.navbar nav ul {
    display: flex;
    align-items: center;
}

.navbar nav ul li a {
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: var(--transition);
    border-radius: 20px;
}

.navbar nav ul li a:hover {
    color: var(--primary-color);
    background-color: var(--light-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.8rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Features List in About */
.features-list {
    margin-top: 1.5rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--dark-color);
}

.features-list li i {
    color: var(--primary-light);
    background: var(--light-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.8rem;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0,0,0,0.03);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    height: 120px;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

/* Amenities */
.amenity-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

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

/* Activity Box */
.activity-box {
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.activity-box:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-5px);
}

.activity-box i {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Contact Section & Text Issue Fix */
.contact {
    background: var(--white);
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-info .info-link {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-info i {
    width: 45px;
    height: 45px;
    background: var(--light-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1.2rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.social-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.social-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.facebook {
    background-color: #1877f2;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    opacity: 0.95;
    color: var(--white);
}

.social-btn i {
    font-size: 1.1rem;
    width: auto;
    height: auto;
    background: transparent;
    color: var(--white);
    margin-right: 0;
}

.contact-form {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-form form input,
.contact-form form select,
.contact-form form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    transition: var(--transition);
}

.contact-form form input:focus,
.contact-form form select:focus,
.contact-form form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 70, 32, 0.1);
}

/* Footer */
.footer {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3rem; }
    .contact-info { padding-right: 0; }
}

@media (max-width: 768px) {
    .section { padding: 4rem 0; }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .navbar nav {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 1rem 0;
    }

    .navbar nav.active { left: 0; }

    .navbar nav ul {
        flex-direction: column;
        text-align: center;
    }

    .navbar nav ul li {
        width: 100%;
        padding: 0.5rem 0;
    }

    .navbar nav ul li a {
        display: inline-block;
        width: 80%;
    }

    .about-img { order: -1; }

    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }

    .hero-btns {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-btns .btn {
        width: 100%;
        margin: 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Fix spacing after social section on mobile */
    .social-section {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero h1 { font-size: 1.8rem; }
    .card { padding: 1.5rem; }
    .amenity-item { padding: 1.5rem; }
}
