@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Playfair Display", serif;
}

:root {
    /* Colors */
    --white-color: #fff;
    --dark-color: #252525;
    --primary-color: #065A2C;
    --secondary-color: #5A5A5A;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;

    /* Font Size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Font Weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Border Radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site Max Width */
    --site-max-width: 1300px;
}

html {
    scroll-behavior: smooth;
}

body {
    /* background: #252525; */
    background: #262626;

}

/* Responsive Media Query Code For Max Width 900px */
@media screen and (max-width: 900px) {
    :root {
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }
}

.navbar :where(#menu-close-button, #menu-open-button) {
    font-size: var(--font-size-l);
}

.navbar #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;
}

.navbar #menu-open-button {
    color: var(--white-color);
}

html {
    scroll-behavior: smooth;
}

/* Stylings for whole site */
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
}

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.section-title {
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto;
    border-radius: var(--border-radius-s);
    background: rgb(255, 255, 255);
}

/* Navbar Styling */
header {
    /* position: fixed; */
    width: 100%;
    z-index: 5;
    background: var(--primary-color);
}

header .navbar {
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
}

header .logo-img {
    color: #faf4f5;
    width: 150px;
    /* Adjust as needed */
    height: 100px;
    max-width: 100%;
    object-fit: contain;
    margin-right: 10px;
    filter: invert(100%) brightness(1000%);

}

.navbar .nav-logo .logo-text {
    color: var(--white-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu {
    display: flex;
    gap: 10px;
}

.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
    color: var(--white-color);
    background: #01803a;
}

.navbar :where(#menu-close-button, #menu-open-button) {
    display: none;
}

.navbar .fa-bars {
    margin-right: 2em;
}

/* Responsive Media Query Code For Max Width 900px */
@media screen and (max-width: 900px) {
    :root {
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }

    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .navbar :where(#menu-close-button, #menu-open-button) {
        display: block;
        font-size: var(--font-size-l);
    }

    .navbar #menu-close-button {
        color: var(--white-color);
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .navbar #menu-open-button {
        color: var(--white-color);
    }

    .navbar .nav-menu {
        display: block;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: var(--primary-color);
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100vh;
        transition: left 0.2s ease;
        z-index: 9999;
    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0;
    }

    .navbar .nav-menu .nav-link {
        color: var(--white-color);
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-l);
    }
}

/* Responsive Media Query Code For Max Width 640px */
@media screen and (max-width: 640px) {
    header {
        position: fixed;
        z-index: 999;
    }

    header .logo-img {
        width: 100px;
        height: 100px;
        margin-left: 2em;
    }
}



/* Hero Section Styling */
.hero {
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    text-align: center;
}

.bg-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(50%);
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    text-align: center;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
}


/* Slide-in animation from the left */
@keyframes slideIn {
    0% {
        transform: translate(-100%, -60%);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -60%);
        opacity: 1;
    }
}

.overlay.visible {
    animation: slideIn 1s forwards;
}

.overlay h1 {
    margin-bottom: 20px;
    font-size: 3em;
}

.overlay p {
    margin-bottom: 25px;
    font-size: 1.5em;
    font-style: oblique;
}

@media (max-width: 1240px) {
    .overlay h1 {
        font-size: 2em;
    }

    .overlay p {
        font-size: 1.5em;
    }
}

.viewmenubtn {
    padding: 12px 24px;
    background-color: #065A2C;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
}

.viewmenubtn:hover {
    background-color: #3a9b5e;
}

.swiper-button-next,
.swiper-button-prev {
    color: #3a9b5e;
}

/* Responsive Styles */
@media (max-width: 1240px) {
    .overlay {
        width: 90%;
        font-size: 14px;
        padding: 30px;
    }

    .overlay h1 {
        font-size: 24px;
    }

    .overlay p {
        font-size: 16px;
    }

    .viewmenubtn {
        font-size: 16px;
        padding: 10px 20px;
    }

}




/* Responsive layout */
@media (max-width: 768px) {
    header {
        justify-content: center;
        /* Center content for smaller screens */
        gap: 10px;
    }

    .logo {
        width: 90px;
        /* Smaller logo on mobile */
    }

    .toggle-btn {
        position: absolute;
        left: 10px;
        /* Move to the left */
    }

    /* header {
        padding: 15px;
    } */

    h1 {
        font-size: 2rem;
    }

    /* #menu {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }

    .menu-item {
        padding: 15px;
    }

    .menu-item img {
        height: 180px;
    } */
}

@media (max-width: 480px) {
    header {
        padding: 10px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .filters {
        flex-direction: column;
        align-items: center;
    }

    .filters select {
        margin: 5px;
        width: 90%;
    }

    /* #menu {
        grid-template-columns: 1fr;
    } */
}

/* Scroll Bar Animations */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #252525;
    /* Dark background */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #39bda7;
    /* Green accent */
    border-radius: 10px;
    transition: 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: #39bda7;
    /* Slightly darker green on hover */
}

/* Custom scrollbar for Firefox */


/* Animation for the slide from left to center */
@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


/* Footer Section Styling */
.footer {
    background-color: #252525;
    color: #fff;
    padding: 30px 10px;
    text-align: center;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-info {
    text-align: center;
    margin-bottom: 15px;
}

.footer-info p {
    margin: 5px 0;
    font-size: 1.2em;
}

.footer-info a {
    color: #39bda7;
    /* Gold highlight for email */
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-socials {
    margin: 15px 0;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 50%;
    color: #39bda7;
    /* Gold color */
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.footer-socials a:hover {
    transform: scale(1.2);
    color: #fff;
    /* White on hover */
    background: #02bb55;
    /* Gold background on hover */
}

.footer-bottom {
    margin-top: 15px;
    font-size: 0.em;
}

.designx {
    font-weight: bold;
    color: #39bda7;
    cursor: pointer;
}

/* ----- Responsive Design ----- */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-info {
        font-size: 1em;
    }

    .footer-socials a {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .footer {
        padding: 20px 5px;
    }

    .footer-container {
        text-align: center;
    }

    .footer-info {
        font-size: 1em;
    }

    .footer-socials {
        gap: 10px;
    }

    .footer-socials a {
        width: 40px;
        height: 40px;
        font-size: 1.3;
    }

    .footer-bottom {
        font-size: 1em;
    }
}