/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f6f8f6;
    color: #222;
    line-height: 1.6;
}

/* ================= CONTAINER ================= */
.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */
header {
    background: #ffffff;
    border-bottom: 4px solid #2e8b3c;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 55px;
}

.brand-name {
    font-weight: 700;
    font-size: 20px;
}

.brand-sub {
    font-size: 12px;
    letter-spacing: 2px;
    color: #666;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.3s ease;
}

nav a:hover {
    color: #2e8b3c;
}

.btn-nav {
    background: #2e8b3c;
    color: white !important;
    padding: 9px 18px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-nav:hover {
    background: #256e30;
}

/* ================= HERO ================= */
.hero {
    height: 85vh;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-local {
    font-size: 15px;
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    background: #2e8b3c;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    background: #256e30;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #222;
}

/* ================= SECTION ================= */
section {
    padding: 90px 0;
}

h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 55px;
    font-weight: 700;
}

/* ================= SERVICES ================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 12px;
    color: #2e8b3c;
    font-weight: 600;
}

/* ================= GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* ================= BOOKING ================= */
.booking {
    background: #eef6ef;
    text-align: center;
}

.booking p {
    margin-bottom: 30px;
}

/* ================= CONTACT ================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-info a {
    color: #2e8b3c;
    text-decoration: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2e8b3c;
}

/* ================= FOOTER ================= */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 22px 0;
    font-size: 14px;
}


/* ================= MOBILE NAV SETUP ================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hide nav by default on mobile */
@media (max-width: 700px) {

    nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    #nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        display: none;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    #nav-links.active {
        display: flex;
    }

    #nav-links a {
        font-size: 16px;
    }
}
/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 700px) {

    

    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 70vh;
        padding: 20px;
    }

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

    .hero p {
        font-size: 15px;
    }

    section {
        padding: 70px 0;
    }

    h2 {
        font-size: 24px;
    }
}





