.__container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}

.__container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: clamp(2.5em, 1.7857em + 3.5714vw, 5em);;
}

.header__heading {
    font-size: clamp(0.875rem, 1.0893rem + -1.0714vw, 0.125rem);
    color: #fff;
}

.section__heading {
    font-size: clamp(1.375rem, 0.4821rem + 4.4643vw, 4.5rem);
    text-align: center;
}

/*burger*/
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 15px;
    height: 15px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu__line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

.header__nav.active {
    transition: .5s ease-in-out;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.list__item:last-child {
    background-color: #937f62;
    padding: 5px 10px;
    border-radius: 5px;
    transition: .3s ease;
}

.list__item:last-child:hover {
    background-color: rgba(147, 127, 98, 0.54);
    cursor: pointer;
}

.list__item:last-child > .list__item-link:hover {
    text-decoration: none;
    color: white;
}

.list__item-link {
    color: white;
}

.list__item-link:hover {
    color: #c4c4c4;
    text-decoration: underline;
}


/*-----------hotels*/

.hotels__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    z-index: -1;
    overflow: hidden;
}

.hotels__background-image {
    width: 100%;
    height: 60%;
    object-fit: cover;
    filter: brightness(30%);
}


/*------------hotels*/

.hotels {
}

.__container {
}

.__container-hotels {
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.hotels__heading {
    text-align: center;
    font-size: clamp(1.375rem, 0.4821rem + 4.4643vw, 4.5rem);
    line-height: 1.5em;
    color: #fff;
}

.hotels__description {
    text-align: center;
    font-size: clamp(1.1875rem, 0.8839rem + 1.5179vw, 2.25rem);
}

.hotels__list {
    margin-top: 254px;
}

.hotel {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
}

.hotel:nth-child(2) {
    flex-direction: row-reverse;
}

.hotel__image {
    width: 50%;
    max-width: 550px;
    height: auto;
    max-height: 450px;
    transition: .3s ease-in;
    object-fit: contain;
    padding-right: 15px;
}

.hotel__image:hover {
    scale: 1.1;
    border-radius: 5px;
}

.hotel__content {
    max-width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 0 15px;

    color: #444444;
}

.hotel__name {
    font-size: clamp(1.125rem, 0.875rem + 1.25vw, 2rem);
    font-weight: bold;
    line-height: clamp(2em, 1.4286em + 2.8571vw, 4em);
    text-decoration: underline;
}

.hotel__location {
    font-size: clamp(0.75rem, 0.5714rem + 0.8929vw, 1.375rem);
    color: #ffffff;
    background-color: #937f62;
    padding: 2px 5px;
    transition: .3s ease;
}

.hotel__location:hover {
    background-color: #6a2c00;
}

.hotel__description {
    margin: 20px 0;
    font-size: clamp(0.625rem, 0.4821rem + 0.7143vw, 1.125rem);
    line-height: 1.4;
}

.hotel__price {
    text-shadow: 0 2px 2px rgba(106, 79, 50, 0.54);
    font-size: clamp(0.75rem, 0.6786rem + 0.3571vw, 1rem);
}

.hotel__price-value {
}

.button {
    padding: 10px 25px;
    background-color: #937f62;
    border-radius: 5px;
    transition: .3s ease;
}

.hotel__button {
    color: #fff;
    max-width: 200px;
    margin: 0 auto;
}

.hotel__button:hover {
    background-color: #6a2c00;
}


/*----------footer*/

.footer {
    background-color: #6a2c00;
}

.__container-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em 10px;

    color: #fff;
}

.footer__text {
    font-size: 14px;
}

.footer__nav .nav__list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__nav .list__item-link {
    color: white;
    font-size: clamp(0.75rem, 0.7143rem + 0.1786vw, 0.875rem);
    text-transform: uppercase;
    text-decoration: none;
}

.footer__nav .list__item-link:hover {
    text-decoration: underline;
    color: #c4c4c4;
}

.list__item--footer {

}

@media (max-width: 1000px) {
    .hotels__background {
        height: 70%;
    }
}

@media (max-width: 800px) {
    .button {
        padding: 5px 10px;
        font-size: 12px;
    }
    .hotel {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hotel__image {
        width: 90%;
    }
    .__container-footer {
        flex-direction: column-reverse;
        gap: 25px;
    }
}

@media (max-width: 520px) {
    /*header*/
    .header__nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .header__nav.active {
        display: flex;
        position: absolute;
        top: 2.5em;
        right: 0;
        width: 40%;
        flex-direction: column;
        background-color: rgba(106, 44, 0, 0.70);
        padding: 1em 0;
        border-radius: 10px 0 0 10px;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hotels__background {
        height: 60%;
    }

    .nav__list-footer {
        flex-direction: row;
    }
}