@import "ui.css?v=5";
@import "vars.css";

/*hero*/
.hero {
    position: relative;
    width: 100%;
    height: max(100vh, 750px);
}

.hero__slide {
    position: relative;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__slide::before,
.hero__slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

.hero__slide::before {
    background: rgba(0, 0, 0, 0.2);
}

.hero__slide::after {
    background: linear-gradient(to top, var(--black) 0%, rgba(0, 0, 0, 0.01) 100%);
    z-index: 2;
    height: 50%;
    bottom: 0;
    top: auto;
}

.hero__container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.hero__swiper {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero__nav {
    padding-bottom: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
}

.hero__buttons {
    display: flex;
    gap: 30px;
}

.hero__pagination {
    position: relative;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    display: flex;
    gap: 37px;
}

.hero__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 !important;
    background: transparent;
    border: 1px solid var(--white);
}

.hero__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--white);
}

/*header*/
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    padding: 25px 0;
    background: #F7F7F7;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu__icon {
    position: relative;
    z-index: 50;
    width: 52px;
    height: 22px;
    cursor: pointer;
}

.menu__icon span,
.menu__icon::before,
.menu__icon::after {
    position: absolute;
    display: block;
    transition: transform 0.3s ease 0s,
        background 0.3s ease 0s;
    background: #525252;
    height: 1px;
}

.menu__icon::before,
.menu__icon::after {
    content: "";
    width: 82.69%;
}

.menu__icon span {
    width: 100%;
    top: 50%;
    transform: translateY(-50%) scale(1);
}

.menu__icon::before {
    top: 0;
}

.menu__icon::after {
    bottom: 0;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 60px;
}

.header__logo img {
    width: 206px;
    height: auto;
}

.header__contacts {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header__contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

a.header__contact {
    transition: opacity 0.3s ease 0s;
}

a.header__contact:hover {
    opacity: 0.8;
}

.header__contact-icon {
    width: 30px;
    height: 30px;
    border: 1px solid #525252;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__contact-icon img {
    width: 17px;
    height: auto;
}

.header__contact-txt {
    display: flex;
    flex-direction: column;
    color: #525252;
}


.menu__body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(7, 7, 7, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0s;
}

.menu._active .menu__body {
    opacity: 1;
    visibility: visible;
}

.menu__body-inner {
    width: calc((100vw - 1320px) / 2 + 334px);
    height: 100%;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease 0s;
}

.menu._active .menu__body-inner {
    transform: translateX(0);
}

.header .menu._active .menu__icon span,
.header .menu._active .menu__icon::before,
.header .menu._active .menu__icon::after {
    background: var(--black);
}

.menu._active .menu__icon span {
    transform: translateY(-50%) scale(0);
}

.menu._active .menu__icon::before {
    transform: rotate(45deg);
    top: 44%;
}

.menu._active .menu__icon::after {
    transform: rotate(-45deg);
    bottom: 44%;
}

.menu__body-inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--white);
    clip-path: polygon(10% 0, 15% 50%, 10% 100%, 0 100%, 0 0);
    right: 0;
    transform: translateX(99%);
}

.menu__body-content {
    position: relative;
    left: calc((100vw - 1320px) / 2);
    top: 90px;
    width: 340px;
}

.menu__body-content>*:not(:first-child) {
    padding-top: 38px;
    border-top: 1px solid #D9D9D9;
}

.menu__body-content>*:not(:last-child) {
    padding-bottom: 38px;
}

.menu__list>li:not(:first-child) {
    margin-top: 20px;
    display: block;
}

.menu__contact-txt {
    color: #ACACAC;
}

a.menu__contact-txt {
    transition: opacity 0.3s ease 0s;
}

a.menu__contact-txt:hover {
    opacity: 0.7;
}

.menu__link {
    transition: color 0.3s ease 0s;
}

.menu__link:hover,
.menu__link._active {
    color: #EAA854;
}

.menu__contacts-inner>*:not(:first-child),
.menu__buttons-inner>*:not(:first-child) {
    margin-top: 12px;
}

.menu__contacts>*:not(:first-child),
.menu__buttons>*:not(:first-child) {
    margin-top: 20px;
}

.menu__contacts-socials {
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu__contacts-soc {
    width: 35px;
    height: 35px;
    border: 1px solid var(--orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease 0s;
}

.menu__contacts-soc:hover {
    opacity: 0.7;
}

.menu__contacts-soc img {
    width: 20px;
    height: auto;
}

.menu__contact-txt {
    display: flex;
    flex-direction: column;
}

.menu__copyright {
    color: #ACACAC;
    font-size: 11px;
}

/*header-main*/
.header.header-main {
    position: fixed;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

.header.header-main .menu__icon span,
.header.header-main .menu__icon::before,
.header.header-main .menu__icon::after {
    background: var(--white);
}

.header.header-main .header__contact-icon {
    border-color: var(--white);
}

.header.header-main .header__contact-txt {
    color: var(--white);
}


/*footer*/
.footer {
    background: var(--black);
}

.footer__desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.footer * {
    color: var(--white);
}

.footer-desktop__left {
    display: flex;
    gap: 60px;
}

.footer-desktop__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

a.footer-desktop__item,
.footer-desktop__link {
    transition: opacity 0.3s ease 0s;
}

a.footer-desktop__item:hover,
.footer-desktop__link:hover {
    opacity: 0.8;
}

.footer-desktop__item::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border: 3px solid var(--white);
    border-radius: 50%;
}

.footer-mob {
    display: none;
}

/*events*/
.events {
    padding: 100px 0;
}

.events__container>*:not(:first-child) {
    margin-top: 50px;
}

.events__img-wrap {
    width: 100%;
    position: relative;
}

.events__img-wrap-inner {
    padding-bottom: 30.6%;
}

.events__intro {
    display: flex;
    align-items: center;
    gap: 55px;
}

.events__intro .h1 {
    text-transform: uppercase;
    line-height: 1;
}

.events__intro .h5 {
    max-width: 483px;
}

.events__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0 50px 0;
    border-top: 1px solid var(--stroke);
}

.events__img-wrap-mob {
    display: none;
}

.event__date {
    flex: 0 0 220px;
    color: #B1B1B1;
}

.event__title,
.event__txt {
    flex: 0 0 340px;
}

.event__txt {
    margin-right: 20px;
}

.event__price {
    flex: 0 0 100px;
}

.event__button {
    padding: 14px 28px;
    font-size: 14px;
}

/*event-slider*/
.event-slider {
    overflow: hidden;
    padding-bottom: 100px;
}

.event-slider__line>*:not(:last-child) {
    padding-right: 10px;
}

.event-slider__slide {
    width: fit-content !important;
}

.event-slider__img-wrap {
    position: relative;
    width: 973px;
}

.event-slider__img-wrap-inner {
    padding-bottom: 63.93%;
}

.event-slider__swiper,
.event-slider__container {
    overflow: visible;
}

.event-slider__container>*:not(:first-child) {
    margin-top: 30px;
}

.event-slider__navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.event-slider__nav-btn {
    width: 55px;
    height: 55px;
    border: 1px solid #EAA854;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease 0s;
    user-select: none;
}

.event-slider__nav-btn img {
    width: 26px;
    height: auto;
}

.event-slider__nav-btn:hover {
    background: #ffead4;
}

.event-slider__nav-btn.swiper-button-disabled {
    pointer-events: none;
}

.event-slider__nav-btn._next {
    transform: rotate(180deg);
}

/*birthday*/
.birthday .events__container {
    padding: 100px 0;
    display: flex;
    padding: 0 0 100px 0;
}

.birthday__container {
    display: flex;
    gap: 55px;
}

.birthday__video {
    width: 331px;
    height: 574px;

    /*под снос*/
    background-image: url('/assets/img/birthday/video.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.birthday__info>*:not(:first-child) {
    margin-top: 34px;
}

.birthday__txt-wrap>*:not(:last-child) {
    padding-bottom: 28px;
}

.birthday__txt-wrap>*:not(:first-child) {
    padding-top: 28px;
    border-top: 1px solid var(--stroke);
}

.birthday__info {
    flex-grow: 1;
}

.birthday__txt-row .h5 {
    max-width: 539px;
}

.birthday__txt-wrap-mob {
    display: none;
}

/*rest-menu*/
.rest-menu {
    padding: 100px 0;
}

.rest-menu__container>*:not(:first-child) {
    margin-top: 100px;
}

.rest-menu__intro {
    gap: 75px;
}

.rest-menu__intro .h5 {
    max-width: none;
}

.rest-menu__line>* {
    padding-right: 38px;
}

.rest-menu__img-wrap {
    position: relative;
    width: 100%;
}

.rest-menu__img-wrap-inner {
    padding-bottom: 151.24%;
}

.rest-menu__slide>*:not(:first-child) {
    margin-top: 25px;
}

.rest-menu__title {
    padding-bottom: 15px;
    border-bottom: 1px solid #C1C1C1;
}

.rest-menu__description {
    margin-top: 15px;
}

.rest-menu__button {
    padding: 14px 28px;
    font-size: 14px;
}

.rest-menu__swiper {
    width: 1165px;
    margin: 0 auto;
}

.rest-menu__slider-wrap {
    position: relative;
}

.rest-menu__navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*about*/
.about {
    padding: 145px 0;
}
.contact,
.events,
.rest-menu {
    padding-top: 145px;
}

.about__container {
    min-height: 603px;
    display: flex;
    align-items: center;
    position: relative;
}

.about__content-top .h1 {
    text-transform: uppercase;
    max-width: 400px;
    line-height: 1;
}

.about__content-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid #C1C1C1;
}

.about__content-top p {
    max-width: 380px;
}

.about__content-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 40px;
}

.about__content-bottom p {
    max-width: 400px;
}

.about__content {
    width: 100%;
}

.about__slide-img-wrap {
    width: 418px;
    position: relative;
}

.about__img-wrap-inner {
    padding-bottom: 150%;
}

.about__swiper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: visible;
    width: 418px;
    height: 627px;
}

.about__swiper-mob,
.about__swiper-nav-mob {
    display: none;
}

.about__swiper-other {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about__pagination {
    width: max-content;
    color: #EAA854;
}

.about__swiper-nav {
    display: flex;
    gap: 20px;
}

/*team*/
.team {
    padding: 100px 0;
}

.team__img-wrap {
    position: relative;
    width: 354px;
}

.team__img-wrap-inner {
    padding-bottom: 147.74%;
}

.team__intro {
    display: flex;
    justify-content: flex-end;

}

.team__intro .h1 {
    text-transform: uppercase;
    padding-bottom: 42px;
    border-bottom: 1px solid #C1C1C1;
    flex: 0 0 835px;
}

.team__cards {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.team__card>*:not(:first-child) {
    margin-top: 28px;
}

.team__card-txt-content>*:not(:first-child) {
    margin-top: 5px;
}

.team__card-bottom {
    padding-top: 186px;
}

.team__card-middle {
    padding-top: 68px;
}

/*rewards*/
.rewards {
    padding: 80px 0 100px 0;
}

.rewards__list {
    display: flex;
    align-items: flex-start;
    gap: 70px 40px;
    counter-reset: my-awesome-counter;
}

.rewards__item {
    flex: 1;
    counter-increment: my-awesome-counter;
}

.rewards__list:has(.rewards__item:nth-child(7)) {
    flex-wrap: wrap;
}

.rewards__list:has(.rewards__item:nth-child(7)) .rewards__item {
    flex: 0 0 22%;
}

.rewards__counter {
    color: var(--text-gray);
    padding-bottom: 12px;
}

.rewards__counter::before {
    content: counter(my-awesome-counter, decimal-leading-zero);
}

.rewards__item>*:not(:last-child) {
    border-bottom: 1px solid #C1C1C1;
}

.rewards__item>*:not(:last-child, :first-child) {
    padding-bottom: 20px;
}

.rewards__item>*:not(:first-child) {
    padding-top: 20px;
}

.rewards__img-wrap {
    position: relative;
    width: 186px;
}

.rewards__img-wrap-inner {
    padding-bottom: 53.76%;
}

.rewards__mini-list>li {
    position: relative;
    padding-left: 28px;
}

.rewards__mini-list>li::before {
    content: "";
    position: absolute;
    display: block;
    top: 3px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

.rewards__mini-list>*:not(:first-child) {
    margin-top: 20px;
}

.rewards__mini-list>li span {
    font-weight: 700;
}

.rewards__container .h1 {
    text-transform: uppercase;
}

.rewards__container>*:not(:first-child) {
    margin-top: 100px;
}

/*contact*/
.contact {
/*    padding: 100px 0;*/
}

.contact__container {
    display: flex;
    align-items: flex-start;
    gap: 55px;
}

.contact__container>* {
    flex-grow: 1;
}

.contact__map {
    width: 623px;
    height: 500px;

    /* background-image: url('/assets/img/contact/map.png'); */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
}

.contact__left .h1 {
    text-transform: uppercase;
    padding-bottom: 42px;
    line-height: 1;
}

.contact__left>*:not(:last-child) {
    border-bottom: 1px solid #C1C1C1;
}

.contact__left>*:not(:last-child, :first-child) {
    padding-bottom: 19px;
    padding-top: 19px;
}

.contact__left>*:not(:first-child) {
    padding-top: 19px;
}

.contact__socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact__social {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: opacity 0.3s ease 0s;
}

.contact__social:hover {
    opacity: 0.7;
}

.contact__social .menu__contacts-soc:hover {
    opacity: 1;
}

.contact__social-phone span {
    color: #D97B00;
    text-decoration: underline;
}

.contact__schedule>*:not(:first-child) {
    margin-top: 19px;
}

.contact__schedule p {
    display: flex;
    flex-direction: column;
}

.contact__buttons {
    display: flex;
    gap: 20px;
}

.contact__buttons .button {
    padding: 15px;
}

.birthday__video-wrapper {
    width: 50%;
}

.birthday__video-wrapper .birthday__video-item {
    width: 100%;
}

.rest-menu__description {
    height: 7vw;
}

.rent_redesign {
    padding: 100px 0;
}

.button.same-width {
    width: 65%;
    text-align: center;
}

.container_contact__map {
    padding-top: 60px;
    padding-bottom: 60px;
    /* display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; */
}

a.menu__contact-txt {
    color: #EAA854;
    text-decoration: underline;
}