﻿/* style.css */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: normal;
    line-height: 26px;
    overflow-x: hidden;
    margin: 0 auto;
    padding: 0;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-color: black;
}

/* 🖥 Очень широкие экраны (например 4K) */
@media (min-aspect-ratio: 21/9) {
    body {
        background-size: 100% auto; /* растягиваем по ширине, чтобы не было черных полос */
        background-position: center center;
    }
}


#footer {
    margin: 0;
    padding: 20px 0px 0px 0px;
    height: auto;
    background-color: #202020a6;
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    color: #333;
    line-height: 1.25;
}

#h1 {
    opacity: 1;
    animation: fadeInLeft .8s;
    -webkit-animation-delay: 1s;
    animation-delay: .3s;
    font-weight: 400;
    opacity: 1;
    visibility: visible;
    font-family: 'Roboto', sans-serif;
    display: block;
    font-size: 56px;
    color: #ffffffe8;
    text-align:center;
}

    #h1 .real {
        color: #c07e25;
        text-transform: uppercase;
    }

    #h1 .delivery {
        color: #c07e25;
    }

#h2 {
    opacity: 1;
    animation: fadeInLeft .8s;
    -webkit-animation-delay: 1s;
    animation-delay: .3s;
    font-weight: 300;
    opacity: 1;
    visibility: visible;
    font-family: 'Roboto', sans-serif;
    display: block;
    font-size: 38px;
    text-align: center;
    margin: 20px 80px 0px 0px !important;
    color: #969770;
}

    #h2::before {
        content: '';
        background-image: url('../../img/drova.png');
        content: ""; /* обязательно */
        display: inline-block; /* чтобы занимало место */
        width: 55px;
        height: 40px;
        opacity:0.7;
        margin-right: 8px; /* отступ от текста */
        background-size: cover;
        background-position: center;
        vertical-align: middle; /* выравниваем по тексту */
    }

#h3 {
    opacity: 1;
    animation: fadeInLeft .8s;
    -webkit-animation-delay: 1s;
    animation-delay: .3s;
    font-weight: 300;
    opacity: 1;
    visibility: visible;
    font-family: 'Roboto', sans-serif;
    display: block;
    font-size: 36px;
    color: #ffffffe8;
    text-align: right;
    margin: 80px 80px -120px 0px !important;
}

.city {
    text-decoration-line: underline; /* включаем подчёркивание */
    text-decoration-style: wavy; /* делаем волнистым */
    text-decoration-color: #979870; /* задаём цвет */
    text-underline-offset: 15px; /* отступ от текста (необязательно, но красиво) */
    text-decoration-thickness: 2px; /* толщина подчёркивания */
}

a {
    color: #abac7f;
    text-decoration: none !important;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

img {
    max-width: 100%;
    width: 100%;
    transition: all 0.2s;
}

    img:hover {
        transform: scale(1.1);
    }

a:hover {
    color: #abac7f;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

a:hover,
a:focus {
    color: #abac7f;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0;
    font-size: 15px;
    color: #929292;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
}

.z-index {
    z-index: 9;
}

.position-relative {
    position: relative !important;
}

#main {
    width: 1130px;
    margin: 0 auto;
    padding: 20px 0px 10px 0px;
    display: block; /* больше не flex, чтобы блоки не мешали */
    /* для шапки можно сделать отдельный flex-контейнер */
}

#header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px; /* отступ снизу для #first-screen */
}


#main #header2 a {
    font-size:18px;
    padding:10px;
}

#footer #header2 a {
    font-size: 15px;
    padding: 10px;
}

#footer .service {
    color: #fafafa;
    font-size: 15px;
    font-weight: 200;
    margin: 10px 0px -10px 0px;
    padding: 0px;
}

#footer .kapitoly {
    margin: 15px 0px 0px 0px;
    font-size: 16px;
    color: #ffffff;
    padding: 3px;
    font-weight: 300;
    background-color: #0000004f;
}

.black-logo {
    color: #abac7f;
}

.navbar-brand img {
    width: 50px;
    padding: 5px;
    background: -webkit-linear-gradient(180deg, #abac7f, #828260);
    background: -o-linear-gradient(180deg, #abac7f, #828260);
    background: linear-gradient(180deg, #abac7f, #828260);
    border-radius: 4px;
}

.navbar-brand #logoname {
    vertical-align: middle;
    float: right;
    margin: 6px 0px 15px 15px;
    font-size: 22px;
}
.navbar-brand #logoname span {
    font-size: 22px;
}


.first-screen {
    position: relative;
    margin: 160px 0px 600px 0px;
}



.utka {
    position: relative;
    width: 45%;
    height: 300px;
    overflow: hidden;
    float: left;
    border: solid 10px #ffffff06;
    outline: solid 2px #ffffff26;
    border-radius: 60px;
    text-align: left;
    margin: 0px 0px 0px 70px;
}

.utka2 {
    position: relative;
    width: 45%;
    height: 300px;
    overflow: hidden;
    float: left;
    border: solid 10px #ffffff06;
    outline: solid 2px #ffffff26;
    border-radius: 60px;
    text-align: right;
    margin: 0px 0px 0px -15px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fade 12s infinite;
}

/* Картинки */
.slide1 {
    background-image: url("../../img/utka_pechenaja.jpg");
    animation-delay: 0s;
}

.slide2 {
    background-image: url("../../img/gotovaja_utka_s_dostavkoj_na_dom.jpg");
    animation-delay: 4s;
}

.slide3 {
    background-image: url("../../img/utka_v_vine.jpg");
    animation-delay: 8s;
}

.slide0 {
    background-image: url("../../img/utka_s_dostavkoj.jpg");
    animation-delay: 12s;
}

.slide4 {
    background-image: url("../../img/gusak_vinnitsa.jpg");
    animation-delay: 4s;
}

.slide5 {
    background-image: url("../../img/zapechenniy_gus_dostavkoj_na_dom.jpg");
    animation-delay: 0s;
}

.slide6 {
    background-image: url("../../img/gus_pechenyj.jpg");
    animation-delay: 8s;
}

.slide61 {
    background-image: url("../../img/gus_s_dostavkoj.jpg");
    animation-delay: 12s;
}

.slide62 {
    background-image: url("../../img/roast-duck-with-potato.jpg");
    animation-delay: 16s;
}

.slide7 {
    background-image: url("../../img/indeyka-s-jablokami-zapechennaya-v-duhovke.jpg");
    animation-delay: 8s;
}

.slide8 {
    background-image: url("../../img/induk_domashnij_na_zakaz.jpg");
    animation-delay: 4s;
}

.slide9 {
    background-image: url("../../img/indushatina.jpg");
    animation-delay: 0s;
}



.slide10 {
    background-image: url("../../img/ne_kuriza_gril.jpg");
    animation-delay: 0s;
}
.slide11 {
    background-image: url("../../img/kuriza_zapechennaja.jpg");
    animation-delay: 4s;
}
.slide12 {
    background-image: url("../../img/kuritza_na_zakaz.jpg");
    animation-delay: 8s;
}

/* Анимация плавной смены */
@keyframes fade {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    41% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.preutka {
    float: left;
    width: 45%;
    text-align: right;
}

.preutka2 {
    float: right;
    width: 45%;
    text-align: left;
    margin: 0px 40px 0px 0px;
}

/* Затемнение по краям */
.utka::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient( circle, rgba(0, 0, 0, 0) 60%, /* центр прозрачный */
    rgba(0, 0, 0, 0.8) 100% /* края черные */
    );
    pointer-events: none; /* чтобы клики проходили сквозь слой */
    z-index: 2;
}

.price {
    text-transform: uppercase;
    font-weight: 300;
    color: #abac7f;
    font-size: 30px;
    margin: 10px 0px -5px 0px;
    border-bottom: solid 1px #ffffff2a;
    padding: 0px 0px 6px 0px;
}

.first-screen h2 {
    opacity: 1;
    animation: fadeInLeft .8s;
    -webkit-animation-delay: 1s;
    animation-delay: .3s;
    font-weight: 400;
    opacity: 1;
    visibility: visible;
    font-family: 'Roboto', sans-serif;
    display: block;
    font-size: 53px;
    color: #ffffffe8;
}

.first-screen h3 {
    opacity: 1;
    margin: 10px 0px 0px 0px;
    animation: fadeInLeft .8s;
    -webkit-animation-delay: 1s;
    animation-delay: .3s;
    font-size: 5rem;
    font-weight: 400;
    color: #9d9d74;
    opacity: 1;
    visibility: visible;
    font-family: 'Roboto', sans-serif;
    display: block;
    position: relative;
    font-size: 48px;
    line-height: 45px;
}

.first-screen .desc {
    opacity: 1;
    font-size: 24px;
    color: #fff;
    margin: 40px 0px 10px 0px;
    font-weight: 300;
}

.first-screen .delivery {
    opacity: 1;
    font-size: 22px;
    margin: 40px 0px 10px 0px;
    font-weight: 300;
    color: #abac7f;
}

.first-screen .delivery img {
    max-width: 70px;
    float:left;
}

.first-screen .delivery .desc {
    vertical-align: middle;
    float: left;
    margin: 3px 0px 15px 25px;
    font-size: 22px;
    color: #abac7f;
    line-height: 1.35;
}

#sideMenu {
    display:none;
}

юmenu-icon {
    display:none;
}

#orderbtnmob {
    display: none;
}

.orderbtn {
    border-radius: 30px;
    margin: 30px 0px 0px 0px;
    font-size: 18px;
    width: fit-content;
    background-color: #828260;
    color: #ffffff;
    padding: 10px 20px 10px 20px;
}
.orderbtn:hover {
    cursor:pointer;
}
.orderbtn a {
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.35px;
    font-size: 18px;
}

.orderbtn2 {
    margin:0px 0px 0px 10px;
    border-radius: 30px;
    font-size: 18px;
    width: fit-content;
    background-color: #828260;
    color: #ffffff;
    padding: 10px 10px 10px 10px;
}

.orderbtn2:hover {
    cursor: pointer;
}

.orderbtn2 a {
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.35px;
    font-size: 18px;
}

.diver {
    clear:both;
    height:180px;
}

.titleh {
    margin: 0px 0px 40px 0px;
    text-transform: uppercase;
    font-weight: 300;
    color: #abac7f;
    font-size: 32px;
    text-align: center;
}

#secondscreen, #thirdscreen {
}

#secondscreen .blocx {
    float: left;
    width: fit-content;
    min-width: 37%;
    text-align: center;
    margin: 0px 40px 0px 0px;
    border: solid 1px #aaaaaa03;
    border-radius: 35px;
    padding: 25px;
    background-color: #1d1d1de0;
    -webkit-box-shadow: 12px -10px 17px -6px rgba(0, 0, 0, 0.55);
    -moz-box-shadow: 12px -10px 17px -6px rgba(0,0,0,0.55);
}
#secondscreen .blocx img {
    width: 80px;
}
    #secondscreen .blocx h2 {
        color: #abac7f;
        font-size: 25px;
        font-weight: 400;
        margin-bottom: 30px;
        margin-top: 20px;
        letter-spacing: 0.7px;
        font-family: 'Roboto', sans-serif;
    }
#secondscreen .blocx p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 100;
    margin-bottom: 10px;
    letter-spacing: 0.7px;
    font-family: 'Roboto', sans-serif;
}

#thirdscreen .blocx img {
    float: left;
    width: 150px;
}
#thirdscreen .blocx .content {
    float: left;
    margin:0px 0px 0px 80px;
}
#thirdscreen .blocx .content p {
    padding: 0;
    margin: 0;
    font-size: 22px;
    color: #abac7f;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
}

#thirdscreen .blocx .content .moreinfo {
    margin:-5px 0px 0px 50px;
    font-size: 17px;
    color: #dddddd;
    font-weight: 100;
}

.blocx .inner {
    padding: 30px;
    border: solid 1px #fafafa14;
    border-radius: 25px;
    /*box-shadow: inset 2px 2px 14px rgba(0, 0, 0, 0.15);*/
}


#mainimage {
    display: none;
}


#info {
    margin: 40px 0px 80px 0px;
    padding: 0px 40px 40px 40px;
    background-color: #00000099;
    border: solid 1px #66666699;
    border-radius: 60px;
}

    #info h2 {
        font-size: 27px;
        color: #ffffff;
        font-weight: 300;
        margin: 80px 0px 30px 0px;
        text-align: center;
    }

    #info h3 {
        font-size: 25px;
        color: #ffffff;
        font-weight: 300;
        margin: 80px 0px 30px 0px;
        text-align: center;
    }

    #info p {
        font-size: 18px;
        font-weight: 300;
        line-height: 29px;
        text-align: justify;
        margin: 10px 0px 20px 0px;
    }

    #info ul, #info ol {
        color: #abac7f;
        font-size: 18px;
        font-weight: 300;
        line-height: 29px;
        text-align: justify;
        margin: 10px 0px 20px 0px;
    }

        #info ul li, #info ol li {
        }

    #info .article-list a {
        display: block;
        margin: -6px 0px 6px 0px;
    }





.t898__icon_link {
    scale: 1.3 !important;
    border: solid 1px #ffffffc4;
    padding: 1px !important;
}