/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f6f4ef;
    color: #2b2b2b;
    line-height: 1.7;
}

/* ================= TYPOGRAPHY ================= */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

h3 {
    font-size: 20px;
}

p {
    font-size: 16px;
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: clamp(72px, 10vh, 96px); /* THIS is the key */
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 clamp(20px, 5vw, 80px);
    z-index: 1000;
}




.nav a {
    margin-left: 35px;
    text-decoration: none;
    color: #2b2b2b;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-block;
    padding: 14px 36px;
    background: #3d4b2f;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.link-btn {
    margin-top: 15px;
    background: none;
    border: none;
    color: #3d4b2f;
    font-size: 13px;
    letter-spacing: 1.5px;
    cursor: pointer;
}

/* ================= HERO ================= */
.hero {
    height: 100vh;
    /*background-image: url("../images/hero/hero-1.jpg");*/
    background-size: cover;
    background-position: center;
    position: relative;

}
.hero {
    padding-top: calc(clamp(12px, 2vw, 20px) * 2 + clamp(32px, 4vw, 52px));
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #ffffff;
}

.hero-content p {
    margin: 20px 0 40px;
    font-size: 18px;
}

/* ================= HERO CTA BUTTON ================= */

.hero .btn,
.hero button {
    background-color: #3d4b2f;   /* forest green */
    color: #ffffff;
    padding: 16px 42px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero .btn:hover,
.hero button:hover {
    background-color: #2f3a23;   /* darker green */
    transform: translateY(-1px);
}

.hero .btn:active,
.hero button:active {
    transform: translateY(0);
}


/* ================= SECTIONS ================= */
section {
    padding: 120px 80px;
}

/* ================= ABOUT ================= */
.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

/* ================= STAYS ================= */
.stays {
    background: #f2f1ec;
}

.stays-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stay-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
}

.stay-card p {
    font-size: 14px;
    opacity: 0.85;
}

/* ================= EXPERIENCES ================= */
.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.exp-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.exp-card span {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-family: 'Playfair Display', serif;
}

/* ================= NEARBY ================= */
.nearby {
    background: #ffffff;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.nearby-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.nearby-card span {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

/* ================= FOOTER ================= */
.footer {
    background: #1e2415;
    color: #d6d6d6;
    text-align: center;
    padding: 80px 20px;
}

.footer p {
    margin-bottom: 30px;
    font-size: 16px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
    .stays-grid,
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nearby-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    section {
        padding: 80px 20px;
    }

    .header {
        padding: 15px 20px;
    }

    .nav {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stays-grid,
    .experiences-grid,
    .nearby-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 80vh;
    }
}

/* ===== HERO SLIDESHOW ===== */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* ===== SLIDER ARROWS ===== */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    font-size: 32px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(0,0,0,0.65);
}

.slider-arrow.left {
    left: 30px;
}

.slider-arrow.right {
    right: 30px;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .slider-arrow.left {
        left: 15px;
    }

    .slider-arrow.right {
        right: 15px;
    }
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-link {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img {
    height: 70%;        /* Logo fills header proportionally */
    width: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
/* ===== STAYS – 3 COLUMN LAYOUT ===== */

.stays-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 1024px) {
    .stays-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stays-grid-3 {
        grid-template-columns: 1fr;
    }
}

.stay-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 15px 0 20px;
    color: #2b2b2b;
}
/* ===== MODAL OVERLAY ===== */
/* ================= ROOM MODAL OVERLAY ================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

/* ================= MODAL CARD ================= */

.modal-card {
    background: #eef1ea;                 /* soft forest green */
    width: min(900px, 92%);
    max-height: 90vh;                    /* critical for scroll */
    overflow-y: auto;                    /* enable scrolling */
    border-radius: 16px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    -webkit-overflow-scrolling: touch;
}

/* ================= CLOSE BUTTON ================= */

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #3d4b2f;
    z-index: 10;
}

/* ================= IMAGE SLIDER ================= */

.modal-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;   /* Responsive image proportion */
    overflow: hidden;
}

.modal-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;      /* SHOW FULL IMAGE */
    background: #1f2619; /* forest-dark backdrop */
    position: absolute;
    inset: 0;
    opacity: 0;

}

/* Visible image */
.modal-slider img.active {
    opacity: 1;
}

/* Transition ONLY when user clicks arrows */
.modal-slider.transition img {
    transition: opacity 0.5s ease;
}
/* ================= SLIDER ARROWS ================= */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(61, 75, 47, 0.75);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
}

.slider-arrow.left {
    left: 12px;
}

.slider-arrow.right {
    right: 12px;
}

.slider-arrow:hover {
    background: rgba(61, 75, 47, 0.9);
}

/* ================= MODAL CONTENT ================= */

.modal-content {
    background: #f9f9f6;                /* soft off-white */
    padding: 30px 40px 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Headings */
.modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 20px;
    color: #3d4b2f;
}

.modal-content h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #3d4b2f;
}

/* ================= AMENITIES LIST ================= */

.modal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.modal-content li {
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
    font-size: 15px;
    color: #2b2b2b;
}

.modal-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3d4b2f;
}

/* ================= BREAKFAST TAG ================= */

.breakfast {
    font-weight: 500;
    color: #3d4b2f;
    margin-top: 10px;
}
.Pet {
    font-weight: 500;
    color: #3d4b2f;
    margin-top: 10px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .modal-slider {
        height: 240px;
    }

    .modal-content {
        padding: 25px;
    }
}

/* ================= BOOK NOW BUTTON ================= */

.book-now-btn {
    margin-top: 20px;
    width: 100%;
    padding: 14px 0;
    background: #3d4b2f;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.book-now-btn:hover {
    background: #2f3a23;
}
/* ================= BOOKING MODAL ================= */

.booking-modal {
    max-width: 700px;
}

.booking-subtitle {
    margin-bottom: 25px;
    color: #4b4b4b;
}

.booking-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #3d4b2f;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3d4b2f;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ================= NATURE ROOTED EXPERIENCES ================= */

.nature-rooted-section {
    padding: 120px 20px;
    background: #f9f9f6;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #3d4b2f;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: #4b4b4b;
    line-height: 1.7;
}

/* Subsections */
.experience-subsection {
    max-width: 1100px;
    margin: 0 auto 100px;
}

.experience-subsection h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #3d4b2f;
    margin-bottom: 40px;
}

/* ===== 3-COLUMN GRID FOR STAY AMIDST NATURE ===== */

.image-text-grid.three-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .image-text-grid.three-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= MINI CAROUSEL ================= */

.mini-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.mini-carousel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.mini-carousel img.active {
    opacity: 1;
}

/* Arrows */
.mini-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 2;
}

.mini-arrow.left {
    left: 10px;
}

.mini-arrow.right {
    right: 10px;
}

.mini-arrow:hover {
    background: rgba(0, 0, 0, 0.65);
}

/* Mobile */
@media (max-width: 768px) {
    .mini-carousel {
        height: 260px;
    }
}


/* ================= IMAGE + TEXT GRID ================= */

.image-text-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.image-block img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
}

.image-caption {
    margin-top: 18px;
}

.image-caption h4 {
    font-size: 18px;
    color: #3d4b2f;
    margin-bottom: 6px;
}

.image-caption p {
    font-size: 15px;
    color: #2b2b2b;
    line-height: 1.6;
}

/* ================= ACTIVITY GALLERY ================= */

.activity-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.activity-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.activity-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.activity-item span {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.activity-item:hover img {
    transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .image-text-grid {
        grid-template-columns: 1fr;
    }

    .activity-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .activity-gallery {
        grid-template-columns: 1fr;
    }

    .image-block img {
        height: 260px;
    }
}
/* ================= NATURE HERO ================= */

.nature-hero {
    position: relative;
    height: 70vh;
    min-height: 420px;
    margin-bottom: 100px;
    overflow: hidden;
    border-radius: 24px;
}

.nature-slide {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1f2619;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.nature-slide.active {
    opacity: 1;
}

/* Overlay text */
.nature-hero-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 420px;
    color: #fff;
    z-index: 2;
}

.nature-hero-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 10px;
}

.nature-hero-overlay p {
    font-size: 16px;
    line-height: 1.6;
}

/* Arrows */
.nature-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
}

.nature-arrow.left {
    left: 20px;
}

.nature-arrow.right {
    right: 20px;
}

.nature-arrow:hover {
    background: rgba(0, 0, 0, 0.65);
}

/* Mobile */
@media (max-width: 768px) {
    .nature-hero {
        height: 55vh;
        border-radius: 18px;
    }

    .nature-hero-overlay {
        left: 20px;
        bottom: 20px;
    }

    .nature-hero-overlay h3 {
        font-size: 28px;
    }
}
/* ================= NATURE HERO WRAPPER ================= */

.nature-hero-wrapper {
    max-width: 1100px;   /* SAME AS YOUR 3-COLUMN GRID */
    margin: 0 auto 100px;
    padding: 0 20px;     /* Matches site side padding */
}
/* ================= ACTIVITIES SECTION ================= */

.activities-section {
    max-width: 1100px;
    margin: 0 auto 120px;
}

.activities-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    align-items: center;
}

/* LEFT LIST */
.activities-list ul {
    list-style: none;
    padding: 0;
}

.activities-list li {
    font-size: 15px;
    line-height: 1.7;
    color: #2b2b2b;
    margin-bottom: 14px;
    padding-left: 18px;
    position: relative;
}

.activities-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3d4b2f;
}

.activities-list strong {
    color: #3d4b2f;
    font-weight: 500;
}

/* RIGHT SLIDESHOW */
.activities-slideshow {
    position: relative;

    border-radius: 20px;
    overflow: hidden;
    background: #1f2619;
    aspect-ratio: 4 / 4;
}



.activity-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.activity-slide.active {
    opacity: 1;
}

/* Arrows */
.activity-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
}

.activity-arrow.left { left: 16px; }
.activity-arrow.right { right: 16px; }

.activity-arrow:hover {
    background: rgba(0,0,0,0.65);
}

.activities-layout {
    align-items: flex-start;
}

/* Force bold titles in activities list */
.activities-list li strong {
    font-weight: 600;   /* or 700 if you want stronger */
    color: #3d4b2f;     /* forest green for emphasis */
}

@media (max-width: 900px) {
    .activities-layout {
        grid-template-columns: 1fr;
    }

    .activities-slideshow {
        height: 360px;
        min-height: unset;
        max-height: unset;
    }
}
/* ================= NEARBY ATTRACTIONS – EDITORIAL ================= */

.nearby-editorial {
    max-width: 1100px;
    margin: 0 auto 140px;
}

.editorial-group {
    margin-top: 70px;
}

.editorial-label {
    display: block;
    margin-bottom: 28px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3d4b2f;
    font-weight: 500;
}

/* Grid */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.editorial-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.editorial-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 22px 24px 26px;
}

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #3d4b2f;
    margin-bottom: 10px;
}

.card-body p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
    color: #2b2b2b;
}

/* Distance Tag */
.distance-tag {
    display: inline-block;
    font-size: 13px;
    color: #3d4b2f;
    background: #eef1ea;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .editorial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .editorial-card img {
        height: 200px;
    }
}

/* ================= NEARBY EDITORIAL CARD COLORS ================= */

.editorial-card {
    background: #fbfaf7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}
.distance-tag {
    background: rgba(61, 75, 47, 0.12);
}
.card-body h3 {
    color: #2f3a23;
}

/* ===== ROOM SPECIFICATIONS ===== */

.modal-specs {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.modal-specs li {
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
    font-size: 15px;
    color: #2b2b2b;
}

.modal-specs li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3d4b2f;
}


/* ===== FEATURED ACTIVITIES ===== */
/* ===== FEATURED ACTIVITIES ===== */

.activities-divider {
    margin: 80px 0;
}
.activities-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(30px, 5vw, 60px);
    margin-bottom: clamp(50px, 8vw, 80px);
}

.featured-block h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #3d4b2f;
    margin-bottom: 6px;
}

.featured-block p {
    font-size: 15px;
    color: #2b2b2b;
    margin-bottom: 20px;
}

/* Let carousel scale naturally */
.activities-featured .mini-carousel {
    aspect-ratio: 1 / 1;
     border-radius: 20px;
    overflow: hidden;
}