/* ===== NavBar ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

/* ===== Root Variables ===== */
:root {
    --body-color: #E4E9F7;
    --nav-color: #204102;
    --text-color: #FFF;
    --sidebar-bg: #142a00;
    --sidebar-hover: #5b5c00;
}

body {
    height: 100vh;
    background-color: var(--body-color);
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* ===== Navigation Bar ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--nav-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
}

/* ===== Logo Section ===== */
.logo-container {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto; /* Center or adjust as needed for larger screens */
}

.logo-img {
    width: 250px;
    height: 90px;
    object-fit: cover;
}

.navLogo a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
}

/* Shift logo to the left on small screens */
@media (max-width: 768px) {
    .logo-container {
        margin-right: 300px; /* Push logo to the left edge */
    }

    .nav-bar {
        justify-content: space-between; /* Ensures other nav items stay properly aligned */
    }
}

/* ===== Navigation Links ===== */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex: 1;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    padding: 20px 10px;
    font-family: "Poppins", sans-serif;
}

.nav-links li a:hover {
    opacity: 0.8;
}

/*------------------------Buttons-------------------------------*/
.button-book-now {
    font-size: 1rem;
    font-weight: bold;
    color: #2F411E; /* Dark green text */
    background-color: #FFFBED; /* Yellow background */
    padding: 10px 25px;
    border: none; /* No border */
    border-radius: 25px; /* Rounded edges */
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif; /* Optional for font match */
}

/* Style for first letter capitalization */
.button-book-now::first-letter {
    text-transform: uppercase;
}

.button-book-now:hover {
    background-color: #FFEAAA; /* Slightly darker yellow on hover */
    color: #2F411E; /* Dark green text */
}

.button-book-now:active {
    background-color: #FFD247; /* Darker yellow-brown on click */
    color: #2F411E; /* Dark green text */
}

/* Contact Button */
.button-contact {
    font-size: 1rem;
    font-weight: bold;
    color: #FFFBED; /* Yellow text */
    background-color: transparent; /* Transparent background */
    padding: 10px 15px;
    border: 2px solid #FFFBED; /* Yellow border */
    border-radius: 25px; /* Rounded edges */
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif; /* Optional for font match */
    text-transform: uppercase; /* Makes the text all caps */
    font-size: 15px;
    text-transform: none;
}

.button-contact:hover {
    border: 2px solid #FFEAAA; /* Yellow background on hover */
    color: #FFEAAA; /* Dark text on hover */
}

.button-contact:active {
    border: 2px solid #FFD247; /* Darker yellow on click */
    color: #FFD247; /* White text */
}

/* Style for first letter capitalization */
.button-contact::first-letter {
    text-transform: uppercase;
}

.nav-buttons {
    display: flex; /* Align buttons in a row */
    gap: 15px; /* Add space between buttons */
    justify-content: center; /* Center the buttons */
    align-items: center; /* Vertically align buttons */
}

/* Add margin to the buttons */
.button-book-now {
    margin-right: 50px; /* Space on the left for the Book Now button */
}

.button-book-now,
.button-contact {
    padding: 8px 50px; /* Makes buttons wider and thinner */
    border-radius: 20px; /* Keeps rounded edges */
}

@media (max-width: 790px) {
    .nav-links {
        display: none; /* Hide center links on small screens */
    }

    .nav-buttons {
        display: none; /* Hide buttons on small screens */
    }

    .sidebarOpen {
        display: block;
        font-size: 24px;
        color: var(--text-color);
        cursor: pointer;
        font-family: "Poppins", sans-serif; /* Change font here */
        font-weight: 600;
        font-style: normal;
        z-index: 1002; /* Ensure hamburger icon is clickable */
    }

    .menu {
        position: fixed;
        height: 100%;
        width: 300px;
        left: -300px; /* Initially hidden off-screen */
        top: 0;
        padding: 20px;
        background-color: var(--sidebar-bg);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        z-index: 100;
        transition: all 0.4s ease;
    }

    nav.active .menu {
        left: 0; /* Slide in when active */
        z-index: 1001; /* Ensure sidebar is above nav */
        font-family: "Poppins", sans-serif; /* Change font here */
    }

    .menu .logo-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu .logo-toggle .sidebarClose { /* Fixed typo: siderbarClose -> sidebarClose */
        font-size: 24px;
        cursor: pointer;
        color: var(--text-color);
    }

    .menu ul {
        padding-top: 30px;
    }

    .menu ul li {
        list-style: none;
        margin-top: 20px;
    }

    .menu ul li a {
        font-size: 17px;
        font-weight: 500;
        color: var(--text-color);
        text-decoration: none;
        padding: 10px 15px;
        display: block;
        border-radius: 5px;
    }

    .menu ul li a:hover {
        background-color: var(--sidebar-hover);
    }
}

@media (min-width: 791px) {
    .sidebarOpen {
        display: none; /* Hide sidebar toggle on large screens */
    }

    .menu {
        display: none; /* Hide sidebar menu on large screens */
    }
}

/* -----------------ICONS--------------------- */
.nav-links li a {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    padding: 10px;
    gap: 5px; /* Space between icon and text */
    overflow: hidden; /* Hide the icon while it animates in */
}

/* Icon styling */
.nav-links .icon {
    width: 20px;
    height: 20px;
    transform: translateY(20px); /* Start below the link */
    opacity: 0; /* Initially hidden */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth animation */
}

/* Active icon */
.nav-links .icon.active {
    transform: translateY(0); /* Move into view */
    opacity: 1; /* Fully visible */
}

/* Hidden state (used for toggling) */
.nav-links .icon.hidden {
    transform: translateY(20px);
    opacity: 0;
}

/*--------------------------about css---------------------------------*/
body {
    margin: 0;
    padding: 0;
    background-color: #FFFBED; /* Off-white bottom background */
}

.about-section {
    background-color: #8C7427;
    color: #fff; /* White text */
    text-align: center;
    padding: 50px 20px 100px 20px;
    border-radius: 0 0 20px 20px; /* Rounded bottom corners */
    font-size: 2rem;
    font-family: "Playfair Display", serif;
    font-weight: bold;
    font-style: none;
    margin-top: 70px;
}

.about-section::before {
    content: '';
    display: block;
    height: 10px;
}

.get-to-know-us {
    padding: 50px 20px;
    text-align: center;
}

.get-to-know-us h2 {
    font-size: 2rem;
    color: #6B581E; /* Darker shade of text */
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.get-to-know-us p {
    color: #B59532;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.contact-section {
    text-align: center;
    background-color: #FFFBED; /* Light background for contrast */
    padding: 30px 20px;
}

.contact-section h2 {
    font-size: 2rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #1C2712; /* Greenish text */
    margin-bottom: 30px;
}

.contact-card {
    text-align: center;
    color: #000;
    background-color: #A8B49D; /* Light gray background */
    padding: 20px;
    margin-top: 20px; /* Adds spacing between sections */
    display: flex; /* Enable Flexbox */
    flex-direction: column; /* Stack the items vertically */
    justify-content: center; /* Vertically center content */
    align-items: center;
}

.contact-section {
    margin-bottom: -60px; /* Reduced gap below the contact section */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Poppins", sans-serif;
}

.contact-item img {
    width: 50px; /* Adjust the width */
    height: 50px; /* Adjust the height */
    object-fit: contain; /* Ensures the aspect ratio is maintained */
}

.contact-item span {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    display: flex; /* Enables flexbox */
    flex-direction: column; /* Aligns items vertically */
    justify-content: center; /* Centers items vertically */
    align-items: center; /* Centers items horizontally */
    height: 70vh; /* Full viewport height to center vertically */
    text-align: center; /* Centers the text within each element */
    font-family: "Poppins", sans-serif;
}

h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    text-decoration-color: #1C2712;
}

.custom-paragraph {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 25px;
}

textarea {
    width: 100%;
    height: 150px;
    border: none;
    border-radius: 15px;
    padding: 10px;
    font-size: 16px;
    resize: none;
    background-color: #FFF1C6;
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
}

textarea:focus {
    outline: none;
}

/* Light Image Section with Soft Lighting Effect */
.image-section {
    position: relative;
    background: url('loginimg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Soft glow effect */
.image-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 223, 186, 0.5), transparent);
    z-index: 1;
}

/* Subtle curved overlay */
.image-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 50%;
    background: linear-gradient(to top left, rgba(255, 200, 150, 0.3), transparent);
    clip-path: ellipse(50% 70% at 100% 100%);
    z-index: 1;
}

/*-----------------------------------------------footer--------------------------*/