/* landing.css — стили лендинга кемпинга на отдельном поддомене.
   Используется вместе с main.css / Foundation 6.7.5. */

.landing-body { background:#fff; }

/* ── Шапка ────────────────────────────────────────────────────────────────── */
.landing-topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0.6rem 0;
}
.landing-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.landing-brand {
  font-weight: 600;
  font-size: 1.05rem;
  color: #222;
}
.landing-lang {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.landing-lang a { color: #1779ba; text-decoration: none; }
.landing-lang strong { color: #222; }
.landing-lang .sep { color: #bbb; }

/* ── Hero / Слайдер ───────────────────────────────────────────────────────── */
.landing-hero {
  position: relative;
  height: 60vh;
  min-height: 360px;
  max-height: 640px;
  overflow: hidden;
  background: #222;
}
.landing-hero-empty {
  height: auto;
  min-height: 0;
  background: #f5f5f5;
  padding: 2rem 0 1rem;
  color: #222;
}
.landing-hero-slides { position: absolute; inset: 0; }
.landing-hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.landing-hero-slide.is-active { opacity: 1; }
.landing-hero-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  color: #fff;
  padding: 2rem 0 1.5rem;
}
.landing-hero-empty .landing-hero-overlay { display: none; }
.landing-hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.landing-hero-empty .landing-hero-title {
  text-shadow: none;
  color: #222;
}
.landing-hero-place {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
}
.landing-hero-empty .landing-hero-place { color: #555; }
.landing-hero-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border: none;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.landing-hero-nav:hover { background: rgba(0,0,0,0.6); }
.landing-hero-nav.prev { left: 1rem; }
.landing-hero-nav.next { right: 1rem; }
.landing-hero-dots {
  position: absolute;
  left: 0; right: 0; bottom: 1rem;
  display: flex; justify-content: center; gap: 0.4rem;
  z-index: 2;
}
.landing-hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background 0.2s ease;
}
.landing-hero-dot.is-active { background: #fff; }

@media (max-width: 640px) {
  .landing-hero { height: 50vh; min-height: 280px; }
  .landing-hero-title { font-size: 1.6rem; }
  .landing-hero-place { font-size: 0.95rem; }
  .landing-hero-nav { width: 36px; height: 36px; font-size: 1.4rem; }
}

/* ── Подвал ───────────────────────────────────────────────────────────────── */
.landing-footer {
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  padding: 1.5rem 0;
  margin-top: 3rem;
}
.landing-footer-inner { text-align: center; color: #555; font-size: 0.9rem; }
.landing-footer-inner p { margin: 0.3rem 0; }
.landing-footer-inner a { color: #1779ba; }
.landing-footer-copy { color: #888; font-size: 0.825rem; margin-top: 0.6rem; }
