.header {
    padding: 1rem;
    /* padding-right: 2rem; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0e0d6;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #005c33;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: max-content; 
    height: auto;
}
.tandoor-logo{
    width: 150px;
    height: auto;
    border-radius: 10px;
    border: 3px solid #f8fb1a;
}

.logo-image {
    width: 100%;
    height: auto;
    display: block;
}

.desktop-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    color: #fff8dc;
}
.hamburger-icon{
    filter: brightness(0) invert(1);
}

.nav-item {
    margin: 0 1.2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6b8e23;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #6b8e23;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.hamburger-menu {
    cursor: pointer;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background-color: #fbf6f2;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.mobile-menu.active {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 3rem;
}

.mobile-menu li {
    margin-bottom: 1.5rem;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 1rem;
    }
    
    .logo {
        width: 75px;
    }

    .tandoor-logo{
        width: 85px;
        height: auto;
        border-radius: 5px;
        border: 1px solid #f8fb1a;
    }
}

