*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}
a{
    color: inherit;
    text-decoration: none;
}
ul{
    list-style: none;
}

header{
    z-index: 1000;
    position: fixed;
    background-color: #ffffff7e;
    border: 1px solid #ddd;
    border-radius: 100px;
    backdrop-filter: blur(5px);
    width: 90%;
    margin: 20px 5%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .logo{
        height: 50px;
        img{
            height: 100%;
        }
    }

    .nav{
        display: flex;
        gap: 30px;

        li{
            font-size: 14px;
            font-weight: 500;
            transition: .3s ease;
        }
        li:hover{
            color: #e78b00;
        }
    }
    .hamburger{
        display: none;
    }
    .header-cta{
        padding: 10px 20px;
        background-color: #073b00;
        border: 2px solid white;
        color: white;
        border-radius: 100px;
        transition: .3s ease;
    }
    .header-cta:hover{
        background-color: #e78b00;
        color: white;
    }
}


.menu-hero{
    height: 60vh;
    padding: 30px;
    background-image: url(../images/upscale\ restaurant\ with\ artistic\ wooden\ cladding\ and\ elegant\ ambiance.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ddd;
    margin-bottom: 30px;

    h1{
        color: white;
        font-size: 55px;
        margin-bottom: 10px;
    }
    .hero-link{
        color: white;
        display: flex;
        justify-content: center;
    }
    p{
        font-size: 15px;
        color: grey;
    }
    a{
        font-size: 15px;

        span{
            margin-right: 4px;
            margin-left: 4px;
        }
    }
}

.search-cont{
    padding: 40px 20px;
    display: flex;
    gap: 20px;
    justify-content: center;

    form{
        width: 400px;
        border: 1px solid #ddd;
        border-radius: 100px;

        input{
            width: 100%;
            padding: 15px 30px;
            border: none;
            outline: none;
            border-radius: 100px;
        }
    }
    select{
        padding: 10px;
        background: #000;
        color: #fff;
        outline: none;
        border: none;
        border-radius: 5px;
    }
}









@media (max-width: 850px) {

    header{
        z-index: 1000;
        .hamburger{
            align-content: center;
            margin-top: 15px;
            display: block;
            cursor: pointer;
            height: 100%;
            transition: transform .5s ease-in-out;
        }
        .bar{
            width: 35px;
            height: 2px;
            background-color: #000000;
            margin-bottom: 6px;
            border-radius: 10px;
            transition: transform .5s ease-in-out;
        }
        .hamburger.change .bar1{
            -webkit-transform: rotate(-45deg) translate(-9px, 6px);
            transform: rotate(-45deg) translate(-5px, 6px);

        }
        .hamburger.change .bar2{
            opacity: 0;
        }
        .hamburger.change .bar3{
            -webkit-transform: rotate(45deg) translate(-8px, -8px);
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .nav {
            z-index: 99;
            height: 100vh;
            text-align: left;
            left: -500px;
            top: 0;
            width: 70%;
            margin: -22px -6%;
            padding: 30px;
            padding-top: 90px;
            backdrop-filter: blur(10px);
            position: fixed;
            display: block;
            background-color: #ffffffee;
            transition: left .5s ease-in-out;
            color: #000000;
        }
        .nav.visible{   
            z-index: 99;
            width: 70%;
            left: 0;
            margin: -22px -6%;
            text-align: left;
        }
        
        .nav li {
            text-align: left;
            line-height: 80px;
            font-size: 15px;
            margin: 0;
        }
        
    }
}