:root {
    /* Emerald Green - Deep, Rich, Luxury */
    --primary-color: #046307;
    /* Baby Pink - Soft Accent */
    --secondary-color: #F4C2C2;
    --text-color: #333333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --gold: #D4AF37;
    /* Bonus Gold Accent for ultimate luxury */
    --dark-overlay: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    /* Luxury Serif Font */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
}

/* Constants Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 100px 0;
    /* More breathing room for luxury feel */
}

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

/* Buttons - Sharp, Elegant */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--primary-color);
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--white);
    margin-left: 20px;
    transition: all 0.4s ease;
}

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

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    /* Slight transparency */
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Logo Zoom Animation */
.animate-zoom {
    animation: zoomInOut 20s infinite alternate ease-in-out;
    display: inline-block;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.nav-links a {
    color: var(--primary-color);
    margin-left: 35px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links .btn-primary {
    margin-left: 35px;
    padding: 10px 25px;
    /* Smaller button for nav */
    font-size: 12px;
}

.menu-toggle {
    display: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: center; REMOVED center align for split layout */
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    /* Subtle slow zoom on background for cinematic effect */
    animation: heroZoom 30s infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(4, 99, 7, 0.4), rgba(4, 99, 7, 0.2));
    /* Emerald tint */
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 80px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    padding-right: 50px;
}

.hero-buttons {
    margin-top: 40px;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
    color: var(--white);
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-style: italic;
    /* Elegant touch */
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.key-icon-wrapper {
    margin-bottom: 20px;
}

.hero-key-icon {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}


/* Features / Amenities Section */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 20px auto 0;
}

.section-title p {
    color: #666;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    margin-top: 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    /* Pink highlight */
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Benefits / Stay Section */
.benefit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
}

.benefit-text h3 {
    font-size: 36px;
    color: var(--primary-color);
}

.benefit-icon i {
    font-size: 80px;
    color: var(--secondary-color);
    /* Pink Icons */
    opacity: 0.8;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    color: #555;
    line-height: 1.8;
}

.testimonial-card h4 {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    font-family: 'Lato', sans-serif;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-logo h2 {
    color: var(--white);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--gold);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-links a {
    color: #999;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--white);
}

.social-icons a {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    background-color: var(--white);
    color: #000;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    color: #666;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .section-padding {
        padding: 60px 0;
    }

    .feature-card {
        padding: 30px 20px;
    }
}