/* ======================================================
   styles.css — кастомные стили для страницы "Шоу-программа"
   Все значения max-приближены к JSON-макету.
   ====================================================== */

/* ----- CSS-переменные (из JSON) ----- */
:root {
  /* Основные цвета */
  --color-beige-500: #FDF5EF;    /* #fdf4de? точнее #fdf5ef? В JSON #fdf4de? Но берем из стилей: beige/500 = #fdf4de? */
  --color-beige-500: #fdf4de;    /* из S:67402f7... */
  --color-beige-600: #f9e8cc;    /* S:35044c5... */
  --color-pink-500: #b51662;     /* S:f9f10636... */
  --color-pink-600: #9e0f55;     /* S:c3ad9308... */
  --color-purple-500: #35022c;   /* S:805575ac... */
  --color-purple-transparent-10: rgba(53, 2, 44, 0.1);
  --color-purple-transparent-50: rgba(53, 2, 44, 0.5);
  --color-beige-transparent-20: rgba(253, 244, 222, 0.2);
  --color-beige-transparent-50: rgba(253, 244, 222, 0.5);

  /* Шрифты */
  --font-anticva: 'Anticva', 'Times New Roman', serif;
  --font-akrobat: 'Akrobat', 'Arial', sans-serif;

  /* Отступы */
  --spacing-gap: 16px;
}

/* ----- Подключение нестандартных шрифтов ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&display=swap');

/* Шрифт Anticva (примерный, так как не найден в Google Fonts, используем fallback) */
@font-face {
  font-family: 'Anticva';
  src: local('Times New Roman'), local('Georgia');
  font-weight: 400;
  font-display: swap;
}

/* Шрифт Akrobat (примерный, используем похожий) */
@font-face {
  font-family: 'Akrobat';
  src: local('Arial'), local('Helvetica');
  font-weight: 500;
  font-display: swap;
}

/* ===== Шапка ===== */
.header-1400 {
  background-color: var(--color-pink-500);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-beige-transparent-20);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  justify-content: space-between;
}
.menu-item {
  font-family: var(--font-akrobat);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-beige-500);
  cursor: default;
  line-height: 1.3;
}
.menu-item:hover {
  color: #fff;
}
.nav-col .d-flex {
  gap: 32px;
}
.nav-col .gap-1 {
  gap: 4px;
}
.nav-col .bi-chevron-down {
  color: var(--color-beige-500);
  font-size: 14px;
}
.logo-img {
  height: 56px;
  width: auto;
}
.lang-active {
  font-family: var(--font-akrobat);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-beige-500);
}
.lang-inactive {
  font-family: var(--font-akrobat);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-beige-transparent-50);
}
.lang-divider {
  color: var(--color-beige-transparent-50);
  font-size: 18px;
}
.btn-book {
  font-family: var(--font-anticva);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--color-beige-500);
  border: 1.5px solid var(--color-beige-500);
  border-radius: 1px;
  padding: 10px 24px;
  background: transparent;
  transition: all 0.2s;
}
.btn-book:hover {
  background: var(--color-beige-500);
  color: var(--color-purple-500);
}

/* ===== Hero (Шоу-программа) ===== */
.show-hero {
  background-color: var(--color-pink-500);
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.breadcrumbs-wrapper {
  padding-top: 8px;
  margin-bottom: 8px;
}
.breadcrumb.custom-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.breadcrumb.custom-breadcrumb .breadcrumb-item {
  font-family: var(--font-akrobat);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--color-beige-500);
}
.breadcrumb.custom-breadcrumb .breadcrumb-item a {
  color: var(--color-beige-transparent-50);
  text-decoration: none;
}
.breadcrumb.custom-breadcrumb .breadcrumb-item a:hover {
  color: var(--color-beige-500);
}
.breadcrumb.custom-breadcrumb .breadcrumb-item.active {
  color: var(--color-beige-500);
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--color-beige-transparent-50);
  font-size: 20px;
  padding: 0 6px;
}

.hero-title {
  font-family: var(--font-anticva);
  font-weight: 400;
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: -1.44px;
  text-transform: uppercase;
  color: var(--color-beige-500);
  text-align: center;
  margin-top: 16px;
  margin-bottom: 24px;
}
.hero-info {
  max-width: 1240px;
  margin: 0 auto 32px;
}
.info-card {
  padding: 0 20px;
}
.info-icon {
  font-size: 48px;
  color: var(--color-beige-transparent-50);
  display: block;
  margin-bottom: 12px;
}
.info-title {
  font-family: var(--font-anticva);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  color: var(--color-beige-500);
  margin-bottom: 8px;
}
.info-desc {
  font-family: var(--font-akrobat);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-beige-500);
  margin-bottom: 0;
}

.video-wrapper {
  max-width: 1030px;
  margin: 0 auto 32px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1030 / 560;
  background: #000;
}
.video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  background: var(--color-beige-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.play-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
.play-button i {
  font-size: 40px;
  color: var(--color-purple-500);
  margin-left: 6px;
}

/* Галерея */
.gallery-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}
.gallery-scroll {
  position: relative;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.gallery-track::-webkit-scrollbar {
  display: none;
}
.gallery-img {
  flex: 0 0 403px;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-beige-500);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-purple-500);
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.gallery-arrow:hover {
  background: #fff;
}
.arrow-left {
  left: 0;
}
.arrow-right {
  right: 0;
}
.mask-feather {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.mask-feather img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Афиша (Ближайшие события) ===== */
.poster-section {
  background-color: var(--color-beige-500);
  padding: 40px 0 60px;
  position: relative;
}
.poster-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.poster-title {
  font-family: var(--font-anticva);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -1.12px;
  text-transform: uppercase;
  color: var(--color-purple-500);
  text-align: center;
  margin-bottom: 32px;
}
.poster-events {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}
.event-card {
  background: var(--color-beige-600);
  border-radius: 4px;
  padding: 8px 16px;
  border: 1px solid var(--color-purple-transparent-10);
}
.event-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 4px 0;
}
.event-date {
  display: flex;
  align-items: center;
  gap: 16px;
}
.event-day {
  font-family: var(--font-anticva);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -1.12px;
  color: var(--color-purple-500);
}
.event-month-wrap {
  display: flex;
  flex-direction: column;
}
.event-weekday {
  font-family: var(--font-akrobat);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-purple-500);
  line-height: 1.3;
}
.event-month {
  font-family: var(--font-anticva);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  color: var(--color-purple-500);
}
.event-icon {
  font-size: 48px;
  color: var(--color-purple-transparent-50);
}
.event-time {
  font-family: var(--font-akrobat);
  font-weight: 500;
  font-size: 32px;
  color: var(--color-purple-500);
}
.event-desc {
  font-family: var(--font-akrobat);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-purple-500);
  flex: 1;
  min-width: 200px;
}
.btn-show-more {
  font-family: var(--font-anticva);
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.4px;
  background: var(--color-pink-500);
  color: var(--color-beige-500);
  border: none;
  border-radius: 1px;
  padding: 12px 40px;
  transition: background 0.2s;
}
.btn-show-more:hover {
  background: var(--color-pink-600);
  color: var(--color-beige-500);
}

/* ===== Футер ===== */
.footer-1400 {
  background-color: var(--color-purple-500);
  padding: 40px 0 20px;
  color: var(--color-beige-500);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-title {
  font-family: var(--font-anticva);
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.4px;
  color: var(--color-beige-500);
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-icon {
  color: var(--color-pink-500);
  font-size: 16px;
  margin-top: 4px;
}
.contact-phone,
.contact-email {
  font-family: var(--font-akrobat);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-beige-500);
  display: block;
  line-height: 1.3;
}
.contact-label {
  font-family: var(--font-akrobat);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-beige-transparent-50);
  display: block;
  line-height: 1.3;
}
.footer-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-img {
  max-width: 112px;
  height: auto;
}
.footer-right {
  padding-left: 20px;
}
.footer-reviews,
.footer-messengers {
  margin-bottom: 24px;
}
.social-buttons {
  display: flex;
  gap: 16px;
}
.btn-social {
  width: 48px;
  height: 32px;
  border-radius: 1px;
  background: var(--color-pink-500);
  border: none;
  color: var(--color-beige-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s;
}
.btn-social:hover {
  background: var(--color-pink-600);
  color: #fff;
}
.footer-partner {
  margin-top: 8px;
}
.partner-logo img {
  max-width: 125px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}
.footer-bottom {
  border-top: 1px solid var(--color-beige-transparent-20);
  padding-top: 24px;
  margin-top: 24px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link {
  font-family: var(--font-akrobat);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-beige-transparent-50);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-link:hover {
  color: var(--color-beige-500);
}
.footer-copy p {
  font-family: var(--font-akrobat);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-beige-transparent-50);
  margin: 0;
  line-height: 1.3;
}
.footer-design {
  font-family: var(--font-akrobat);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-beige-500);
}
.footer-design strong {
  font-weight: 600;
  text-transform: uppercase;
}
.btn-up {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-akrobat);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--color-beige-500);
  text-decoration: none;
  margin-left: 24px;
  padding: 4px 0;
}
.btn-up i {
  font-size: 24px;
}
.btn-up:hover {
  color: #fff;
}

/* ===== Адаптивность ===== */
@media (max-width: 991.98px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .nav-col {
    order: 2;
    flex: 0 0 100%;
    text-align: center;
  }
  .nav-col .d-flex {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .logo-col {
    order: 1;
  }
  .right-col {
    order: 3;
  }
  .hero-title {
    font-size: 48px;
  }
  .info-title {
    font-size: 20px;
  }
  .gallery-img {
    flex: 0 0 280px;
    height: 200px;
  }
  .poster-title {
    font-size: 40px;
  }
  .event-card-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .event-desc {
    min-width: unset;
    width: 100%;
  }
  .footer-right {
    padding-left: 0;
    margin-top: 24px;
  }
  .footer-bottom .row > div {
    text-align: center !important;
    margin-bottom: 12px;
  }
  .footer-design {
    text-align: center !important;
  }
  .btn-up {
    margin-left: 12px;
  }
}

@media (max-width: 575.98px) {
  .header-inner {
    padding: 0 16px;
  }
  .hero-content {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 32px;
  }
  .info-title {
    font-size: 16px;
  }
  .info-desc {
    font-size: 14px;
  }
  .play-button {
    width: 64px;
    height: 64px;
  }
  .play-button i {
    font-size: 28px;
  }
  .gallery-img {
    flex: 0 0 200px;
    height: 160px;
  }
  .gallery-arrow {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .poster-title {
    font-size: 28px;
  }
  .event-day {
    font-size: 36px;
  }
  .event-time {
    font-size: 24px;
  }
  .footer-inner {
    padding: 0 16px;
  }
  .contact-phone,
  .contact-email,
  .contact-label {
    font-size: 15px;
  }
}