/* ════════════════════════════════════════
   SECTION 3 — МЕСТО ПРОВЕДЕНИЯ
════════════════════════════════════════ */

.venue {
  position: relative;
  background-image: url('image/section_3/background_for_the_dekstop_version3.png');
  background-size: cover;
  background-position: center top;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

@media (max-width: 768px) {
  .venue {
    background-image: url('image/section_3/background_for_the_mobile_version3.png');
    min-height: 100svh;
  }
}

/* ── Контейнер ── */
.venue__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1100px;
  padding: 100px 0 80px 0;
}

@media (max-width: 768px) {
  .venue__inner {
    align-items: center;
    padding: 100px 24px 64px;
  }
}

/* ── Заголовок — всегда по центру ── */
.venue__top {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.venue__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 7vw, 54px);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin: 0;
  text-align: center;
}

/* ── Левый блок: Weg + адрес + кнопки ── */
.venue__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

@media (max-width: 768px) {
  .venue__left {
    align-items: center;
    text-align: center;
  }
}

/* ── Картинка тропинки ── */
.venue__weg {
  display: none;
}

@media (max-width: 768px) {
  .venue__weg {
    display: none;
  }
}

/* ── Адрес ── */
.venue__address {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 3.5vw, 22px);
  font-weight: 500;
  color: var(--brown);
  line-height: 1.65;
  margin: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .venue__address {
    text-align: center;
  }
}

/* ── Кнопки маршрута ── */
.venue__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .venue__btns {
    justify-content: center;
  }
}

.venue__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--forest);
  color: var(--parchment);
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid rgba(176, 138, 74, 0.3);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.venue__btn:hover {
  background: var(--forest2);
  border-color: rgba(176, 138, 74, 0.65);
  box-shadow: 0 0 18px var(--glow-gold);
}

.venue__btn svg {
  flex-shrink: 0;
  opacity: 0.85;
}
