:root {
    --general-color-text: #312C27;
    --accent-color-text: #1F1711;
    --general-color-bg: #FFF9F4;
    --accent-color-bg: #FFE0CB;
    --accent-color: #FFA55C;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.5;
    color: var(--general-color-text);
    background: var(--general-color-bg);
}

.body--open-menu {
    overflow-y: hidden;
}

.container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
}

.wrapper {
    min-height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.main {
    flex-grow: 1;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background .4s;
    background: var(--accent-color);
    border-radius: 60px;
    max-width: 358px;
    height: 62px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    padding: 3px 15px;
}

.button:hover {
    transition: background .4s;
    background: #FF9138;
}

.burger {
    display: none;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.burger span,
.burger span::before,
.burger span::after {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 100px;
    background: var(--general-color-text);
    transition: all .4s;
}

.burger span {
    position: relative;
}

.burger span::before,
.burger span::after {
    content: '';
    position: absolute;
}

.burger span::before {
    top: -8px;
}

.burger span::after {
    bottom: -8px;
}

.header {
    background: url("../img/decor/header_bg.png") 50% 100% / cover no-repeat;
}

.header__top {
    padding-top: 19px;
}

.header__logo {
    max-width: 174px;
    z-index: 11;
}



.header__top-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
}


.nav__list {
    display: flex;
    gap: 4vh 40px;
}


.nav__list-link {
    display: block;
    padding: 5px;
    position: relative;
    z-index: 1;
}

.nav__list-link::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -13px;
    width: 34px;
    height: 34px;
    background: var(--accent-color);
    border-radius: 50%;
    z-index: -1;
    transition: opacity .4s;
    opacity: 0;
}

.nav__list-link:hover::before {
    transition: opacity .4s;
    opacity: 1;
}


.body--open-menu .burger span {
    background: transparent;
}

.body--open-menu .burger span::before {
    top: 0px;
    transform: rotate(45deg);
}

.body--open-menu .burger span::after {
    bottom: 0px;
    transform: rotate(-45deg);
}

.hero-section {
    padding: 50px 0 140px;
}

.hero-section__inner {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
}

.hero-section__content {
    max-width: 520px;
}

.hero-section__info {
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    color: #B197B2;
    line-height: 1.6;
    margin-bottom: 20px;

}

.hero-section__info span {
    display: flex;
    align-items: center;
}

.hero-section__info span::after {
    content: '';
    display: block;
    background: #B197B2;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    margin-left: 10px;
    margin-right: 10px;
    vertical-align: middle;
}

.hero-section__info span:last-child::after {
    content: none;

}

.hero-section__title {
    font-family: 'Gabriola';
    font-weight: 400;
    font-size: 74px;
    line-height: 82%;
    color: var(--accent-color-text);
    margin-bottom: 30px;
}

.hero-section__text {
    margin-bottom: 40px;
    max-width: 360px;
}

.hero-section__button {
    max-width: 360px;
    width: 100%;
}

.hero-section__img {
    margin-right: 247px;
    position: relative;
}

.hero-section__img>img {
    width: 100%;
}

.hero-section__img-play {
    position: absolute;
    bottom: 11%;
    left: calc(100% - 39px);
    display: flex;
    align-items: center;
    max-width: 200px;
    gap: 10px;
    text-align: left;
}

.hero-section__img-play--mobile {
    display: none;
}

.hero-section__img-button {
    position: relative;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--accent-color-bg);
    box-shadow: 0 4px 20px 0 rgba(184, 148, 126, 0.3);
}

.hero-section__img-button img {
    padding-left: 9%;
}

.hero-section__img-button::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    transition: opacity .4s;
    opacity: 0;
}

.hero-section__img-button:hover::before {

    transition: opacity .4s;
    opacity: 1;
}




@media (max-width: 1200px) {
    .hero-section__img {
        margin: 0;
        max-width: 377px;
    }

    .hero-section__img-play {

        position: static;
        max-width: none;
        margin-top: 30px;
    }
}

@media (max-width: 900px) {
    .nav {
        position: fixed;
        inset: 0;
        z-index: 10;
        background: var(--general-color-bg);
        padding: 26vh 15px 30px;
        font-size: 24px;

        transition: all .4s;
        transform: translateY(50%);
        opacity: 0;
        visibility: hidden;
    }

    .body--open-menu .nav {
        transition: all .4s;
        transform: translateY(0%);
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    .burger {
        display: flex;
    }
}

@media (max-width: 800px) {
    .hero-section__inner {
        display: flex;
        justify-content: center;
    }

    .hero-section__content {
        min-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;


    }

    .hero-section__img {
        display: none;
    }

    .hero-section__img-play--mobile {
        display: flex;
        margin: 0 0 30px;
    }

}

@media (max-width: 600px) {
    .hero-section {
        padding-bottom: 80px;
    }

    .hero-section__title {
        font-size: 12vw;
    }

}