/*Обнуление*/
*{padding:0;margin:0;border:0;}
*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}
:focus,:active{outline:none;}
a:focus,a:active{outline:none;}
nav,footer,header,aside{display:block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:14px;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
/*input::-ms-clear{display:none;}*/
button{cursor:pointer;}
button::-moz-focus-inner{padding:0;border:0;}
a,a:visited{text-decoration:none;}
a:hover{text-decoration:none;}
/*ul li{list-style:none;}*/
img{vertical-align:top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}
/*--------------------*/
body{
    font-family: "Roboto", serif;
    position: absolute;
    background: #FBF0E5;
    /*background: #f9fbfd;*/
}
body, html {
    overflow-x: hidden;
}
.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    flex: 1;
}
header{
    background-image: url("../images/backhotels.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 100px;
}
.spaback{
    background-image: url("../images/spaback.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 100px;
}
.casback{
    background-image: url("../images/casback.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 100px;
}
.header__container{
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: #7e4614;
    border-radius: 20px;
    align-items: center;
}
.header__logo h1{
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
}
.header__navigation{
    width: 780px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}
.burger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.header__navigation a{
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.header__button{
    background: none;
    border: 2px solid white;
    border-radius: 15px;
    padding: 10px 15px;
    transition: 0.2s;
}
.header__button:hover{
    background: #FFFFFF;
    color: #7e4614;
    transition: 0.2s;
}
.header__block{
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.header__block h2{
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #FFFFFF;
}
.header__block p{
    font-size: 18px;
    color: #FFFFFF;
    max-width: 800px;
}
.accommodation-disclaimer {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 30px 0;
    font-size: 18px;
    color: #333;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.accommodation-disclaimer h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.accommodation-disclaimer p {
    line-height: 1.6;
    margin-bottom: 10px;
}
/*--------------------*/
.hotels__container{
    max-width: 1500px;
    margin: 0 auto;
}
.hotels__block{
    margin-top: 50px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.hotel-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: white;
    max-width: 1000px;
}

.hotel-image {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}

.hotel-info {
    flex: 1;
}
.hotel-name{
    display: flex;
    justify-content: space-between;
}
.hotel-name-text {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
    min-height: 20px;
}

.stars {
    color: gold;
    font-size: 16px;
}

.hotel-location {
    font-size: 11px;
    color: gray;
}

.hotel-description,.hotel-description2 {
    font-size: 21px;
}
.show-more {
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    color: blue;
}

.hotel-rating {
    text-align: right;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.rating-text {
    font-size: 21px;
    font-weight: bold;
}

.reviews-count {
    font-size: 12px;
    color: gray;
}

.rating-score {
    background: #7e4614;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 6px;
    max-width: 44px;
}

.availability-btn {
    margin-top: 10px;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background: #7e4614;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid #7e4614;
    display: flex;
    justify-content: flex-end;
    position: relative;
    top: -4px;
}

.availability-btn:hover {
    background: none;
    border: 1px solid #7e4614;
    transition: 0.2s;
    color: #7e4614;
}
.btn-img{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*--------------------*/
.about__container{
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 70px;
}
.about__title{
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: end;
}
.about__title h2{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}
.about__title p{
    font-size: 21px;
    max-width: 800px;
}
.about__main-title{
    max-width: 800px;
}
.about__main-title p{
    font-size: 21px;
}
.about__main-title h2{
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 20px;
}
.about__main-content h1{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
}
.about__main-content{
    margin: 40px;
}
.about__main-content_block{
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 4px solid black;
    padding-bottom: 30px;
}
.about__main-content_block-img img{
    width: 400px;
    height: 400px;
    border-radius: 20px;
}
.about__main-content_block-text h2{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}
.about__main-content_block-text p{
    font-size: 21px;
    margin-bottom: 30px;
}
.about__main-content_block-text h3{
    font-size: 18px;
    margin-left: 50px;
}
.about__main-content_block-text span{
    font-size: 24px;
    font-weight: 600;
}
.about__main-content_block-text h4{
    margin-top: 30px;
    font-size: 21px;
}
.about__main-description{
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 70px;
}
.about__main-description__why h2,.about__main-description__stay h2{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}
.about__main-description__why p,.about__main-description__stay p{
    font-size: 24px;
}
/*--------------------*/
.footer {
    background: white;
    color: black;
    padding: 50px 0 0 0;
    margin-top: 70px;
}
.footer__container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.footer__container a{
    color: #337ab7;
}
.footer__links{
    display: flex;
    flex-direction: column;
}
.footer__pages{
    display: flex;
    flex-direction: column;
}
.footer__logotext h1{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer__logotext p{
    font-size: 21px;
    max-width: 300px;
}
.footer__links a,.footer__pages a{
    font-size: 21px;
    margin-bottom: 15px;
}
.footer__contact p{
    font-size: 21px;
    max-width: 300px;
}
.footer-text{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    padding: 10px 0;
    background-color: #FBF0E5;
}
.footer__warning {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-top: 20px;
    justify-content: center;
}

.footer__icon {
    font-size: 24px;
    margin-right: 10px;
}

.footer__warning p {
    max-width: 600px;
    text-align: center;
}


@media(max-width: 650px){
    .hotel-card{
        display: flex;
        flex-direction: column;
    }
    .hotel-image{
        width: 100%;
    }
}
@media(max-width: 510px){
    .header__block h2{
        font-size: 34px;
    }
    .header__block p{
        font-size: 12px;
    }
}
@media(max-width: 850px){
    #hotel1{
        background-image: url("../images/best2.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.55); /* Цвет затемнения */
        background-blend-mode: darken;
    }
    .about__main-content_block-img img{
        display: none;
    }
    #hotel2{
        background-image: url("../images/boutique3.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.55); /* Цвет затемнения */
        background-blend-mode: darken;
    }
    #hotel3{
        background-image: url("../images/best6.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.55); /* Цвет затемнения */
        background-blend-mode: darken;
    }
    #hotel4{
        background-image: url("../images/boutique4.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.55); /* Цвет затемнения */
        background-blend-mode: darken;
    }
    #hotel5{
        background-image: url("../images/best4.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.55); /* Цвет затемнения */
        background-blend-mode: darken;
    }
    #hotel6{
        background-image: url("../images/boutique1.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.55); /* Цвет затемнения */
        background-blend-mode: darken;
    }
    #spahotel1{
        background-image: url("../images/best1.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.55); /* Цвет затемнения */
        background-blend-mode: darken;
    }
    #spahotel2{
        background-image: url("../images/best3.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.55); /* Цвет затемнения */
        background-blend-mode: darken;
    }
    #spahotel3{
        background-image: url("../images/spa3.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.55); /* Цвет затемнения */
        background-blend-mode: darken;
    }
    #spahotel4{
        background-image: url("../images/spa4.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.55); /* Цвет затемнения */
        background-blend-mode: darken;
    }
    #spahotel5{
        background-image: url("../images/best5.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.55); /* Цвет затемнения */
        background-blend-mode: darken;
    }
    #cashotel1{
        background-image: url("../images/casino1.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.55); /* Цвет затемнения */
        background-blend-mode: darken;
    }
    #cashotel2{
        background-image: url("../images/casino2.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.55); /* Цвет затемнения */
        background-blend-mode: darken;
    }
    #cashotel3{
        background-image: url("../images/casino3.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 20px;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.55); /* Цвет затемнения */
        background-blend-mode: darken;
    }
    .about__main-content_block{
        gap: 0;
    }
    .about__title,.about__main-title{
        padding: 0 20px;
    }
    .about__main-description{
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }
}

/*--------------------*/
#Modal21 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modalcontent {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, #7e4614 100%), #FBF0E5;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 450px;
    margin: 20px;
}
.modalcontent img{
    margin-bottom: 20px;
}
.modalcontent p {margin-bottom: 20px;font-size: 18px;color: #FFFFFF}
.modalcontent button {
    margin: 5px;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 10px;
    width: 100px;
    border: 1px solid #b5b5b5;
}
#noBtn:hover{background-color: #cdcdcd;transition: 0.2s;}
#yesBtn:hover{background-color: #cdcdcd;transition: 0.2s;}
.no-scroll {
    overflow: hidden;
}
.modal__yellow{
    background: #FF872A;
}
/*--------------------*/
/*--------------------*/
.cookiebanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #7e4614;
    color: #fff;
    text-align: center;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    opacity: 85%;
    z-index: 100;
}

.cookiebanner p {
    margin: 0;
    font-size: 21px;
}

.cookiebanner a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 3px;
    transition: 0.2s;
    border: 1px solid white;
}

.cookie-button:hover {
    background:none;
    color: white;
    border: 1px solid white;
}

/*--------------------*/
@media(max-width: 690px) {
    .footer__container{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-text{
        text-align: center;
    }
}
@media(max-width: 410px){
    .about__main-content_block-text h2,.about__main-content_block-text span{
        font-size: 22px;
    }
    .about__main-content_block-text p,.about__main-content_block-text h3{
        font-size: 16px;
    }
    .about__main-description__why h2, .about__main-description__stay h2{
        font-size: 26px;
    }
    .about__main-description__why p, .about__main-description__stay p{
        font-size: 18px;
    }
}


@media (max-width: 768px) {
    .burger {
        display: block;
    }
    .header__container{
        display: flex;
        justify-content: space-between;
        padding: 30px;
    }
    .header__navigation{
        position: absolute;
        top: 100px;
        right: 0;
        background: rgb(126, 70, 20);
        width: 200px;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transform: translateX(100%);
        box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.5);
    }
    .header__navigation .header__button2{
        display: block;
    }
    .header__button{
        display: none;
    }
    .header__navigation a{
        margin: 10px 0;
        font-size: 20px;
    }
    .header__navigation.active{
        transform: translateX(0);
    }
    #active{
        color: white;
    }
    .header__logo1{
        display: block;
        font-size: 32px;
        color: white;
        font-weight: 600;
    }
    .steps__main{
        gap: 0;
    }
}

