body {
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
}

/*-----------------------------------HEADER------------------------------------*/
.header{
    position: fixed;
    display: flex;
    z-index: 2;
    justify-content: space-between;
    align-items: center;
    height: 2.5rem;
    width: 100%;
    background-color: rgb(125, 110, 131);
    padding: 0.5rem;
}
.header .logo {
    color: white;
    margin:0;
    padding: 0;
    line-height: 0;
}
.header .nav-desktop {
    display: flex;
    align-items: center;
    margin-right: 0.938rem;
}
.header .nav-desktop a{
    color: white;
    line-height: 2.813rem;
    padding-left: 0.938rem;
    padding-right: 0.938rem;
    font-size: 1.25rem;
    text-align: center;
    text-decoration: none;
}
/*-------------------------------------END-------------------------------------*/
/*-----------------------------------HOME--------------------------------------*/
section{
    padding: 3rem;
    overflow: hidden;
    margin: 0;
}
.home{
    display: flex;
    height: 100vh;
    background-color: rgb(248, 237, 227);
    align-items: center;
    justify-content: center;
    padding: .5px;
}
.image-logo-bg {
    background-image: url(/asset/logo-background.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 35rem;
    height: 20rem;
    border-right: solid 5px black;
    transform: translateX(20%);
    transition: transform .5s ease-in-out;
}
.load {
    transform: translateX(0%);
}
.slogan{
    width: 30%;
    padding-left: 20px;
    overflow: hidden;
}
.slogan h2{
    font-size: 3.7em;
    line-height: 1.5em;
    transform: translateX(-110%);
    transition: transform 3.0s ease-in-out;
}
.show-text h2{
    transform: translateX(0%);
}
/*------------------------------------END--------------------------------------*/
/*-----------------------------------ABOUT-------------------------------------*/
.about{
    display: flex;
    flex-direction: column;
    gap: 1;
    justify-content: center;
    align-items: center;
    background-color: rgb(223, 211, 195);
}
.about-head {
    font-size: 30px;
    line-height: 5px;
    text-align: center;
}
.about-content {
    font-size: 20px;
    max-width: 60rem;
    text-align: center;
}
.about-team-head{
    font-size: 30px;
    font-weight: 400;
}
.about-team-content {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.thumbnail{
    border-radius: 15px;
    background-color: white;
    height: 250px;
    width: 200px;
    box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.626);
}
.profile{
    border: solid 1px black;
    border-radius: 15px;
    background-image: url(/asset/team-1.jpg);
    margin: auto;
    margin-top: 15px;
    height: 170px;
    width: 170px;
}
.details{
    text-align: center;
}
/*------------------------------------END--------------------------------------*/
/*----------------------------------OFFERS-----------------------------------*/
.offers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    background-color: rgb(248, 237, 227);
}
.offers-head{
    text-align: center;
    font-size: 40px;
    font-weight: 400;
}
.offers-container{
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.menu{
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    background-color: rgb(208, 184, 168);
    width: 350px;
    transition: transform .3s ease-in-out;
}
    .menu:hover{
        transform: scale(1.05);
    }
.item-tag{
    text-align: center;
}
.menu-cards{
    display: flex;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 15px;
    transition: all .3s ease-in-out;
}
    .menu-cards:hover{
        transform: scale(1.01);
        color: white;
        background-color: rgb(85, 59, 95);
    }
.menu-cards h3{
    line-height: 5px;
}
.menu-cards p{
    line-height: 15px;
}
.item-name{
    width: 400px;
}
.item-price h1{
    text-align: end;
    line-height: 50px;
}



/*------------------------------------END--------------------------------------*/
