/* ─── VENUE PAGE ─── */
/* Layout for the per-venue static page (venues/<slug>/index.html). Reuses
   the shared.css design tokens (--dark-teal, --teal, --cream, --gold,
   --amber, --off-white) and the card/badge look from venues.css, redefined
   locally since this page doesn't load venues.css. */

.vp-back {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--teal);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.vp-back:hover {
  text-decoration: underline;
}

.vp-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6.5rem 3rem 5rem;
}

/* ─── GALLERY ─── */
.vp-gallery {
  margin-bottom: 2.5rem;
}

.vp-hero {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.vp-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vp-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.vp-thumb {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  transition: opacity 0.2s;
}

.vp-thumb:hover {
  opacity: 0.85;
}

.vp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── HEADER / FACTS ─── */
.vp-header h1 {
  font-family: 'Cutive', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.vp-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 0 0 0.75rem;
  padding: 0;
}

.vp-fact {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: rgba(26, 65, 70, 0.65);
  font-weight: 300;
}

.vp-fact__icon {
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.vp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--off-white);
  color: var(--dark-teal);
}

.badge.alcohol-yes {
  background: rgba(41, 114, 114, 0.08);
  color: var(--teal);
}

.badge.alcohol-no {
  background: rgba(211, 164, 70, 0.1);
  color: var(--amber);
}

/* ─── DESCRIPTION ─── */
.vp-description {
  max-width: 70ch;
  margin-bottom: 2.5rem;
}

.vp-description p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(26, 65, 70, 0.75);
  font-weight: 300;
}

/* ─── SECTIONS ─── */
.vp-section {
  margin: 3rem 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(26, 65, 70, 0.1);
}

.vp-section__heading {
  font-family: 'Cutive', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

/* ─── PLAY SHOPS ─── */
.vp-playshops__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.vp-playshop {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.vp-playshop__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.vp-playshop__body {
  padding: 1.1rem 1.25rem;
}

.vp-playshop__body h3 {
  font-family: 'Cutive', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.vp-playshop__desc {
  font-size: 0.88rem;
  color: rgba(26, 65, 70, 0.6);
  line-height: 1.55;
  font-weight: 300;
}

.vp-cta-link {
  display: inline-block;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.vp-cta-link:hover {
  text-decoration: underline;
}

/* ─── UNLISTED PLACEHOLDER (venue's "Live on site" box unchecked) ─── */
.vp-unlisted {
  text-align: center;
  padding: 5rem 1.5rem;
}

.vp-unlisted h1 {
  margin-bottom: 0.75rem;
}

.vp-unlisted p {
  color: rgba(26, 65, 70, 0.6);
  margin-bottom: 1.5rem;
}

/* ─── LODGING ─── */
.vp-lodging__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.vp-lodging__stat {
  display: flex;
  flex-direction: column;
}

.vp-lodging__num {
  font-family: 'Cutive', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-teal);
}

.vp-lodging__label {
  font-size: 0.8rem;
  color: rgba(26, 65, 70, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vp-lodging__types {
  font-size: 0.95rem;
  color: rgba(26, 65, 70, 0.75);
  margin-bottom: 0.9rem;
}

.vp-lodging__amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.vp-lodging__amenities li {
  background: var(--off-white);
  color: var(--dark-teal);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.82rem;
}

/* ─── INQUIRY CTA ─── */
.vp-inquiry {
  text-align: center;
  margin: 3.5rem 0 1.5rem;
}

.vp-inquiry__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--dark-teal);
  color: var(--cream);
  padding: 1.1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.vp-inquiry__btn:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

/* ─── LIGHTBOX (built lazily by js/venue-page.js) ─── */
.vp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 30, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.vp-lightbox.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.vp-lightbox__img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
}

.vp-lightbox__close,
.vp-lightbox__prev,
.vp-lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background 0.2s;
}

.vp-lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
}

.vp-lightbox__prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.vp-lightbox__next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.vp-lightbox__close:hover,
.vp-lightbox__prev:hover,
.vp-lightbox__next:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .vp-page {
    padding: 5.5rem 1.5rem 3.5rem;
  }

  .vp-lodging__stats {
    gap: 1.25rem;
  }

  .vp-lightbox__prev,
  .vp-lightbox__next {
    width: 38px;
    height: 38px;
  }
}
