/* ===== NavBar ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

body {
    height: auto;
    background-color: var(--body-color);
    overflow-x: hidden;
}

/* ===== Root Variables ===== */
:root {
    --body-color: #E4E9F7;
    --nav-color: #204102;
    --text-color: #FFF;
    --sidebar-bg: #142a00;
    --sidebar-hover: #5b5c00;
}

/* ===== 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;
}

.logo-img {
    width: 250px;
    height: 90px;
    object-fit: cover;
}

.navLogo a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    .logo-container {
        margin-right: 300px;
    }

    .nav-bar {
        justify-content: space-between;
    }
}

/* ===== 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;
    background-color: #FFFBED;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.button-book-now::first-letter {
    text-transform: uppercase;
}

.button-book-now:hover {
    background-color: #FFEAAA;
    color: #2F411E;
}

.button-book-now:active {
    background-color: #FFD247;
    color: #2F411E;
}

.button-contact {
    font-size: 1rem;
    font-weight: bold;
    color: #FFFBED;
    background-color: transparent;
    padding: 10px 15px;
    border: 2px solid #FFFBED;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    font-size: 15px;
    text-transform: none;
}

.button-contact:hover {
    border: 2px solid #FFEAAA;
    color: #FFEAAA;
}

.button-contact:active {
    border: 2px solid #FFD247;
    color: #FFD247;
}

.button-contact::first-letter {
    text-transform: uppercase;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.button-book-now {
    margin-right: 50px;
}

.button-book-now,
.button-contact {
    padding: 8px 50px;
    border-radius: 20px;
}

@media (max-width: 790px) {
    .nav-links {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .sidebarOpen {
        display: block;
        font-size: 24px;
        color: var(--text-color);
        cursor: pointer;
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-style: normal;
    }

    .menu {
        position: fixed;
        height: 100%;
        width: 300px;
        left: -300px;
        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;
        font-family: "Poppins", sans-serif;
    }

    .menu .logo-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-toggle .siderbarClose {
        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;
    }

    .menu {
        display: none;
    }
}

/* -----------------ICONS--------------------- */
.nav-links li a {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 12px;
    padding: 10px;
    gap: 10px;
    overflow: hidden;
}

.nav-links .icon {
    width: 20px;
    height: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links .icon.active {
    transform: translateY(0);
    opacity: 1;
}

.nav-links .icon.hidden {
    transform: translateY(20px);
    opacity: 0;
}

/*-----------------------------------------Gallery-------------------------*/
body {
    background-color: #ab9100;
    font-family: Arial, sans-serif;
    margin: 0;
}

.container {
    text-align: center;
    padding-top: 100px;
}

h2 {
    color: #f5f5dc;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 280px);
    gap: 10px;
    padding: 10px;
    width: 98vw;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: start;
}

.gallery-box {
    background-color: #e6e6e6;
    border-radius: 15px;
    width: 280px;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90vw;
        height: auto;
    }

    .gallery-box {
        width: 100%;
        height: 300px;
    }
}

/* Happy Customers Section */
.happy-customers-section {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #f5f5dc;
    margin-top: 40px;
    padding-bottom: 20px;
}

.happy-customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 280px);
    gap: 20px;
    padding: 10px;
    width: 98vw;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: start;
}

.customer-box {
    background-color: #e6e6e6;
    border-radius: 15px;
    width: 280px;
    height: 200px;
    background-size: contain; /* Changed from cover to contain */
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.customer-box:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .happy-customers-grid {
        display: flex;
        flex-direction: column;
        width: 90vw;
        height: auto;
    }

    .customer-box {
        height: 200px;
        margin: 3px;
    }
}