/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #355e48; /* The Fern Green */
    --light-cream: #f9f5f0;   /* Background Cream */
    --text-dark: #4a4a4a;
    --text-light: #7a7a7a;
    --gold-accent: #d4af37;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--light-cream);
}

/* Prevent horizontal scroll caused by long nav on mobile */
html, body {
    overflow-x: hidden;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: var(--light-cream);
    border-bottom: 1px solid #e0e0e0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Site logo image */
#site-logo {
    height: 60px;
    width: auto;
    display: block;
}

.menu-icon {
    font-size: 24px;
    color: var(--primary-green);
    cursor: pointer;
}

.brand {
    color: var(--text-dark);
}

.brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--primary-green);
    margin-bottom: 0;
}

.brand span {
    font-size: 10px;
    letter-spacing: 3px;
    display: block;
    text-align: center;
    color: #888;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Hide mobile nav close button by default (desktop) */
.nav-close { display: none; }

/* ===== Offers Section Styles (moved from inline) ===== */
.offers-section { --offer-primary-green: #1f5042; --light-green-border: #8ba79d; --text-grey: #666; background: white; }
.offers-section .header-section { text-align: center; padding: 40px 20px 20px; }
.offers-section .header-section h1 { font-family: 'Playfair Display', serif; color: var(--offer-primary-green); font-size: 36px; font-weight: 400; margin-bottom: 10px; }
.offers-section .header-section p { color: #333; font-size: 14px; max-width: 700px; margin: 0 auto; line-height: 1.5; }
.offers-section .slider-container { display: flex; align-items: center; justify-content: center; padding: 20px 5%; position: relative; background: linear-gradient(to bottom, #fff 85%, var(--offer-primary-green) 85%); padding-bottom: 60px; }
.offers-section .nav-arrow { font-size: 40px; color: var(--offer-primary-green); cursor: pointer; user-select: none; padding: 0 20px; }
.offers-section .cards-wrapper { display: flex; gap: 20px; overflow-x: auto; padding: 10px; justify-content: center; flex-wrap: nowrap; align-items: stretch; }
.offers-section .card { background: white; border: 1px solid var(--offer-primary-green); border-radius: 20px; width: 260px; padding: 30px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; box-shadow: 0 4px 10px rgba(0,0,0,0.05); position: relative; }
.offers-section .card-image { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; margin-bottom: 20px; border: 2px solid #fff; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.offers-section .card-image img { width: 100%; height: 100%; object-fit: cover; }
.offers-section .card h3 { font-family: 'Playfair Display', serif; color: var(--offer-primary-green); font-size: 20px; margin: 10px 0 5px; }
.offers-section .card p { color: var(--text-grey); font-size: 13px; margin-bottom: 20px; line-height: 1.4; min-height: 40px; }
.offers-section .divider { width: 100%; height: 1px; background-color: #ccc; margin-bottom: 20px; }
.offers-section .view-offer-btn { background-color: var(--offer-primary-green); color: white; border: none; padding: 10px 25px; font-size: 12px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: background 0.3s; }
.offers-section .view-offer-btn:hover { background-color: #14382e; }
.offers-section .bottom-bar { background-color: var(--offer-primary-green); height: 50px; width: 100%; margin-top: -50px; z-index: -1; }
@media (max-width: 768px) {
    .offers-section .slider-container { flex-direction: column; }
    .offers-section .cards-wrapper { flex-wrap: wrap; }
    .offers-section .nav-arrow { display: none; }
}

/* ===== Benefits Section Styles (moved from inline) ===== */
.benefits-section { background: #fff; padding: 40px 0; }
.benefits-container { width: 100%; max-width: 1200px; padding: 0 20px; margin: 0 auto; display: flex; align-items: center; background: #fff; color: #2F5C48; gap: 30px; justify-content: center; }
.left-section { flex: 0 0 260px; display:flex; flex-direction:column; justify-content:center; align-items:center; gap:10px; text-align:center; }
.text-content { max-width: 260px; }
.text-content h2 { font-family: 'Playfair Display', serif; font-size:30px; font-weight:400; color:#2F5C48; margin-bottom:6px; display:block; }
.text-content h2::after { content:''; display:block; width:50px; height:3px; background:#2F5C48; margin:8px auto 0; }
.text-content p { font-size:14px; color:#4a4a4a; line-height:1.5; margin-top:8px; }
.badge-content { text-align:center; display:flex; flex-direction:column; align-items:center; }
.badge-icon { position:relative; width:92px; height:92px; border-radius:50%; background:#2F5C48; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 18px rgba(0,0,0,0.12); }
.badge-icon .fa-certificate { color: #ffffff; font-size:40px; }
.badge-icon .fa-check { position:absolute; right:6px; bottom:6px; color:#ffffff; font-size:14px; background:#14382e; border-radius:50%; width:30px; height:30px; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 10px rgba(0,0,0,0.2); border: 2px solid rgba(255,255,255,0.15); }
.badge-text { color:#2F5C48; font-size:14px; margin-top:10px; font-weight:600; }
.divider-vertical { width:1px; background:#e0e0e0; height:160px; margin:0 30px; }
.right-section { flex:1 1 auto; padding-left:10px; position:relative; }
.benefits-grid { display:grid; grid-template-columns: repeat(3,1fr); row-gap:30px; column-gap:30px; text-align:center; align-items:center; justify-items:center; }
.benefit-item i { font-size:34px; color:#2F5C48; margin-bottom:10px; }
.benefit-item span { font-size:14px; color:#2F5C48; display:block; margin-top:6px; }
.terms-text { position:absolute; bottom:-18px; right:0; font-size:12px; color:#557d69; }
@media (max-width:900px){ .benefits-container{flex-direction:column; gap:12px;} .left-section{padding-right:0; flex-direction:column; align-items:center;} .divider-vertical{width:100%;height:1px;margin:12px 0;} .benefits-grid{grid-template-columns:repeat(2,1fr);} .terms-text{position:static;margin-top:10px;text-align:right;width:100%;} }
@media (max-width:500px){ .benefits-grid{grid-template-columns:1fr;} }

/* ===== Our Circuits Section Styles (moved from inline) ===== */
.circuit-section { text-align:center; padding:50px 0; background:#fff; width:100vw; margin-left: calc(50% - 50vw); box-sizing: border-box; position:relative; z-index:1; }
.circuit-section::before {
    /* extend white background well beyond the section so side gutters are fully white */
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    right: -100vw;
    background: #fff;
    z-index: 0;
}
.circuit-section > * { position: relative; z-index: 2; }
.circuit-section .section-title { font-family:'Playfair Display', serif; color:#2F5C48; font-size:36px; margin-bottom:10px; display:inline-block; }
.circuit-section .section-title::after { content:''; display:block; width:40px; height:3px; background-color:#2F5C48; margin:10px auto 0; }
.circuits-container { display:flex; flex-wrap:wrap; justify-content:center; gap:40px; margin-top:50px; }
.circuit-card { width:200px; display:flex; flex-direction:column; align-items:center; text-align:center; }
.icon-circle { width:160px; height:160px; background:#527c65; border-radius:50%; display:flex; justify-content:center; align-items:center; margin-bottom:20px; transition:transform 0.3s ease; }
.icon-circle:hover { transform:scale(1.05); }
.icon-circle i { font-size:70px; color:#eaddcf; }
.card-title { font-family:'Playfair Display', serif; color:#1a4135; font-size:18px; font-weight:600; min-height:50px; margin-bottom:15px; line-height:1.3; }
.explore-btn { background:#1a4135; color:#fff; border:none; padding:10px 20px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; cursor:pointer; }
@media(max-width:768px){ .circuits-container{gap:20px;} .circuit-card{width:45%;} .icon-circle{width:120px;height:120px;} .icon-circle i{font-size:50px;} }

/* ===== Circuits Slider Styles ===== */
.circuits-slider {
    position:relative;
    display:flex;
    align-items:center;
    gap:12px;
    max-width:1200px; /* center content like screenshot 2 */
    width:100%;
    margin:30px auto 0;
    padding:0 20px;
    overflow:visible; /* allow arrows to sit outside */
}

.circuits-slider .circuits-prev,
.circuits-slider .circuits-next {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background: #fff;
    border:none;
    font-size:22px;
    color:#2F5C48;
    cursor:pointer;
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
    z-index:6;
}
.circuits-slider .circuits-prev { left:-20px; }
.circuits-slider .circuits-next { right:-20px; }

.circuits-track { overflow:hidden; flex:1 1 auto; }
.circuits-slider .circuits-container {
    display:flex;
    gap:44px;
    align-items:flex-start;
    flex-wrap:nowrap;
    justify-content:center; /* center items within the max-width container */
    padding:0; /* let outer wrapper control gutters */
    scroll-behavior:smooth;
}
.circuits-slider .circuit-card { flex: 0 0 200px; width:200px; }
.circuits-slider .card-title { min-height:56px; }
.circuits-slider .circuits-prev:disabled,
.circuits-slider .circuits-next:disabled { opacity:0.45; cursor:default; }

@media (max-width:768px){
    .circuits-slider { gap:6px; }
    .circuits-slider .circuits-prev, .circuits-slider .circuits-next { display:none; }
    .circuits-slider .circuits-container { gap:20px; padding:0 10px; }
    .circuits-slider .circuit-card { flex:0 0 45%; width:45%; }
}

/* ===== Circuits Feature (two-column) ===== */
.circuits-feature { display:flex; gap:0; align-items:stretch; width:100vw; margin-left: calc(50% - 50vw); margin-top:36px; padding:40px 0; box-sizing:border-box; }
.feature-left { flex:1 1 50%; background: var(--primary-green); display:flex; align-items:center; justify-content:center; padding:60px 40px; }
.feature-left img { max-width:100%; height:auto; display:block; box-shadow:0 6px 18px rgba(0,0,0,0.12); border-radius:2px; }
.feature-right { flex:1 1 50%; background: #efe0d7; padding:60px 60px; display:flex; align-items:center; }
.feature-inner { max-width:620px; margin:0 auto; }
.feature-deco { color:var(--primary-green); font-size:20px; margin-bottom:10px; }
.feature-eyebrow { font-family:'Playfair Display', serif; color:var(--primary-green); font-size:20px; font-weight:400; margin:8px 0; }
.feature-title { font-family:'Playfair Display', serif; color:var(--primary-green); font-size:30px; margin:6px 0 16px; }
.feature-text { color:#4a4a4a; line-height:1.6; margin-bottom:18px; }
.find-hotels { background:var(--primary-green); color:#fff; border:none; padding:10px 20px; font-weight:700; cursor:pointer; }

@media (max-width:900px){ .circuits-feature{flex-direction:column;} .feature-left,.feature-right{width:100%;} .feature-right{padding:24px;} }


nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    font-family: 'Playfair Display', serif;
}

.search-icon {
    margin-left: 10px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px); /* Full height minus header */
    overflow: hidden;
}

.hero-split {
    display: flex;
    height: 100%;
    width: 100%;
}

/* Left Image Side */
.hero-image {
    width: 60%;
    position: relative;
    overflow: hidden;
}

/* Slider slides inside hero-image */
.hero-image .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 600ms ease-in-out;
}

.hero-image .slide.active {
    opacity: 1;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 6; /* above slides */
}

.dot {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.6;
}

.dot.active {
    opacity: 1;
    background-color: var(--primary-green);
}

/* Right Content Side */
.hero-content {
    width: 40%;
    background-color: #4a7c64; /* Matching the green in image */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Move hero text down so floating booking bar doesn't overlap it */
.hero-content {
    padding-top: 160px;
}

.content-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

.sub-serif {
    font-style: italic;
    font-size: 22px;
}

.divider {
    width: 30px;
    border: 1px solid rgba(255,255,255,0.5);
    margin: 20px auto;
}

.explore-btn {
    background-color: #d8c6b0;
    color: #4a7c64;
    border: none;
    padding: 12px 30px;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.flower-icon {
    font-size: 40px;
    color: #d8c6b0;
    margin-top: 20px;
}

/* Floating Booking Bar */
.booking-bar {
    position: absolute;
    top: 15%; /* Adjust vertical position */
    left: 10%;
    right: 10%;
    background-color: var(--light-cream);
    height: 100px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 10;
    padding: 0;
    overflow: hidden;
}

.input-group {
    flex: 1.5;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.border-left {
    border-left: 1px solid #ddd;
}

.input-group label {
    font-size: 13px;
    color: #355e48;
    margin-bottom: 5px;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

.input-group input {
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: #555;
    width: 100%;
}

.book-btn-container {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-right: 20px;
}

.book-now-btn {
    background-color: #1a4031;
    color: white;
    width: 100%;
    height: 50px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

.guarantee {
    font-size: 11px;
    color: #355e48;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    align-self: flex-end;
}

/* Mobile responsive adjustments to prevent booking bar from overlapping hero content */
@media (max-width: 768px) {
    header {
        padding: 12px 18px;
    }

    #site-logo {
        height: 48px;
    }

    .hero-split {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-image, .hero-content {
        width: 100%;
    }

    .hero-image {
        height: 60vh; /* make image area visible on mobile */
    }

    /* Make booking bar flow in document on mobile so it doesn't overlap */
    .booking-bar {
        position: static;
        margin: 14px;
        height: auto;
        padding: 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        z-index: 5;
    }

    .input-group {
        padding: 10px;
        flex: 1 1 100%;
    }

    .border-left {
        border-left: none;
        border-top: 1px solid #eee;
    }

    .book-btn-container {
        padding: 10px;
        align-items: center;
        flex: 1 1 100%;
    }

    .hero-content {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .slider-dots {
        bottom: 12px;
    }

    /* Hide desktop nav on mobile, reveal via menu icon */
    nav {
        display: none;
    }

    /* Menu icon should be visible on mobile */
    .menu-icon {
        display: block;
    }

    /* Mobile overlay nav when activated (body.menu-open) */
    body.menu-open nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        background-color: var(--light-cream);
        flex-direction: column;
        padding-top: 70px; /* leave space for header */
        gap: 8px;
        align-items: flex-start; /* start from top */
        padding-left: 20px;
        z-index: 50;
        overflow-y: auto;
    }

    body.menu-open nav a {
        font-size: 18px;
        color: var(--text-dark);
        width: calc(100% - 40px);
        padding: 10px 0;
        text-align: left;
    }

    /* Close button inside mobile nav */
    .nav-close {
        position: absolute;
        top: 18px;
        right: 20px;
        background: transparent;
        border: none;
        font-size: 26px;
        color: var(--primary-green);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* hide default close button on desktop */
    .nav-close { display: none; }
    body.menu-open .nav-close { display: inline-flex; }
}