body{
    font-family: 'Nunito', sans-serif;
    background-color: #F9F5E6;
}

/* Header */

.container {
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 15px;
}
nav{
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    align-items: center; 
}
.nav_left {
    display: flex;
    align-items: center;
}
.nav_left_text {
    font-size: clamp(25px, 3vw, 45px);
}
.nav_right a{
    font-size: clamp(18px, 3vw, 30px);
    margin-left: .5em;
    color: #000;

    transition: all .5s ease-in-out;
}
.nav_right .nav_right_active {
    font-weight: 700;
    color: #E35C57;
    border-left: 1px solid #E35C57;
    padding-left: 0.2em;
}
.hero {
    background-image: url(../img/background1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
}
.hero_title {
    font-size: clamp(50px, 5vw, 90px);
    font-weight: 700;
    /* text-align: center; */
    padding-top: 2em;
    color: #fff;
}
.hero_text {
    font-size: clamp(18px, 3vw, 30px);
    color: #fff;
    padding: .5em 0;
    font-weight: 500;
    max-width: 700px;
}

.btn{
    margin-top: 2em;
}
.hero_link{
    padding: 17px 44px;
    background-color: #E35C57;
    border-radius: 20px;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 700;
    color: #ebebeb;

    transition: all .5s ease-in-out;

}

/* Main */

/* AboutUs */

.about_us {
    margin: 3% 0;
    /* padding: 3% 0; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.about_us_left {
    padding-top: 15%;
}
.about_us_title {
    font-weight: 700;
    font-size: clamp(25px, 3vw, 45px);
}
.about_us_text {
    padding-top: 3%;
    font-size: clamp(15px, 2vw, 22px);
    max-width: 85%;
}


/* Adv */

.adv {
    text-align: center;
    padding: 0 10px;
    margin: 3% 0;
    background-image: url(../img/adv.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh;
}
.adv_title {
    padding-top: 5%;
    font-weight: 700;
    font-size: clamp(35px, 3vw, 45px);
    color: #fff;
    margin-bottom: 1em;
}

/* Galeria */

.galeria {
    margin: 3% 0;
}
.galeria_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3%;
}
.galeria_item{
    transition: all .5s ease-in-out;

}


/* Maps */
.maps{
    margin: 5% 0;
}
iframe{
    width: 100%;
}


/* Footer */

footer{
    background: linear-gradient(0deg, rgba(228,205,171,1) 30%, rgba(237,222,195,1) 60%, rgba(242,231,207,1) 90%, rgba(246,240,219,0) 100%);
}
.footer {
    padding: 50px 0 30px 0;
    display: flex;
    justify-content: space-between;
}
.footer_item a{
    font-size: 20px;
}
.footer_item img{
    padding-right: 10px;
    margin-top: 10px;
}
.footer_right {
    padding-top: 5%;
}



/* Hover */

@media (hover: hover) {
    .nav_right a:hover{
        color: #E35C57;
    } 
.hero_link:hover{
    transition: all .3s ease-in-out;
    border-radius: 5px;
    color: #000;
}    
.galeria_item:hover{
    transition: all .5s ease-in-out;
    transform: scale(1.1);
}
.menu_category a:hover{
    transition: all .5s ease-in-out;
    background-color: #E35C57;
    font-weight: 700;
    color: #fff;
}
.menu_item_img img:hover{
    transition: all .5s ease-in-out;
    transform: scale(1.3);
}
}




/* MENU */

.nav_center_title{
    font-size: 30px;
}
.nav_center_title span{
    color: #E35C57;
}

.menu_category {
    margin: 3% 0;
    display: flex;
    justify-content: center;  
    border: 1px solid #000;
    border-left: none;
    border-right: none;
}
.menu_category a{
    padding: 1% 4%;
    font-size: clamp(20px, 3vw, 30px);

    transition: all .5s ease-in-out;
}
.menu_item_title{
    text-align: center;
    font-size: clamp(20px, 3vw, 30px);

    
}
.menu_position{
    margin-top: 3%;
}
.menu_item {
    display: grid;
    grid-template-columns: 3fr 5fr 3fr;
    margin-top: 5%;

}
.menu_item_img{
    display: flex;
    align-items: center;

}
.menu_item_img img{
    width: 70%;

    transition: all .5s ease-in-out;

}
.menu_item_overview {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: clamp(15px, 2vw, 22px);
}
.menu_item_price {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(15px, 4vw, 42px);
    color: #202020;
}

.menu_position{
    position: relative;
}

.menu_item_title{
    font-size: 40px;
    color: #E35C57;
    font-weight: 900;
    margin-top: 10px;
    position: sticky;
    top: 10px;
    border-radius: 50px;
    background-color: rgba(249, 245, 230, .3);

    
    backdrop-filter: blur(10px); /* Измените значение по вашему вкусу */
    z-index: 1;
}


.btn_app{
    position: fixed;
    bottom: 5%;
    right: 5%;
    border-radius: 50px;
    border: 1px solid black;
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    padding: 10px;

    z-index: 10000;
}