/* Import Cormorant Garamond font */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600&display=swap');



body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif;
    
}

body {
    background-color: #A6A98D; /* Matches the screenshot background */
    color: black;
}

/* Navbar */
.navbar {
    background: #F3EED3;  /* Light beige background */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    font-family: "Cormorant Garamond", serif;
}

/* Flex container for navbar content */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

/* Logo styling */
.logo img {
    height: 50px;
}

/* Navigation menu */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px; /* Space between menu items */
}

/* Navigation links */
.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    padding: 10px 15px;
    position: relative;
    display: inline-block;
    border: 1px solid transparent;
}

/* Active Page - Top & Bottom Border */
.nav-links a.active {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

/* Hover Effect - Top & Bottom Border */
.nav-links a:hover {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    color: #000;
}

/* Button Styling */
.btn {
    padding: 10px 20px;
    border: 2px solid black;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    border-top: 3px solid black;
    border-bottom: 3px solid black;
    background: #000;
    color: white;
}



/* ======= RESPONSIVE DESIGN ======= */

/* Tablet Screens (Between 768px and 1024px) */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px; /* Reduce spacing */
    }

    .nav-links a {
        font-size: 16px; /* Slightly smaller font */
    }
}

/* Mobile Screens (Below 768px) */
@media (max-width: 767px) {
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Hide menu by default */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: #F3EED3;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        padding: 10px 0;
    }

    /* Hamburger Menu */
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger div {
        width: 30px;
        height: 3px;
        background: black;
        margin: 5px;
    }
}

/* Desktop (Show menu by default) */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}



/* Footer */
.footer {
    background: #F9F5E8;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    color: #222;
}