/* --- Global Reset & Variables --- */
:root {
    --color-dark-green: #2E6F40;
    --color-light-segment: #E3FFF5;
    --color-headline: #8c5b47;
    --color-dark-para: #b27a5b;
    --color-light-para: #d8b58a;
    --color-bg-body: #a8d5ba;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-body);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-headline);
}

/* --- Top Nav Section --- */
.top-nav-section {
    background-color: var(--color-dark-green);
    padding: 8px 0;
    width: 100%;
}

.top-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center; /* Centers the content */
    align-items: center;
}

.top-nav-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-nav-link {
    text-decoration: none;
    color: var(--color-light-para); /* Using the light paragraph color */
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.top-nav-link:hover {
    opacity: 0.8;
}

.top-nav-divider {
    color: var(--color-light-para);
    opacity: 0.5;
}

/* Responsive adjustment for small screens */
@media (max-width: 480px) {
    .top-nav-contact {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .top-nav-divider {
        display: none;
    }
}


/* --- Main Navigation Section --- */
.main-nav-section {
    background-color: var(--color-light-segment);
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
}

.main-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Three-column layout logic */
.main-nav-left, 
.main-nav-right {
    flex: 1; /* Both sides take equal space to force logo to center */
}

.main-nav-right {
    display: flex;
    justify-content: flex-end;
}

.main-nav-logo {
    flex: 0 0 auto;
    text-align: center;
}

.nav-logo-img {
    max-height: 120px;
    display: block;
    margin: 0 auto;
}

.nav-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Uses Playfair Display from global styles */
}

.main-nav-list {
    list-style: none;
    display: flex;
}

.main-nav-link {
    text-decoration: none;
    font-family: var(--font-body);
    color: var(--color-dark-para);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0px 10px;
}

.main-nav-link:hover {
    color: var(--color-dark-green);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-nav-container {
        flex-direction: column;
        gap: 15px;
    }
    .main-nav-left {
        display: none; /* Hide spacer on mobile */
    }
    .main-nav-right {
        justify-content: center;
    }
}





/* --- SECTION 3: VIDEO FEATURE CARDS (CHOICE A) --- */

/* 1. Container & Layout */
.video-cards-section {
    padding: 80px 20px;
    background-color: var(--color-bg-body); /* #a8d5ba */
}

.video-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

/* 2. The Card Frame */
.video-card {
    position: relative;
    flex: 1;
    height: 500px; 
    border-radius: 20px;
    overflow: hidden; /* CRITICAL: This clips the zooming video */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    background-color: #000; /* Fallback background */
}

/* 3. The Video (The Zoom Element) */
.card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Smooth transition for the zoom */
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Choice A Trigger: Zoom on Hover */
.video-card:hover .card-video {
    transform: scale(1.15); /* Adjust scale for more/less zoom */
}

/* 4. The Overlay (Visible Text Layer) */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Transparent top to dark bottom for readability */
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

/* 5. Content Styling */
.card-content {
    max-width: 90%;
    position: relative;
    z-index: 3;
}

.card-headline {
    font-family: var(--font-heading); /* Playfair Display */
    color: var(--color-light-para); /* #d8b58a */
    font-size: 2.6rem;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.card-description {
    font-family: var(--font-body); /* Montserrat */
    color: var(--color-light-para); /* #d8b58a */
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    /* Ensuring it fits your 35-character limit style */
}

/* 6. The Button */
.card-btn {
    display: inline-block;
    padding: 14px 34px;
    background-color: var(--color-dark-green); /* #2E6F40 */
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--color-dark-green);
}

.card-btn:hover {
    background-color: var(--color-light-segment); /* #E3FFF5 */
    color: var(--color-dark-green);
    border-color: var(--color-light-segment);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- Optimized Mobile Responsiveness --- */

@media (max-width: 992px) {
    .video-cards-container {
        flex-direction: column; /* Stack cards vertically */
        gap: 25px;
        padding: 0 10px;
    }
    
    .video-card {
        flex: none; /* Disables flex-grow logic for stability */
        width: 100%;
        height: 450px; /* Forced height ensures visibility */
        display: block; /* Ensures it renders as a block element */
    }

    .card-headline {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .video-card {
        height: 400px; /* Slightly shorter for small phones */
    }

    .card-headline {
        font-size: 1.7rem;
    }

    .card-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .video-cards-section {
        padding: 40px 15px; /* Reduce padding on small screens */
    }
}




/* --- Footer Section --- */
.main-footer {
    background-color: var(--color-dark-green); /* #2E6F40 */
    padding: 70px 0 20px 0;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-family: var(--font-heading);
    color: var(--color-light-segment);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-heading {
    font-family: var(--font-heading);
    color: var(--color-light-para); /* #d8b58a */
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

/* Small underline for headings */
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--color-light-para);
}

.footer-text {
    font-family: var(--font-body);
    color: var(--color-light-para);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links, .footer-contact {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
    color: var(--color-light-para);
    font-size: 0.9rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--color-light-para);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-light-segment);
    padding-left: 5px;
}

/* Newsletter Form */
.footer-form {
    display: flex;
    margin-top: 15px;
}

.footer-input {
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    width: 100%;
    font-family: var(--font-body);
}

.footer-btn {
    padding: 10px 20px;
    background-color: var(--color-light-segment);
    color: var(--color-dark-green);
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background 0.3s ease;
}

.footer-btn:hover {
    background-color: #ffffff;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(227, 255, 245, 0.1);
}

.footer-bottom p {
    color: var(--color-light-para);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    
}

/* --- Resort Gallery Section --- */  /* --- Resort Gallery Section --- */  /* --- Resort Gallery Section --- */
.gallery-section {
    padding: 20px 20px;
    background-color: var(--color-light-segment); /* #E3FFF5 */
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery-title {
    font-family: var(--font-heading);
    color: var(--color-headline);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.gallery-subtitle {
    font-family: var(--font-body);
    color: var(--color-dark-para);
    margin-bottom: 40px;
    font-weight: 500;
}

/* The Grid Logic */
.gallery-grid {
    display: grid;
    /* Default: 1 column (Mobile) */
    grid-template-columns: 1fr; 
    gap: 20px;
}

.gallery-card {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effects */
.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 111, 64, 0.7); /* Using #2E6F40 with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-hover-overlay span {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border-bottom: 2px solid var(--color-light-para);
}

.gallery-card:hover .gallery-hover-overlay {
    opacity: 1;
}

/* --- Responsive Breakpoints --- */

/* Tablet: 2 cards per row */
@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Laptop/Desktop: 4 cards per row */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Rooms & Suites Grid Section (Static Labels) --- */  /* --- Rooms & Suites Grid Section (Static Labels) --- */
.rooms-section {
    padding: 40px 20px;
    background-color: var(--color-bg-body); /* Using #a8d5ba for contrast against the last section */
}

.rooms-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.rooms-title {
    font-family: var(--font-heading);
    color: var(--color-headline); /* #8c5b47 */
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.rooms-subtitle {
    font-family: var(--font-body);
    color: var(--color-dark-para); /* #b27a5b */
    margin-bottom: 40px;
    font-weight: 500;
}

/* 1. The Grid (Same logic as Gallery) */
.rooms-grid {
    display: grid;
    /* Default: 1 column (Mobile) */
    grid-template-columns: 1fr; 
    gap: 30px; /* Increased gap for cleaner separation with labels */
}

/* 2. The Card Structure */
.rooms-card {
    background: #ffffff; /* White card background */
    border-radius: 12px;
    overflow: hidden; /* Clips image corners but not text */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left; /* Left align text details */
    display: flex;
    flex-direction: column; /* Stack image frame and text */
}

/* 3. The Image Frame */
.rooms-img-frame {
    width: 100%;
    height: 250px; /* Fixed height for consistent frames */
    overflow: hidden;
}

.rooms-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Subtle zoom only on image frame */
.rooms-card:hover .rooms-img {
    transform: scale(1.08);
}

/* 4. The Details (AT THE BOTTOM, not absolute) */
.rooms-details {
    padding: 20px;
}

.room-name {
    font-family: var(--font-heading); /* Playfair Display */
    color: var(--color-headline); /* #8c5b47 */
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.room-desc {
    font-family: var(--font-body); /* Montserrat */
    color: var(--color-dark-para); /* #b27a5b */
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}


/* --- Responsive Breakpoints (Matching Gallery) --- */

/* Tablet: 2 cards per row */
@media (min-width: 600px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Laptop/Desktop: 4 cards per row */
@media (min-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.google-map-section {
    padding: 0px 20px;
    background-color: var(--color-bg-body); /* Using #a8d5ba for contrast against the last section */
}




 /* --- Final CTA Section --- */   /* --- Final CTA Section --- */  /* --- Final CTA Section --- */
.cta-section {
    padding: 20px 20px; /* Generous vertical spacing to focus on the button */
    background-color: var(--color-bg-body); /* #a8d5ba */
    text-align: center;
    width: 100%;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-btn-large {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--color-dark-green); /* #2E6F40 */
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body); /* Montserrat */
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px; /* Pill-shaped button for a modern look */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(46, 111, 64, 0.3);
    border: 2px solid var(--color-dark-green);
}

/* Hover Effect: Grow and Lighten */
.cta-btn-large:hover {
    transform: scale(1.05);
    background-color: var(--color-light-segment); /* #E3FFF5 */
    color: var(--color-dark-green);
    border-color: var(--color-dark-green);
    box-shadow: 0 15px 30px rgba(46, 111, 64, 0.4);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%; /* Full width button on small mobile screens */
    }
}

/* ABOUT SECTION CSS */  /* ABOUT SECTION CSS */  /* ABOUT SECTION CSS */
/* --- About Section Styling --- */
.about-section {
    padding: 100px 20px;
    background-color: var(--color-bg-body); /* #a8d5ba */
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Side */
.about-image-box {
    flex: 1;
    position: relative;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    position: relative;
}

/* Decorative accent border behind the image */
.image-accent-border {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-dark-green);
    border-radius: 20px;
    z-index: 1;
}

/* Content Side */
.about-content-box {
    flex: 1;
}

.about-mini-title {
    font-family: var(--font-body);
    color: var(--color-dark-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-main-title {
    font-family: var(--font-heading);
    color: var(--color-headline);
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text {
    font-family: var(--font-body);
    color: var(--color-dark-para);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Download Button Styling */
.about-btn-wrapper {
    margin-top: 35px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--color-dark-green);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(46, 111, 64, 0.2);
}

.download-btn:hover {
    background-color: var(--color-light-segment);
    color: var(--color-dark-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(46, 111, 64, 0.3);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about-img {
        height: 350px;
    }

    .image-accent-border {
        display: none; /* Hide decorative border on mobile for cleaner look */
    }

    .about-main-title {
        font-size: 2.2rem;
    }

    .about-btn-wrapper {
        display: flex;
        justify-content: center;
    }
}