*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: serif;
}

body{
    background: #FFF2E7;
}

header{
    width: 100%;
    height: 80px;
    background: #F0E0C4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}

.logo{
    font-family:serif;
    font-size: 28px;
    font-weight: bold;
    color: #9A3B3B;
}

.hamburger{
    display: none;
}

.nav-bar.open{
    height: 450px;
}

.nav-bar ul{
    display: flex;
}

.nav-bar.open ul{
    opacity: 1;
    visibility: visible;
}
.nav-bar ul li a{
    display: block;
    font-family: serif;
    font-weight: 600;
    color: #9A3B3B;
    font-size: 20px;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.2s;
    margin: 0 5px;
}

.nav-bar ul li a:hover{
    color: #FFF2E7;
    background: #9A3B3B;
}

.nav-bar ul li a.active{
    color: #FFF2E7;
    background: #9A3B3B;
}

.menu{
    width: 100%;
    padding: 70px 0;
}

.menu h1{
    font-size: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9A3B3B;
    margin-bottom: 30px;
}

.menu .menu-box{
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px;
}

.menu .menu-box .menu-card{
    width: 325px;
    height: 480px;
    padding-top: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background: #C08261;
}

.menu .menu-box .menu-card .menu-img{
    width: 300px;
    height: 245px;
    margin: 0 auto;
    overflow: hidden;
}

.menu .menu-box .menu-card .menu-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s;
}

.menu .menu-box .menu-card .menu-img:hover img{
    transform: scale(1.1);
}

.menu .menu-box .menu-card .menu-info h2{
    width: 60%;
    text-align: center;
    margin: 10px auto 10px auto;
    font-size: 25px;
    color: #FFF2E7;
}

.menu .menu-box .menu-card .menu-info p{
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 8px;
    line-height: 21px;
    color: #F0E0C4;
}

.menu .menu-box .menu-card .menu-info h3{
    text-align: center;
    margin-top: 10px;
    color: #601313;
}

.menu .menu-box .menu-card .menu-info .btn{
    display: block;
    width: 150px;
    margin: 15px auto 0 auto;
    text-align: center;
    font-size: 20px;
    color: #9A3B3B;
    background: #F0E0C4;
    border-radius: 20px;
    padding: 5px 0;
    cursor: pointer;
}

.menu .menu-box .menu-card .menu-info .btn:hover{
    color: #FFF2E7;
    background: #9A3B3B;
}

/* footer */
.foot{
    display: grid;
    justify-content: center;
    align-items: end;
    min-height: 90vh;
    background-color: #FFF2E7;
    padding: 50px;
}

footer{
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background: #F0E0C4;
}

footer .footer-container{
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-gap: 20px;
}

footer .footer-container .sec h2{
    position: relative;
    color: #9A3B3B;
    font-weight: 600;
    margin-bottom: 15px
}

footer .footer-container .foot-about p{
    color: #9A3B3B;
    /* font-size: 15px; */
}

footer .footer-container .socials{
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4,50px);
}

footer .footer-container .socials li{
    list-style: none;
}

footer .footer-container .socials li a{
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #9A3B3B;
    display: grid;
    align-content: center;
    justify-content: center;
    text-decoration: none;
}

footer .footer-container .socials li a i{
    color: #F0E0C4;
    font-size: 20px;
}

footer .footer-container .quicklinks{
    position: relative;
}

footer .footer-container .quicklinks ul li{
    list-style: none;
}

footer .footer-container .quicklinks ul li a{
    color: #9A3B3B;
    margin-bottom: 10px;
    display: inline-block;
    text-decoration: none;
}

footer .footer-container .foot-contact .info{
    position: relative;
}

footer .footer-container .foot-contact .info li{
    display: grid;
    grid-template-columns: 30px 1fr;
    margin-bottom: 16px;
}
footer .footer-container .foot-contact .info li span{
    color: #9A3B3B;
    font-size: 20px;
}

footer .footer-container .foot-contact .info li a{
    text-decoration: none;
    color: #9A3B3B;
}

.copyright{
    width: 100%;
    background: #F0E0C4;
    padding: 20px 100px 30px;
    text-align: center;
    color: #9A3B3B;
    border-top: 1px solid #9a3b3b5b;
    margin-top: 30px;
}



@media only screen and (max-width: 1320px){
    header{
        padding: 0 50px;
    }
}

@media only screen and (max-width: 1100px){
    header{
        padding: 0 30px;
    }
}

@media only screen and (max-width: 900px){
    .hamburger{
        display: block;
        cursor: pointer;
    }
    .hamburger .line{
        width: 30px;
        height: 3px;
        background: #9A3B3B;
        margin: 6px 0;
    }
    .nav-bar{
        height: 0px;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #F0E0C4;
        transition: 0.5s;
        overflow: hidden;
    }
    .nav-bar ul{
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }
    .nav-bar ul li a{
        margin-bottom: 12px;
    }

    .menu{
        width: 100%;
        padding: 70px 0;
    }

    .menu .menu-box{
        width: 95%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }

    footer{
        padding: 40px;
    }

    footer .footer-container{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 20px;
    }

    .copyright{
        padding: 20px 40px 30px;
    }
}

@media only screen and (max-width: 768px){
    .hamburger{
        display: block;
        cursor: pointer;
        z-index: 1000;
    }
    .hamburger .line{
        width: 30px;
        height: 3px;
        background: #9A3B3B;
        margin: 6px 0;
    }
    .nav-bar{
        height: 0px;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #F0E0C4;
        transition: 0.5s;
        overflow: hidden;
    }
    .nav-bar ul{
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }
    .nav-bar ul li a{
        margin-bottom: 12px;
    }

    .menu{
        width: 100%;
        padding: 70px 0;
    }

    .menu .menu-box{
        width: 95%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }

    
    footer .footer-container{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 20px;
    }
}