

/* ============================================
   ############### 1. IMPORTS ###############
   ============================================ */
@import "header.css";
@import "footer.css";


/* ============================================
   ############### 2. GLOBAL STYLES ###############
   ============================================ */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.container-1056 {
  max-width: 1056px;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  position: relative;
  overflow: visible;
}

/* Для экранов 1200px - 1400px */
@media (min-width: 1200px) and (max-width: 1400px) {
  .container-1056 {
    max-width: 900px;
    margin-left: 0;
    margin-right: auto;
  }

  /* Уменьшаем отступы, чтобы навигация не налезала */
  .container-1056 .col-xl-9 {
    max-width: 100%;
    padding-right: 20px;
  }
}

/* Для больших экранов 1300px+ */
@media (min-width: 1400px) {
  .container-1056 {
    max-width: 1056px;
    margin-left: 0;
    margin-right: auto;
  }
}

/* На мобилках и планшетах до 1200px */
@media (max-width: 1199px) {
  .container-1056 {
    max-width: 100%;
    padding: 0 15px;
  }
}


.row {
  margin-left: 0;
  margin-right: 0;
}


/* ============================================
   ############### 3. VISITOR MAIN ###############
   ============================================ */
.visitor {
  margin-top: 0;
}

.visitor__title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 52px 0 32px 0;
}

.visitor__banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}


/* ============================================
   ############### 4. TITLES ###############
   ============================================ */
.main-title {
  font-size: 32px;
  text-transform: uppercase;
  color: #262626;
}

.visitors__title {
  color: #262626;
  font-weight: 700;
  font-size: 38px;
  line-height: 41px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.visitors__desc {
  color: #262626;
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: -0.02em;
}

.article__title {
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  color: #262626;
}

/* ============================================
   ############### 5. NAVIGATION ###############
   ============================================ */
.visitor-nav {
  position: relative;
  height: 100%;
}

.visitors-nav__link {
  font-size: 18px;
  text-decoration: none;
  color: #ffffff;
  display: block;
  transition: opacity 0.3s ease;
}

.visitors-nav__link:hover {
  opacity: 0.8;
}

.navlist__visitors {
  background: #C00000;
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style-type: none;
  padding: 30px;
  border-radius: 16px;
  margin-block-start: 0;
}

/* Только на экранах больше 1300px - sticky */
@media (min-width: 1301px) {
  .navlist__visitors {
    position: sticky;
    top: 30px;
    z-index: 100;
  }

  /* Важно: родитель не должен иметь overflow: hidden */
  .visitor-nav {
    position: relative;
    align-self: flex-start;
  }

  /* Убедимся что нет overflow hidden у родительских блоков */
  .row,
  [class*="col-"],
  .visitor,
  main {
    overflow: visible !important;
  }
}

/* На мобилках и планшетах - обычный блок */
@media (max-width: 1300px) {
  .navlist__visitors {
    position: relative !important;
    top: auto !important;
    margin-bottom: 30px;
  }

  .visitor-nav {
    margin-top: 30px;
  }
}



/* ============================================
   ############### 6. RED BLOCK WITH CARDS ###############
   ============================================ */
/* 6.1 Родительский красный блок */
.red-block {
  border-radius: 20px;
  background-color: #C00000;
  padding: 20px;
  position: relative;
  overflow: visible;
}

/* 6.2 Заголовок внутри красного блока */
.red-block__header {
  border-radius: 20px;
  background-color: var(--color-main);
  padding: 20px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 41px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

/* 6.3 Бант (декоративный элемент) */
.bant-decoration {
  position: absolute;
  top: -14px;
  right: 0px;
  width: auto;
  max-width: 350px;
  height: auto;
  max-height: 200px;
  pointer-events: none;
  z-index: 100;
}

/* 6.4 Контейнер карточек */
.red-block__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* 6.5 Отдельная карточка */
.red-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
}

.red-card__inner {
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-main);
  display: flex;
  flex-direction: column;
  padding: 0;
  background-color: white;
}

.red-card__content {
  padding: 20px 20px 0;
}

.red-card__title {
  font-size: 24px;
  color: var(--color-main);
  margin: 0;
  font-weight: 700;
}

.red-card__text {
  font-family: 'Montserrat', sans-serif;
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.4;
  color: #1a1a1a;
}

.red-card__img {
  width: 100%;
  margin-top: auto;
  display: block;
}


/* ============================================
   ############### 7. PARTY BANNER ###############
   ============================================ */
/* 7.1 Баннер с тусовкой */
.party-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.party-banner__img {
  width: 100%;
  display: block;
}

/* 7.2 Текст поверх баннера */
.party-banner__text {
  position: absolute;
  top: 35%;
  right: 0px;
  transform: translateY(-50%);
  text-align: center;
  max-width: 45%;
  z-index: 10;
}

/* 7.3 Элементы текста */
.banner-title {
  color: #C00000;
  font-weight: 700;
  font-size: 54px;
  line-height: 47px;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
  text-align: center;
  text-transform: uppercase;
}

.banner-subtitle {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 32px;
  line-height: 47px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  text-align: center;
}

.banner-footer {
  color: #C00000;
  font-weight: 700;
  font-size: 36px;
  line-height: 47px;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  text-align: center;
}

/* 7.4 Кнопка под баннером */
.party-button {
  text-align: center;
  margin-top: 30px;
}

.party-button__link {
  display: inline-block;
  background-color: #C00000;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  padding: 14px 40px;
  border-radius: 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.party-button__link:hover {
  background-color: #8B0000;
  transform: scale(1.03);
}

/* ============================================
   ############### 6. ADVANTAGES CARDS ###############
   ============================================ */
.advantages__content {
  margin-top: 20px;
}

/* Контейнер с карточками - отступы 25px */
.advantages__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

/* Колонка карточки - занимает половину (2 карточки в ряд) */
.advantages__col {
  flex: 0 0 calc(50% - 12.5px);
  max-width: calc(50% - 12.5px);
}

/* Карточка на всю ширину (последняя) */
.advantages__col-full {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  overflow: visible;
}

/* Базовая карточка */
.advantage-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  padding: 10px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #C00000;
  box-sizing: border-box;
}

/* Карточка с белым фоном */
.advantage-card-white {
  background: #ffffff;
}

/* Карточка с нежно-розовым фоном */
.advantage-card-pink {
  background: #FFEFF9;
}

/* Карточка на всю ширину (последняя) */
.advantage-card-full {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 16px 16px 0 0;
  padding: 10px;
  width: 100%;
  transition: all 0.3s ease;
  border: 1px solid #C00000;
  border-bottom: none;
  background: #FFEFF9;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}

/* Иконка карточки */
.advantage-icon {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon img {
  width: 100%;
  height: auto;
  max-width: 130px;
}

/* Иконка в последней карточке - выезжает влево и вниз */
.advantage-card-full .advantage-icon {
  position: relative;
  z-index: 10;
}

.advantage-card-full .advantage-icon img {
  width: 290px;
  height: 380px;
  max-width: none;
  object-fit: contain;
  position: absolute;
  bottom: -180px;
  left: 70px;
  z-index: 20;
}

/* Текст в последней карточке - сдвинут вправо */
.advantage-card-full .advantage-text {
  margin-left: 220px;
  z-index: 5;
  position: relative;
  padding-right: 20px;
}

/* Текст карточки */
.advantage-text {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0;
}

/* Ссылка "Подробнее" */
.program-link {
  color: #C00000;
  text-decoration: none;
  font-weight: 600;
  margin-left: 5px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.program-link:hover {
  text-decoration: underline;
}

/* Подзаголовок (прилипает к последней карточке) */
.uniqu__subtitle-wrapper {
  background: #C00000;
  border-radius: 0 0 16px 16px;
  padding: 20px 30px;
  margin: 0;
  border: 1px solid #C00000;
  border-top: none;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* Текст подзаголовка - сдвинут вправо, чтобы фото на него наезжало */
.uniqu__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 41px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin: 0;
  padding: 0;
  margin-left: 320px;
  position: relative;
  z-index: 5;
}

/* ===== АДАПТАЦИЯ ===== */

/* Экраны до 1400px */
@media (max-width: 1400px) {
  .advantage-card-full .advantage-icon img {
    width: 300px;
    height: 360px;
    left: -30px;
    bottom: -180px;
  }

  .advantage-card-full .advantage-text {
    margin-left: 280px;
  }

  .uniqu__subtitle {
    margin-left: 280px;
    font-size: 30px;
    line-height: 38px;
  }

  .uniqu__subtitle_last {
    font-size: 30px;
    line-height: 38px;
  }
}

/* Экраны до 1200px */
@media (max-width: 1200px) {
  .advantage-card-full .advantage-icon img {
    width: 250px;
    height: 300px;
    left: -20px;
    bottom: -150px;
  }

  .advantage-card-full .advantage-text {
    margin-left: 240px;
  }

  .uniqu__subtitle {
    margin-left: 240px;
    font-size: 26px;
    line-height: 34px;
  }

  .uniqu__subtitle_last {
    font-size: 26px;
    line-height: 34px;
  }
}

/* Планшеты до 991px */
@media (max-width: 991px) {

  .advantages__col,
  .advantages__col-full {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .advantage-card,
  .advantage-card-white,
  .advantage-card-pink,
  .advantage-card-full {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 15px;
  }

  .advantage-icon {
    width: 80px;
    height: 80px;
  }

  .advantage-icon img {
    max-width: 70px;
  }

  .advantage-text {
    font-size: 20px;
    line-height: 26px;
  }

  /* Планшет: фото внутри, не выезжает */
  .advantage-card-full .advantage-icon img {
    position: relative;
    width: 100px;
    height: 140px;
    left: 0;
    bottom: 0;
    margin: 0 auto 20px;
    display: block;
  }

  .advantage-card-full .advantage-text {
    margin-left: 0;
    padding-right: 0;
  }

  .uniqu__subtitle {
    margin-left: 0;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .uniqu__subtitle_last {
    margin-left: 0;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .uniqu__subtitle-wrapper {
    padding: 15px 20px;
  }

  .uniqu__subtitle-wrapper_last {
    padding: 15px 20px;
  }
}

/* Телефоны до 576px */
@media (max-width: 576px) {
  .advantages__grid {
    gap: 20px;
  }

  .advantage-card,
  .advantage-card-white,
  .advantage-card-pink,
  .advantage-card-full {
    padding: 12px;
  }

  .advantage-icon {
    width: 70px;
    height: 70px;
  }

  .advantage-icon img {
    max-width: 70px;
  }

  .advantage-text {
    font-size: 16px;
    line-height: 22px;
  }

  .advantage-card-full .advantage-icon img {
    width: 100px;
    height: 100px;
  }

  .uniqu__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  
  .uniqu__subtitle_last {
    font-size: 18px;
    line-height: 24px;
  }

  .uniqu__subtitle-wrapper {
    padding: 12px 15px;
  }

  .uniqu__subtitle-wrapper_last {
    padding: 12px 15px;
  }
}

.uniqu__subtitle-wrapper_last {
  background: #C00000;
  border-radius: 16px;
  padding: 20px 30px;
  margin: 0;
  border: 1px solid #C00000;
  border-top: none;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* Текст подзаголовка */
.uniqu__subtitle_last {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 41px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 5;
}


/* ============================================
   ############### 9. INFO BANNER ###############
   ============================================ */
.info__desc {
  color: #262626;
  font-size: 20px;
  line-height: 27px;
}

.info__banner {
  margin: 50px 0 0;
  position: relative;
  background-image: url(../img/bg-info-banner.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  border-radius: 16px;
  padding: 20px;
}

.info__banner-img {
  position: absolute;
  transform: rotate(-11deg);
  z-index: 1;
  left: -20px;
  bottom: -15px;
}

.info__banner-img img {
  width: 200px;
  height: auto;
  object-fit: cover;
}

.info__banner-text {
  font-size: 26px;
  font-weight: bold;
  color: var(--color-deep-pink);
  padding: 0 10px;
  text-align: center;
}


/* ============================================
   ############### PROGRAM SECTION ###############
   ============================================ */
.program {
  margin: 50px 0;
}

.program__title {
  font-weight: 700;
  font-size: 38px;
  line-height: 41px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #262626;
  margin: 30px 0;
}

.program__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  line-height: 31px;
  color: #262626;
  margin-bottom: 40px;
}

/* Сетка 2 колонки */
.program__grid {
  display: flex;
  gap: 25px;
}

.program__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.program__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Фото блоки */
.program__photo {
  border-radius: 30px;
  overflow: hidden;
}

/* Фото 1 - ширина 956px, высота 588px */
.program__photo--first img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 956 / 588;
  object-fit: cover;
}

/* Фото 2 (в правой колонке) - ширина 901px, высота 570px */
.program__photo--second img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 901 / 570;
  object-fit: cover;
}

/* Фото 3 - ВЫСОКОЕ (на 2 строки) - ширина 588px, высота 738px */
.program__photo--high {
  border-radius: 30px;
  overflow: hidden;
  display: block;
}

.program__photo--high img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 588 / 738;
  object-fit: cover;
}

/* Фото 4 - ширина 862px, высота 360px */
.program__photo--fourth img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 862 / 360;
  object-fit: cover;
}

/* Красные текстовые блоки - растягиваются на всю высоту */
.program__red-block {
  background: #C00000;
  border-radius: 30px;
  padding: 25px;
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
  min-height: inherit;
}

.program__red-block p {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 16px 8px;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

program__buttons

/* Растягиваем блоки по высоте */
.program__left .program__red-block,
.program__right .program__red-block {
  flex: 1;
  display: flex;
  align-items: center;
}

/* 3 кнопки в ряд снизу */
.program__buttons {
  display: flex;
  gap: 13px;
  margin-top: 22px;
  width: 100%;
}

/* Кнопка 1 и 3 - розовый фон, красная рамка, черный текст */
.program__button-red {
  flex: 1;
  background: #FFEFF9;
  border: 1px solid #C00000;
  border-radius: 16px;
  padding: 16px 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  box-sizing: border-box;
}

.program__button-red p {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 29px;
  color: #1a1a1a;
  text-transform: uppercase;
}

/* Кнопка 2 - красный фон, белый текст */
.program__button-red--center {
  flex: 1;
  background: #C00000;
  border-radius: 16px;
  padding: 16px 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  box-sizing: border-box;
}

.program__button-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 29px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}

.program__button-link:hover {
  transform: scale(1.05);
  text-decoration: underline;
}


/* Адаптация */
@media (max-width: 1200px) {

  .program__red-block p,
  .program__button-red p,
  .program__button-link {
    font-size: 16px;
    line-height: 24px;
  }

  .program__red-block {
    padding: 20px;
  }

  .program__button-red {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .program__grid {
    flex-direction: column;
  }

  .program__left,
  .program__right {
    gap: 25px;
  }

  .program__buttons {
    flex-direction: column;
  }

  .program__title {
    font-size: 28px;
    line-height: 36px;
  }

  .program__desc {
    font-size: 18px;
    line-height: 26px;
  }

  /* На планшетах убираем фиксированные пропорции */
  .program__photo--first img,
  .program__photo--second img,
  .program__photo--high img,
  .program__photo--fourth img {
    aspect-ratio: auto;
    height: auto;
  }

  /* Красные блоки на планшетах не растягиваются принудительно */
  .program__left .program__red-block,
  .program__right .program__red-block {
    min-height: auto;
  }

  .program__buttons {
    flex-direction: column;
    gap: 13px;
  }

  /* Меняем порядок: красная кнопка становится последней */
  .program__buttons {
    display: flex;
    flex-direction: column;
  }

  .program__button-red {
    order: 1;
  }

  .program__button-red--center {
    order: 3;
  }

  /* Если есть несколько розовых кнопок, третья остается на месте */
  .program__button-red:last-of-type {
    order: 2;
  }
}

@media (max-width: 576px) {
  .program__title {
    font-size: 22px;
    line-height: 30px;
  }

  .program__desc {
    font-size: 16px;
    line-height: 24px;
  }

  .program__red-block p,
  .program__button-red p,
  .program__button-link {
    font-size: 14px;
    line-height: 20px;
  }

  .program__red-block {
    padding: 18px;
  }

  .program__button-red {
    padding: 18px;
    min-height: 80px;
  }
}

/* ============================================
   ############### 10. VISITOR EVENT ###############
   ============================================ */
.visitor-event {
  margin: 50px 0 298px;
}

.visitor-event__title {
  font-weight: 700;
  font-size: 34px;
  line-height: 41px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #262626;
  margin: 30px 0;
}

.visitor-event__desc {
  color: #181818;
  font-weight: 500;
  font-style: Medium;
  font-size: 23px;
  line-height: 31px;
  letter-spacing: -0.02em;

}

.visitor-event .btn-details {
  min-width: 340px;
  text-decoration: underline;
}


/* ============================================
   ############### 11. BUTTONS ###############
   ============================================ */
.btn-details {
  display: flex;
  background-color: var(--color-main);
  justify-content: space-between;
  align-items: center;
  padding: 18px 29px;
  border: none;
  gap: 38px;
  border-radius: 16px;
  letter-spacing: 1px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-details:hover {
  background-color: #8B0000;
  transform: scale(1.02);
}

/* ============================================
   ############### BUSINESS SECTION ###############
   ============================================ */
.business {
  margin: 50px 0;
  overflow-x: visible;
}

.business__title {
  font-weight: 700;
  font-size: 38px;
  line-height: 41px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #262626;
}

.business__content {
  margin-top: 30px;
  overflow: visible;
}

/* Сетка */
.business__grid {
  display: flex;
  gap: 30px;
  position: relative;
  overflow: visible;
}

.business__col-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  overflow: visible;
}

.business__col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  overflow: visible;
}

/* Карточки */
.business-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  padding: 20px;
  min-height: 120px;
  transition: all 0.3s ease;
  border: 1px solid #C00000;
  position: relative;
  z-index: 2;
}

.business-card-white {
  background: #ffffff;
}

.business-card-pink {
  background: #FFEFF9;
}

/* Иконки в левой колонке */
.business-card .advantage-icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-card .advantage-icon img {
  width: 100%;
  height: auto;
  max-width: 120px;
}

/* Отдельный класс для иконки 8card.png (больше) */
.business-card .advantage-icon-large {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-card .advantage-icon-large img {
  width: auto;
  height: auto;
  max-width: 320px;
  max-height: 320px;
  object-fit: contain;
  /* Если фон мешает */
  background: transparent;
}

.business-card:has(.advantage-icon-large) .business-card__text {
  margin-left: 50px;
}

.business-card__text {
  margin: 0;
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

/* Общее фото в правой колонке - заезжает слева */
.business__photo-right {
  position: absolute;
  top: 47%;
  left: -70px;
  transform: translateY(-50%);
  z-index: 10;
  width: 250px;
  height: auto;
}

.business__photo-right img {
  width: 100%;
  height: auto;
  display: block;
}

/* Сдвигаем только ТЕКСТ в правой колонке вправо, чтобы фото не наезжало */
.business__col-right .business-card__text {
  margin-left: 160px;
}

/* Подзаголовок */
.business__footer {
  background: #C00000;
  border-radius: 16px;
  padding: 25px 30px;
  margin-top: 40px;
  text-align: center;
}

.business__footer-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 41px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 1200px) and (max-width: 1440px) {
  
  /* Уменьшаем отступы */
  .business__grid {
    gap: 20px;
  }
  
  .business__col-left,
  .business__col-right {
    gap: 20px;
  }
  
  /* Уменьшаем выезжающее фото справа */
  .business__photo-right {
    top: 58%;
    left: -48px;
    width: 190px;
  }
  
  /* Уменьшаем сдвиг текста в правой колонке */
  .business__col-right .business-card__text {
    margin-left: 120px;
  }
  
  /* Иконки чуть меньше */
  .business-card .advantage-icon {
    width: 90px;
    height: 90px;
  }
  
  .business-card .advantage-icon img {
    max-width: 90px;
  }
  
  /* Большая иконка */
  .business-card .advantage-icon-large {
    width: 80px;
    height: 80px;
  }
  
  .business-card .advantage-icon-large img {
    max-width: 250px;
    max-height: 250px;
  }
  
  .business-card:has(.advantage-icon-large) .business-card__text {
    margin-left: 30px;
  }
  
  /* Текст карточек */
  .business-card__text {
    font-size: 18px;
    line-height: 26px;
  }
  
  /* Заголовок */
  .business__title {
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 30px;
  }
  
  /* Подзаголовок */
  .business__footer-text {
    font-size: 30px;
    line-height: 38px;
  }
  
  .business__footer {
    padding: 20px 25px;
    margin-top: 30px;
  }
}

/* Планшеты 768px - 1200px */
@media (max-width: 1200px) and (min-width: 769px) {
  .business__grid {
    flex-direction: column;
    gap: 30px;
  }
  
  /* Фото справа - перестает выезжать */
  .business__photo-right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 180px;
    margin: 0 auto 20px auto;
    display: block;
  }
  
  /* Убираем сдвиг текста */
  .business__col-right .business-card__text {
    margin-left: 0;
  }
  
  /* Карточки в колонку */
  .business-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  /* Иконки по центру */
  .business-card .advantage-icon,
  .business-card .advantage-icon-large {
    margin: 0 auto;
  }
  
  /* Убираем сдвиг текста у большой иконки */
  .business-card:has(.advantage-icon-large) .business-card__text {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .business-card__text {
    text-align: center;
    margin-left: 0 !important;
  }
  
  .business__title {
    text-align: center;
    font-size: 32px;
    line-height: 38px;
  }
  
  .business__footer-text {
    font-size: 28px;
    line-height: 36px;
  }
}

/* Телефоны до 768px */
@media (max-width: 768px) {
  .business__grid {
    flex-direction: column;
    gap: 25px;
  }
  
  /* Фото справа */
  .business__photo-right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 140px;
    margin: 0 auto 15px auto;
    display: block;
  }
  
  /* Убираем сдвиг текста */
  .business__col-right .business-card__text {
    margin-left: 0;
  }
  
  /* Карточки в колонку */
  .business-card {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    min-height: auto;
  }
  
  /* Иконки по центру и поменьше */
  .business-card .advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
  
  .business-card .advantage-icon img {
    max-width: 80px;
  }
  
  .business-card .advantage-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
  
  .business-card .advantage-icon-large img {
    max-width: 160px;
    max-height: 160px;
  }
  
  /* Убираем сдвиг текста у большой иконки */
  .business-card:has(.advantage-icon-large) .business-card__text {
    margin-left: 0;
    margin-top: 10px;
  }
  
  .business-card__text {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    margin-left: 0 !important;
  }
  
  .business__title {
    text-align: center;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 30px;
  }
  
  .business__footer {
    padding: 20px;
    margin-top: 30px;
  }
  
  .business__footer-text {
    font-size: 20px;
    line-height: 28px;
  }
}

/* Телефоны маленькие до 480px */
@media (max-width: 480px) {
  .business__photo-right {
    width: 100px;
  }
  
  .business-card {
    padding: 12px;
  }
  
  .business-card .advantage-icon {
    width: 60px;
    height: 60px;
  }
  
  .business-card .advantage-icon img {
    max-width: 60px;
  }
  
  .business-card .advantage-icon-large {
    width: 100px;
    height: 100px;
  }
  
  .business-card .advantage-icon-large img {
    max-width: 140px;
    max-height: 140px;
  }
  
  .business-card__text {
    font-size: 14px;
    line-height: 20px;
  }
  
  .business__title {
    font-size: 22px;
    line-height: 28px;
  }
  
  .business__footer-text {
    font-size: 16px;
    line-height: 22px;
  }
}



/* ============================================
   ############### 12. UNIQUE TICKETS (старые стили) ###############
   ============================================ */
.uniqu__ticket {
  position: relative;
  margin-bottom: 20px;
}

.uniqu__ticket-cosmetics {
  width: min(334px, 80vw);
  position: absolute;
  top: max(-50px, -10vw);
  left: 24px;
}

.uniqu__ticket-cosmetics img {
  width: 100%;
  height: auto;
}

.uniqu__ticket-one {
  padding: 110px 20px 20px 20px;
}

.uniqu__ticket-with {
  padding: 20px 100px 20px 20px;
}

.uniqu__ticket-p {
  padding: 20px;
}

.uniqu__ticket-cup {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 16px;
}

.uniqu__ticket-lotus {
  position: absolute;
  bottom: 0;
  right: 0;
}

.uniqu__ticket-mascara {
  width: 120px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.uniqu__ticket-mascara img {
  width: 100%;
  height: auto;
}

.uniqu__ticket-dress {
  width: 90px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.uniqu__two {
  margin-top: 40px;
}


/* ============================================
   ############### 13. MAP ###############
   ============================================ */
.visitor-map {
  margin: 20px 0;
}

.wrap-map {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.wrap-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .wrap-map {
    height: 300px;
    margin-top: 20px;
  }
}

.wrap-map img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.map__title--h2 {
  max-width: 300px;
  color: #262626;
  font-size: 26px;
  text-transform: uppercase;
  margin: 7px 0 0 0;
}

.map__title--h4 {
  font-size: 16px;
  margin: 0;
}

.map__location {
  max-width: 320px;
}

.map__location-title {
  margin: 30px 0 6px;
}

.map__location-detail {
  max-width: 320px;
  margin-top: 4px;
  line-height: 21px;
}

.map__time {
  max-width: 320px;
}

.map__time-title {
  margin: 19px 0 4px;
}

.map__time-detail {
  max-width: 220px;
}

.map__transport-title {
  margin: 20px 0 7px;
}

.map__transport-detail {
  max-width: 230px;
}

.map__public-transport-title {
  margin: 21px 0 3px;
  line-height: 21px;
  max-width: 220px;
}

.map__public-transport-detail {
  max-width: 320px;
  line-height: 21px;
}


/* ============================================
   ############### 14. NOTES ###############
   ============================================ */
.notes__text p {
  font-style: italic;
  font-size: 12px;
  color: #666;
}


/* ============================================
   ############### 15. REVIEWS ###############
   ============================================ */
.reviews {
  display: flex;
  justify-content: space-around;
}

.uniqu__ticket-feedback_wrap {
  margin-bottom: 20px;
}

.uniqu__ticket-feedback {
  background: #f5eaf0;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
}


/* ============================================
   ############### 16. INFO BANNER SMALL ###############
   ============================================ */
.info-banner-small {
  margin: 50px 0 30px;
}

.info-banner-small-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  background-image: url(../img/bg-info-banner.png);
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  padding: 20px;
  color: var(--color-main);
  font-size: 24px;
}

.info-banner-small-wrap p {
  margin-block-start: 5px;
  margin-block-end: 20px;
}

.footer__subscribe-icon-gp {
  display: flex;
  gap: 20px;
  justify-content: center;
}


/* ============================================
   ############### 17. MEDIA QUERIES ###############
   ============================================ */
/* Для экранов 1200px - 1400px */
@media (min-width: 1200px) and (max-width: 1400px) {
  .bant-decoration {
    max-width: 230px !important;
    max-height: 90px !important;
    top: -8px !important;
  }

  .party-banner__text {
    top: 25% !important;
    right: 25px !important;
    max-width: 48% !important;
  }

  .banner-title {
    font-size: 42px !important;
    line-height: 45px !important;
    margin-bottom: 8px !important;
  }

  .banner-subtitle {
    font-size: 28px !important;
    line-height: 34px !important;
    margin-bottom: 8px !important;
  }

  .banner-subtitle br {
    display: none;
  }

  .banner-footer {
    font-size: 32px !important;
    line-height: 38px !important;
  }

  /* Контейнер 1056 */
  .container-1056 {
    max-width: 900px;
    margin-left: 0;
    margin-right: auto;
  }

  .container-1056 .col-xl-9 {
    max-width: 100%;
    padding-right: 20px;
  }

  /* Преимущества карточки */
  .advantage-card .advantage-text {
    font-size: 18px !important;
    line-height: 26px !important;
  }

  .advantage-icon {
    width: 100px !important;
    height: 100px !important;
  }

  /* Красные блоки программы */
  .program__red-block p {
    font-size: 28px !important;
    line-height: 34px !important;
  }

  /* Кнопки */
  .program__button-red p,
  .program__button-link {
    font-size: 16px !important;
  }
}

/* 17.1 Планшеты 1024px */
@media (max-width: 1024px) {
  .bant-decoration {
    max-width: 200px !important;
    max-height: 120px !important;
    top: -8px !important;
  }

  .party-banner__text {
    top: 50% !important;
    right: 20px !important;
    max-width: 50% !important;
  }

  .banner-title {
    font-size: 30px !important;
    line-height: 40px !important;
    margin-bottom: 8px !important;
  }

  .banner-subtitle {
    font-size: 22px !important;
    line-height: 28px !important;
    margin-bottom: 8px !important;
  }

  .banner-subtitle br {
    display: none;
  }

  .banner-footer {
    font-size: 26px !important;
    line-height: 32px !important;
  }

  .navlist {
    display: none !important;
  }

  .uniqu__ticket-cup {
    right: 10px;
  }

  .uniqu__ticket-lotus {
    right: 0;
  }
}

/* 17.2 Планшеты маленькие 768px */
@media (max-width: 768px) {
  .bant-decoration {
    max-width: 120px !important;
    max-height: 70px !important;
    top: -4px !important;
  }

  .party-banner__text {
    top: 20% !important;
    right: 20px !important;
    max-width: 55% !important;
  }

  .banner-title {
    font-size: 28px !important;
    line-height: 32px !important;
  }

  .banner-subtitle {
    font-size: 18px !important;
    line-height: 24px !important;
  }

  .banner-subtitle br {
    display: block;
  }

  .banner-footer {
    font-size: 22px !important;
    line-height: 28px !important;
  }

  .party-button__link {
    font-size: 20px !important;
    padding: 10px 30px !important;
  }

  .visitor-event .btn-details {
    min-width: 90%;
    width: 90%;
    max-width: 100%;
  }
}

/* 17.3 Телефоны горизонтально 600px */
@media (max-width: 600px) {
  .party-banner__text {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    max-width: 100% !important;
    margin-top: 20px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
  }

  .banner-title {
    font-size: 24px !important;
    line-height: 28px !important;
  }

  .banner-subtitle {
    font-size: 16px !important;
    line-height: 22px !important;
  }

  .banner-footer {
    font-size: 20px !important;
    line-height: 26px !important;
  }

  .party-button__link {
    font-size: 16px !important;
    padding: 8px 24px !important;
  }
}

/* 17.4 Телефоны вертикально 576px */
@media (max-width: 576px) {
  .visitors__title {
    font-size: 24px !important;
    line-height: 30px;
  }

  .visitors__desc {
    font-size: 18px;
    line-height: 24px;
  }

  .advantage-card,
  .advantage-card-full {
    padding: 15px;
    flex-direction: column;
    text-align: center;
  }

  .advantage-text {
    font-size: 14px;
  }

  .uniqu__subtitle {
    font-size: 18px;
    padding: 15px;
  }

  .uniqu__subtitle_last {
    font-size: 18px;
    padding: 15px;
  }

  .red-card {
    flex: 1 1 100%;
  }

  .red-block__header {
    font-size: 28px !important;
    line-height: 32px !important;
  }

  .info__banner {
    padding: 40px;
  }

  .info__banner>.row {
    flex-direction: column;
  }
}

/* 17.5 Маленькие телефоны 480px */
@media (max-width: 480px) {
  .party-banner__text {
    padding: 15px 12px;
    margin-top: 15px;
  }

  .banner-title {
    font-size: 20px !important;
    line-height: 24px !important;
  }

  .banner-subtitle {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .banner-footer {
    font-size: 18px !important;
    line-height: 24px !important;
  }
}

/* 17.6 Очень маленькие телефоны 375px */
@media (max-width: 375px) {
  .party-banner__text {
    padding: 12px 10px;
  }

  .banner-title {
    font-size: 18px !important;
    line-height: 22px !important;
  }

  .banner-subtitle {
    font-size: 12px !important;
    line-height: 18px !important;
  }

  .banner-footer {
    font-size: 16px !important;
    line-height: 22px !important;
  }
}

/* 17.7 Планшеты и выше 577px-991px */
@media (min-width: 577px) and (max-width: 991px) {

  .advantage-card,
  .advantage-card-full {
    flex-direction: column;
    text-align: center;
  }

  .advantage-icon {
    width: 60px;
    height: 60px;
  }

  .visitors__title {
    font-size: 32px;
    line-height: 38px;
  }
}

/* 17.8 Большие экраны */
@media (max-width: 1200px) {
  .navlist {
    display: none !important;
  }
}