/**
 * HD Sports Zone venue home — Carbon Bay / Volt (matches booking lounge)
 */

:root {
  --vh-ink: #0b1220;
  --vh-fog: #eef2f6;
  --vh-mute: #9aa7b5;
  --vh-panel: #f7f4ef;
  --vh-panel-ink: #141a22;
  --vh-line: #d8d0c4;
  --vh-volt: #b6ff3b;
  --vh-gold: #c9a46a;
  --vh-dark: #0a0d12;
}

.vh-body {
  margin: 0;
  min-height: 100vh;
  background: var(--vh-dark);
  color: var(--vh-fog);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 17px;
}

.vh-wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.vh-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 4vw, 2.5rem);
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgb(0 0 0 / 62%), transparent);
}

.vh-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: #fff;
}

.vh-brand img {
  display: block;
  width: auto;
  height: clamp(120px, 18vw, 172px);
  max-width: min(340px, 48vw);
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  padding: 0;
  box-shadow: none;
  filter: drop-shadow(0 4px 16px rgb(0 0 0 / 60%));
}

.vh-brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: .04em;
  color: var(--vh-ink);
  background: var(--vh-volt);
  box-shadow: 0 0 0 1px rgb(182 255 59 / 35%);
}

.vh-brand strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-shadow: 0 1px 12px rgb(0 0 0 / 55%);
}

.vh-brand-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vh-brand span {
  color: rgb(182 255 59 / 88%);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.vh-nav { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.vh-nav a {
  min-height: 42px;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: rgb(10 13 18 / 35%);
  backdrop-filter: blur(8px);
  font-weight: 600;
}
.vh-nav a:hover { border-color: var(--vh-volt); background: rgb(182 255 59 / 18%); }
.vh-nav a.is-current {
  border-color: rgb(255 255 255 / 55%);
  background: rgb(255 255 255 / 12%);
}
.vh-nav a.is-cta {
  background: var(--vh-volt);
  color: var(--vh-ink);
  border-color: transparent;
}

.vh-hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.vh-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(8 10 14 / 35%) 0%, rgb(8 10 14 / 55%) 45%, #0a0d12 100%),
    url("/images/booking-hero-lounge.png") center / cover no-repeat;
  transform: scale(1.02);
  animation: vh-drift 22s ease-in-out infinite alternate;
}

.vh-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 320px at 20% 70%, rgb(182 255 59 / 10%), transparent 60%),
    radial-gradient(500px 260px at 80% 40%, rgb(201 164 106 / 12%), transparent 55%);
  pointer-events: none;
}

@keyframes vh-drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.5%, -1%, 0); }
}

.vh-hero-copy {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 7.5rem 0 3rem;
}

.vh-kicker {
  display: inline-block;
  margin: 0 0 .75rem;
  padding: .35rem .7rem;
  border: 1px solid rgb(201 164 106 / 45%);
  border-radius: 999px;
  color: var(--vh-gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgb(10 13 18 / 35%);
}

.vh-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  line-height: .92;
  margin: 0 0 .65rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-shadow: 0 8px 40px rgb(0 0 0 / 55%);
}

.vh-hero h1 em {
  font-style: normal;
  color: var(--vh-volt);
}

.vh-hero p {
  color: rgb(238 242 246 / 88%);
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: 1.2rem;
  line-height: 1.5;
}

.vh-cta-row { display: flex; flex-wrap: wrap; gap: .75rem; }

.vh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .75rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
}

.vh-btn-volt { background: var(--vh-volt); color: var(--vh-ink); }
.vh-btn-volt:hover { filter: brightness(1.05); }
.vh-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
}
.vh-btn-ghost:hover { border-color: var(--vh-volt); color: var(--vh-volt); }
.vh-btn-dark { background: var(--vh-ink); color: #fff; }

.vh-section { padding: 3.5rem 0; }
.vh-section h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 .4rem;
  color: #fff;
}
.vh-lede { color: var(--vh-mute); margin: 0 0 1.75rem; max-width: 36rem; font-size: 1.12rem; line-height: 1.5; }

.vh-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.vh-card {
  background: var(--vh-panel);
  color: var(--vh-panel-ink);
  border-radius: 18px;
  padding: 1.25rem 1.3rem 1.4rem;
  text-decoration: none;
  box-shadow: 0 18px 40px rgb(0 0 0 / 35%);
  transition: transform .2s ease, box-shadow .2s ease;
  display: block;
}
.vh-card:hover { transform: translateY(-3px); }
.vh-card .tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5c564c;
  margin-bottom: .4rem;
}
.vh-card strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: .3rem;
}
.vh-card span { color: #5c564c; font-size: 1.05rem; line-height: 1.4; }
.vh-card .price {
  margin-top: .85rem;
  font-weight: 700;
  color: var(--vh-ink);
}

.vh-hours {
  display: grid;
  gap: .55rem;
  max-width: 440px;
}
.vh-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem .9rem;
  background: #151a22;
  border: 1px solid #2e3845;
  border-radius: 10px;
  font-weight: 600;
}
.vh-hours-row em { font-style: normal; color: var(--vh-mute); }

.vh-band {
  margin: 1rem 0 3.5rem;
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(120deg, #151a22, #1f2a1a 55%, #2a3d18);
  border: 1px solid #3a5f2d;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.vh-band h2 { margin: 0 0 .35rem; color: #fff; }
.vh-band p { margin: 0; color: var(--vh-mute); max-width: 34rem; }

.vh-foot {
  border-top: 1px solid #2e3845;
  padding: 1.5rem 0 2.5rem;
  color: var(--vh-mute);
  font-size: .92rem;
}

.vh-panel {
  background: var(--vh-panel);
  color: var(--vh-panel-ink);
  border-radius: 18px;
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: 0 24px 60px rgb(0 0 0 / 45%);
  margin: -1.5rem auto 2.5rem;
  position: relative;
  z-index: 5;
  width: min(720px, calc(100% - 2rem));
}
.vh-panel h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.1rem;
  margin: 0 0 .35rem;
  text-transform: uppercase;
  color: var(--vh-panel-ink);
}
.vh-panel .lead { color: #5c564c; margin: 0 0 1.25rem; }
.vh-field { margin-bottom: 1rem; }
.vh-field label { display: block; font-weight: 600; color: #5c564c; margin-bottom: .35rem; }
.vh-field input, .vh-field select, .vh-field textarea {
  width: 100%;
  min-height: 52px;
  padding: .7rem .85rem;
  border-radius: 10px;
  border: 1px solid var(--vh-line);
  background: #fff;
  font: inherit;
  box-sizing: border-box;
}
.vh-field textarea { min-height: 100px; }
.vh-amt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: .6rem;
  margin-bottom: 1rem;
}
.vh-amt {
  border: 1px solid var(--vh-line);
  background: #fff;
  border-radius: 12px;
  padding: .85rem;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
}
.vh-amt input { display: none; }
.vh-amt:has(input:checked) {
  border-color: #1f6b4a;
  background: #eef8e6;
  box-shadow: 0 0 0 1px #1f6b4a;
}
.vh-square {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px dashed var(--vh-line);
  border-radius: 12px;
  background: #fff;
}
.vh-err { color: #a44; font-size: .95rem; margin: .5rem 0; }

@media (max-width: 700px) {
  .vh-nav .hide-sm { display: none; }
}
