html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
}

.font-Playfair {
    font-family: "Playfair", serif;
}

.font-Inter {
    font-family: "Inter", sans-serif;
}

.font-Meddon {
    font-family: "Meddon", cursive;
}


/* Hero section start */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #141c14c2;
    z-index: -1;
}


/* Hero section header */

.menu-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    color: #fff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
}

.menu-item.active::before,
.menu-item:hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Hover and Active State: Show the leaf and change text color */
.menu-item:hover,
.menu-item.active {
    color: #65e95b;
    font-weight: 800;
}

.hero-title {
    font-family: "Playfair", serif;
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title {
    font-family: "Playfair", serif;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-kicker {
    font-family: "Inter", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.45em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }

    .section-title {
        font-size: 3.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}


/* ==== service ==== */
#services {
    position: relative;
    background-color: #F8F5F0;
    background-image: url(./assests/images/work/4.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}


#services .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #141c14c2;
    z-index: 0;
}

#reviews {
    background-color: #fff;
    background-image: url(./assests/images/reviews_bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}

.swiper-navigation-icon {
    height: 20px !important;
    color: #fff;
}

.swiper-button-prev {
    left: -20px
}

.swiper-button-next {
    right: -20px !important
}

.swiper-fade .swiper-slide {
    transition: opacity 1s ease-in-out;
}

.reviews-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #141c14;
    opacity: 0.35;
}

.reviews-swiper-pagination .swiper-pagination-bullet-active {
    background: #399a32;
    opacity: 1;
}



/* ===== RESPONSIVE DESIGN ===== */
/* Mobile view */
@media (max-width: 768px) {
    .menu-item {
        color: #000;
        margin-bottom: 30px;
    }


    .swiper-button-prev {
        display: none
    }

    .swiper-button-next {
        display: none
    }

}