
:root {
    --primary: #006837;
    --secondary: #eaf1ec;
    --light: #fff;
    --text: #333;
    --accent: #C5A880;
    --radius: 12px;
    --shadow: 0 4px 12px rgba(0,0,0,0.05);
}

::selection {
    background:var(--secondary);
}

/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--light); color: var(--text); line-height: 1.6; }
a {color:inherit;}
h2 {
    font-weight:400;
}
h2 b {
    font-weight:bold;
}

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: space-between;
    background: var(--primary);
    color: var(--light);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    align-items: center;
}
.top-bar a { color: var(--light); text-decoration: none; transition: color 0.3s ease; }
.top-bar a:hover { color: #e0e0e0; }

/* NAVIGATION */
nav {
    background-color: #fff;
    padding: 10px 20px;
    position: sticky;
    top:0;
    z-index: 999;
    border-top: 2px solid var(--primary);
}

.nav-container {
    display: flex;
    justify-content: center; /* Center nav links horizontally */
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap; /* allow wrapping on small screens */
}
.fullimg {
    width: 100%;
    margin: 0.5em 0;
}
.logo {
    flex: 0 0 auto;
    font-weight: bold;
    color: var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center; /* center links horizontally */
}

/* Links styling */
.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Hamburger Styling */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger bars transform into X when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Styles */
@media (max-width: 768px) {


    
    .hamburger {
        display: flex;
    }

    .nav-container {
        flex-direction: row; /* logo + hamburger on same line */
        justify-content: space-between;
    }

    .nav-links {
        position: absolute;
        top: 45px;
        right: 0px;
        opacity: 0;
        pointer-events:none;
        height: 100vh;
        width: 250px;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px;
        gap: 20px;
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 1000;
        justify-content: flex-start;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events:all;
    }

    body.menu-open {
        /* overflow: hidden; */
    }
}



/* Fix scroll offset for sticky nav */
:target { scroll-margin-top: 80px; }

/* HERO */
header {
    background: #eaf8ed;
    color: var(--primary);
    text-align: center;
    padding: 6rem 1rem 4rem 1rem;
}
header .logo { max-width: 150px; height: auto; margin-bottom: 1.5rem; filter: brightness(0) saturate(100%) invert(25%) sepia(87%) saturate(629%) hue-rotate(103deg) brightness(95%) contrast(90%); }
header h1 { font-size: clamp(2rem, 5vw, 2.5rem); margin-bottom: 0.75rem; font-weight: 700; }
header p { font-size: 1.15rem; max-width: 650px; margin: auto; line-height: 1.6; }
header .cta-btn { display: inline-block; margin-top: 2rem; padding: 0.9rem 2rem; background: var(--primary); color: var(--light); border-radius: 30px; text-decoration: none; font-weight: 600; box-shadow: 0 4px 8px rgba(0,0,0,0.15); transition: background 0.3s ease, transform 0.2s ease; }
header .cta-btn:hover { background: #245a33; transform: translateY(-2px); }

/* SECTIONS */
section { padding: 6rem 1rem; }
.section-inner { max-width: 1100px; margin: auto; }
section h2 { color: var(--primary); margin-bottom: 1.5rem; font-size: clamp(1.5rem, 3vw, 2rem); }
section p { margin-bottom: 1rem; line-height: 1.7; }

/* CARD GRID */
.grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; }
.card { background: var(--light); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 6px 16px rgba(0,0,0,0.1); }
.card i { font-size: 2rem; color: var(--primary); margin-bottom: 0.8rem; }

/* BIO */
.bio { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; }
.bio img { width: 280px; border-radius: var(--radius); flex-shrink: 0; }
.bio div { flex: 1 1 300px; }

/* BOOKING + MAP */
.booking-map { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; align-items: flex-start; }
.booking-form, .map-container { flex: 1 1 45%; max-width: 48%; }
.map-container iframe { width: 100%; height: 450px; border: 0; border-radius: var(--radius); }

/* FORM */
.booking-form { background: var(--light); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 1rem; }
label { display: block; margin-bottom: 0.3rem; font-weight: 500; }
input, select, textarea, button { width: 100%; padding: 0.7rem 0.9rem; border-radius: 8px; border: 1px solid #ccc; font-size: 1rem;font-family:inherit; }
button { background: var(--primary); color: var(--light); border: none; cursor: pointer; font-weight: 500; transition: background 0.3s ease; }
button:hover { background: #245a33; }

/* CONTACT BOX */
.contact { text-align: center; padding: 3rem 1rem; border-radius: var(--radius); }
.contact a { display: inline-block; background: var(--primary); color: var(--light); padding: 0.8rem 1.5rem; border-radius: 30px; margin-top: 1rem; text-decoration: none; font-weight: 500; transition: background 0.3s ease; }
.contact a:hover { background: #245a33; }
.center {text-align:center;}

/* FOOTER */
footer { text-align: center; padding: 1.5rem; background: var(--primary); color: var(--light); margin-top: 2rem; font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .booking-map { flex-direction: column; align-items: center; }
    .booking-form, .map-container { max-width: 100%; }
}
@media (max-width: 600px) {
    .bio { flex-direction: column; text-align: center; }
    .bio img { margin: auto; }
    nav ul { flex-direction: column; gap: 1rem; }
    .top-bar { flex-direction: column; gap: 0.3rem; text-align: center; }
}


.form-feedback-wrap {
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
}
.form-success {
    background: #e6ffed;
    border: 1px solid #00a651;
    color: #00663d;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;

}
.form-error {
    background: #ffe6e6;
    border: 1px solid #cc0000;
    color: #990000;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
}



/* CTA Banner */
#cta-banner {
    background: var(--primary); /* Primary teal */
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

#cta-banner .cta-inner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

#cta-banner .cta-inner p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

#cta-banner .cta-btn {
    display: inline-block;
    background: var(--secondary); /* Darker accent */
    color: var(--primary);
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

#cta-banner .cta-btn:hover {
    transform: translateY(-3px);
}
@media (max-width: 600px) {

    #cta-banner .cta-btn {
        display: block;
        margin: 5px 0;
    }

}

