/* ============================================================
   landing.css — стили лендингов городов и мероприятий
   Использует переменные из styles.css
   ============================================================ */

/* ---- Хлебные крошки ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-text);
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { color: rgba(255,255,255,.25); }
.breadcrumb__current { color: rgba(255,255,255,.75); }

/* ---- Герой лендинга ---- */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.lp-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.45) 0%, rgba(10,10,10,.72) 100%);
  z-index: 1;
}
.lp-hero .container {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 72px;
  width: 100%;
}

/* ---- Фото-галерея на лендинге ---- */
.lp-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.lp-photos__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--gray-300);
}
.lp-photos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease, ease);
}
.lp-photos__item:hover img { transform: scale(1.04); }

@media (max-width: 640px) {
  .lp-photos { grid-template-columns: repeat(2, 1fr); }
}
.lp-hero__h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.1;
  color: var(--white);
  text-wrap: balance;
  letter-spacing: -.02em;
  margin: 0 0 20px;
}
.lp-hero__h1 span {
  color: var(--red);
}
.lp-hero__lead {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  max-width: 620px;
  margin: 0 0 36px;
}
.lp-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 32px;
}
.lp-hero__meta svg { flex-shrink: 0; }

/* ---- Текстовый блок на белом ---- */
.lp-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  max-width: 720px;
}
.lp-body p { margin: 0 0 16px; }
.lp-body p:last-child { margin: 0; }

/* ---- Площадки ---- */
.lp-venues {
  margin-top: 32px;
}
.lp-venues__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 16px;
}
.lp-venues__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-venues__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.lp-venues__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 8px;
  flex-shrink: 0;
}
.lp-venues__name {
  font-weight: 600;
  color: var(--black);
}
.lp-venues__desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ---- Карточки мероприятий (на странице города) ---- */
.lp-event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.lp-event-card {
  display: block;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 24px;
  text-decoration: none;
  color: var(--white);
  transition: background .2s, border-color .2s, transform .15s;
}
.lp-event-card:hover {
  background: rgba(225,11,31,.12);
  border-color: rgba(225,11,31,.3);
  transform: translateY(-2px);
}
.lp-event-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.lp-event-card__arrow {
  font-size: 12px;
  color: var(--red);
  margin-top: 12px;
  letter-spacing: .04em;
  font-family: var(--font-display);
  font-weight: 700;
}

/* ---- Сетка городов (на странице мероприятия) ---- */
.lp-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.lp-city-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  transition: background .2s, border-color .2s;
}
.lp-city-link:hover {
  background: rgba(225,11,31,.12);
  border-color: rgba(225,11,31,.3);
}
.lp-city-link__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ---- Список особенностей (на странице мероприятия) ---- */
.lp-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-features li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  font-size: 16px;
  color: var(--black);
  align-items: start;
}
.lp-features li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 9px;
  justify-self: center;
}

/* ---- Блок стоимости ---- */
.lp-price__lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.8);
  max-width: 680px;
  margin: 0 0 24px;
}
.lp-price__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-price__list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.65);
}
.lp-price__list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 9px;
  justify-self: center;
}

/* ---- CTA-секция ---- */
.lp-cta {
  background: var(--red);
  padding: 72px 0;
  text-align: center;
}
.lp-cta__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 4vw, 36px);
  color: var(--white);
  text-wrap: balance;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}
.lp-cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin: 0 0 36px;
}
.lp-cta .btn--book {
  background: var(--white);
  color: var(--red);
}
.lp-cta .btn--book:hover {
  background: rgba(255,255,255,.9);
}

/* ---- Другие страницы (белый фон) ---- */
.lp-other-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 16px;
}
.lp-other-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-other-link {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 2px;
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  color: var(--gray-700);
  transition: border-color .2s, color .2s;
}
.lp-other-link:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ---- Адаптив ---- */
@media (max-width: 640px) {
  .lp-hero { padding: calc(var(--header-h) + 36px) 0 48px; }
  .lp-event-grid { grid-template-columns: 1fr 1fr; }
  .lp-cities-grid { grid-template-columns: 1fr 1fr; }
  .lp-cta { padding: 56px 0; }
}
@media (max-width: 400px) {
  .lp-event-grid { grid-template-columns: 1fr; }
  .lp-cities-grid { grid-template-columns: 1fr; }
}
