body {
    background: #000;
}

.__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;
}

/*------------contact*/

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

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

.contact {
    color: #444444;
}

.__container-contact {
    margin: 0 auto;
    text-align: center;
    padding-top: 50px;
}

.contact__heading {
    font-size: clamp(1.375rem, 0.4821rem + 4.4643vw, 4.5rem);
    color: #fff;
}

.contact__description {
    font-size: clamp(0.875rem, 0.7679rem + 0.5357vw, 1.25rem);
    margin: clamp(0.75rem, 0.5179rem + 1.1607vw, 1.5625rem) 30px;
    color: #fff;
}

.contact__text {
    font-size: 18px;
}

.contact__form {
    background-color: rgba(147, 127, 98, 0.66);
    border-radius: 20px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    max-width: 60%;
    height: 400px;
    margin: clamp(1.5625rem, 1.1161rem + 2.2321vw, 3.125rem) auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.form__input {
    display: flex;
    align-items: baseline;
    justify-content: space-around;
}

.contact__label {
    color: #fff;
    cursor: auto;
}

.contact__input, .contact__textarea {
    background: #fff;
    height: 3em;
    width: 60%;
    border-radius: 10px;
    padding: 10px;
}

.button {
}

.contact__button {
    width: 250px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px 5px;
    border-radius: 10px;
    transition: .3s ease;
}

.contact__button:hover {
    background-color: #937f62;
    color: #fff;
}

.contact__info {
    font-size: clamp(0.875rem, 0.7679rem + 0.5357vw, 1.25rem);
    color: #fff;
}


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

.footer {
    background-color: #6a2c00;
    position: absolute;
    top: 975px;
    width: 100%;
}

.__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;
}

@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;
    }

    .contact__button {
        width: 60%;
    }

    .contact__form {
        max-width: 100%;
        height: 350px;
    }

    .contact__input, .contact__textarea {
        height: 2em;
    }
}