* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

body {
    height: 100%;
    font-family: "Golos Text", Arial, sans-serif;
    font-style: normal;
    background-color: #EEE8E3;
    background-image: url(./images/background.jpg);
    background-position: center;
    background-size: cover;
}

@font-face {
    font-family: 'Kudryashev Display';
    src: local('Kudryashev Display Display'), local('Kudryashev-Display-Display'),
        url('fonts/KudryashevDisplay.woff2') format('woff2'),
        url('fonts/KudryashevDisplay.woff') format('woff'),
        url('fonts/KudryashevDisplay.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.header__container {
    max-width: 1600px;
    padding: 30px;
    margin: 0 auto;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    height: 100%;
}

.hero__conteiner {
    width: 100%;
    max-width: 1600px;
    padding: 30px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 5.3vw;
    max-width: 810px;
}

.hero__main {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.hero__label {
    font-weight: 400;
    font-size: clamp(12px, 9.05px + 0.43vw, 16px);
    line-height: 1.13;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: #BA9252;
}

.hero__title {
    font-family: "Kudryashev Display", Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(30px, -2.44px + 4.78vw, 74px);
    line-height: 1.13;
    letter-spacing: 3%;
    margin-bottom: 10px;
}

.hero__text {
    font-weight: 400;
    font-size: clamp(14px, 6.63px + 1.09vw, 24px);
    line-height: 1.15;
    letter-spacing: 2%;
    color: #3D3529;
}

.hero__button {
    font-weight: 700;
    font-size: clamp(14px, 11.05px + 0.43vw, 18px);
    padding: 19px 41px;
    background: linear-gradient(90deg, #D7B989 0%, #BD9046 100%);
    border-radius: 540px;
    width: fit-content;
    color: #ffffff;
}

.hero__image {
    height: 100%;
}

.hero__image img {
    width: 100%;
    max-width: 590px;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 839px) {

    .header__container {
        padding: 30px 30px 10px;
    }

    .header__logo img {
        width: 100%;
        max-width: 452px;
    }

    .hero__main {
        gap: 16px;
    }

    .hero {
        min-height: calc(100vh - 87px);
        height: 100%;
    }

    .hero__conteiner {
        flex-direction: column;
        gap: 60px;
    }

}