@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body{
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #1c1c1c;
    color: #fff;
}
a {
    color: #fff;
    text-decoration: none;
}
ul{
    list-style: none;  
    /* убирает подчеркивание ссылки */
    margin: 0;
    padding: 0
}

h1, h1, h3, h4, h5, h6 {
    font-weight: 500;
    margin: 0;
}

img{
    max-width: 100%;
}

p{
    margin: 0;
}

p + p {
    margin-top: 15px;
}

.btn{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 165px;
    height: 50px;

    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;

    background: #f6762c;
    border-radius: 5px;

    transition: opacity 0.3s;
    /* плавное затемнение */

}
.btn:hover{
    opacity: 0.8;
}
.container{
    max-width: 1140px;
    margin: 0 auto;
    /* выравнивает контейнер по середине */
    /* автоматически делит расстояние */
    padding: 0 15px;
}


 /* ------ШАПКА------- */
.header{
    padding: 25px 0px;

}
.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_nav a{
    font-size: 14px;
    opacity: 0.7;

}
.header_nav a:hover{
    opacity: 0.9;
    transition: opacity 0.3s;
}
.header_nav a.active{
    font-size: 14px;
    opacity: 1;

}
.header_nav a.active:hover{
    opacity: 0.9;
    transition: opacity 0.3s;

}
.header_logo{

}


.header_list{
    display: flex;
    gap: 30px;
}

/* Приветсвенная секция */

.welcome{

    box-sizing: border-box;
    min-height: 100vh;

    margin-top: -100px;
    padding: 240px 0px 50px 0px;

    background-image: url("../images/welcome-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.welcome .container {
    display: flex;
    justify-content: flex-start;  /* ← Текст прижат к левому краю */
}

.welcome_text {
    width: 550px;
    margin-left: 0;  /* ← Убираем отступ слева */
}

.welcome_subtitle{
    margin-bottom: 7px;

    font-size: 14px;
    letter-spacing: 0.1em;
}

.welcome_title{
    font-size: 58px;
}

.welcome_desc{
    margin: 40px 0;
    font-weight: 400;
    font-size: 18px;
    opacity: 0.7;
}


/* Список еды */
.food-list_text-wrapper{
    padding: 30px 20px;
}


.food-list {
    padding: 100px 0;
}

.food-list .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* тоже самое */
    gap: 10px;
}

.food-list_card{
    width: 260px;

    overflow: hidden;
    
    background-color: #312f30;
    border-radius: 10PX;
    text-align: center;
}

.food-list_image{
    width: 100%;
    height: 175px;
    object-fit: cover;
    
}

.food-list_title{
    margin-bottom: 13px;
    font-size: 20px;
}

.food-list_desc{
    font-size: 16px;
    opacity: 0.7;
}

/* Order */

.order {
    background: #312f30;
    padding: 60px 0;
}

.order .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 150px;
}

.order_order_image {
    max-width: 470px;
}

.order_text {
    max-width: 360px;
}

.order_title {
        margin-bottom: 15px;
    font-size: 44px;
}

.order_desc {
    opacity: 0.7;
}

.order_price {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.1em;

    color: #f6762c;
}

.order_old-price {
    font-weight: 500;
    letter-spacing: 0.1em;
    text-decoration-line: line-through;
    color: #f6762c;
    opacity: 0.5;
}

.order_price + .order_price {
    margin-left: 3px;
}S

.order .btn {
    margin-top: 10px;
}

/* producT */


.producT {
    padding-top: 150px;
}
.producT .container{
    display: flex;
    flex-wrap: wrap;

    gap: 30px;
}

.product_card {
    box-sizing: border-box;
    
    width: 550px;
    min-height: 300px;
    padding: 60px 30px 60px 290px;

    background-color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/* КАЖДОЕ ЧЁТНОЕ ЗНАЧЕНИЕ */
.product_card:nth-child(even) { 
    padding-left: 30px;
    padding-right: 290px;
}
.product_title {
    margin-bottom: 20px;
    font-size: 30px;
}
.product_desc {
    margin-bottom: 10px;
    opacity: 0.7;
}
.product_price {
    font-weight: 500;
    color: #f6762c;
}
.product_price + .product_old-price{
    margin-left: 5px;
}
.product_old-price {
    font-weight: 500;
    color: #f6762c;
    text-decoration-line: line-through;
    opacity: 0.5;
}
.btn--small {
    width: 140px;
    height: 40px;
    font-size: 12px;
}
.product .btn{
    margin-top: 10px;
}
.card-queen{
    background-image: url("../images/product-1.jpg");
}
.card-hut{
    background-image: url("../images/product-2.jpg");
}
.card-bur{
    background-image: url("../images/product-3.jpg");
}
.card-papa{
    background-image: url("../images/product-4.jpg");
}

/* feedback */


.feedback {
    padding: 200px;
}

.container {

}

.feedback .container{
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 880px;
}

.feedback_image {

}

.feedback_text {
    margin: 0;
    text-align: center;

    width: 370px;
    text-align: center;
}

.feedback_text::before {
    content: url(/images/icons/quote.svg);
}

.feedback_desc {
    opacity: 0.7;
    margin: 40px 0 30px;
}

.feedback_authot {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
}

.feedback_subauthor {
    font-weight: 500px;
    font-size: 12px;
    opacity: 0.7;

    display: block;
}



/* download */



.download {
    background: #312f30;
    padding: 60px 0;
}

.container {
    display: flex;
    justify-content: space-around;
    
}

.download_title {
    font-weight: 500px;
    font-size: 40px;
}


/* Футер */

.foother {
    padding: 60px 0;
    background-color: #1c1c1c;
    border-top: 1px solid #312f30;
}

.foother .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.foother a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
    font-size: 14px;
}

.foother a:hover {
    opacity: 1;
}

/* Колонки */
.foother_contacts,
.foother_nav,
.foother_socials {
    flex: 1;
    min-width: 150px;
}

/* Контакты */
.foother_contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.foother_logo {
    max-width: 100px;
}

.foother_link {
    font-size: 12px;
    opacity: 0.7;
}

/* Навигация */
.foother_nav .foother_list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.foother_list-title {
    flex: 1;
}

.foother_list-title .foother_title {
    font-weight: 500;
    font-size: 16px;
    opacity: 1;
    display: block;
    margin-bottom: 15px;
    color: #fff;
    text-decoration: none;
}

.foother_inner-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.foother_list-item {
    opacity: 0.7;
    margin-bottom: 10px;
    font-size: 14px;
    transition: opacity 0.3s;
    cursor: pointer;
}

.foother_list-item:hover {
    opacity: 1;
}

/* Социальные иконки */
.foother_socials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.foother_social-items {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.foother_socials-link {
    display: inline-block;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.foother_socials-link:hover {
    opacity: 1;
}

.foother_social-icon {
    width: 20px;
    height: 20px;
}

/* Адаптация */

@media (max-width: 1100px) {
    .welcome_desc{
        opacity: 1;
    }
}
@media (max-width: 950px) {
    .order .container{
        flex-direction: column;
        padding-right: 0%;
    }
    .order_text{
        text-align: center;
    }
    .order .btn{
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 850px) {
    .feedback .container{
        flex-direction: column;
    }
    .food-list .container {
        justify-content: space-evenly;
    }

}
@media (max-width: 800px) {
    .foother_socials{
        margin-left: 50px;

    }
}
@media (max-width: 800px) {
    .feedback{
        padding-bottom: 100px;
        padding: 80px ;
    }
}