/* Custom Page Styles */

.venue-hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, hsla(var(--color-primary-hsl), 0.28), transparent 36%),
    radial-gradient(circle at bottom right, hsla(var(--color-secondary-hsl), 0.30), transparent 34%),
    linear-gradient(135deg, var(--color-surface-dark) 0%, hsl(249, 35%, 12%) 55%, hsl(249, 30%, 9%) 100%);
}

.venue-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsla(0, 0%, 100%, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, hsla(0, 0%, 100%, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.section-dark .eyebrow {
  color: var(--color-text-on-surface-dark);
  opacity: 0.78;
}

.hero-copy h1 {
  font-size: var(--text-display);
  max-width: 10ch;
  margin-bottom: var(--space-md);
  color: var(--color-text-on-surface-dark);
}

.hero-text {
  max-width: 58ch;
  font-size: 1.05rem;
  color: var(--color-text-on-surface-dark);
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid hsla(0, 0%, 100%, 0.12);
}

.meta-item {
  font-size: var(--text-small);
  color: var(--color-text-on-surface-dark);
  opacity: 0.88;
}

.meta-dot {
  color: var(--color-text-on-surface-dark);
  opacity: 0.5;
}

.hero-visual {
  position: relative;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 8% -8% 8%;
  height: 28px;
  background: hsla(var(--color-primary-hsl), 0.28);
  filter: blur(28px);
  border-radius: var(--radius-full);
  z-index: -1;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  min-height: 360px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: var(--space-xl);
}

.section-intro-dark {
  max-width: 720px;
}

.section-lead {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.feature-card {
  height: 100%;
  position: relative;
  padding-top: calc(var(--space-lg) + var(--space-sm));
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-top-left-radius: var(--radius-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.feature-icon i {
  font-size: 1.125rem;
}

.venue-grid {
  align-items: center;
}

.venue-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  min-height: 100%;
  object-fit: cover;
}

.venue-copy {
  padding-left: var(--space-lg);
}

.detail-list {
  margin: var(--space-lg) 0 0;
  padding-left: 1.25rem;
  color: var(--color-text);
}

.detail-list li {
  margin-bottom: var(--space-sm);
}

.venue-highlights {
  position: relative;
  overflow: hidden;
}

.venue-highlights::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, hsla(var(--color-secondary-hsl), 0.28), transparent 70%);
  filter: blur(16px);
  pointer-events: none;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.highlight-panel {
  padding: var(--space-lg);
  background: hsla(0, 0%, 100%, 0.04);
  border: 1px solid hsla(0, 0%, 100%, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.highlight-panel h3 {
  color: var(--color-text-on-surface-dark);
}

.highlight-panel p {
  margin-bottom: 0;
  color: var(--color-text-on-surface-dark);
  opacity: 0.88;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
}

.fact-card {
  height: 100%;
}

.fact-number {
  display: inline-block;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
}

.info-card {
  height: 100%;
}

.info-head {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.info-head i {
  color: var(--color-primary);
  font-size: 1rem;
}

.info-head h3 {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.gallery-card {
  margin: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-card img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  color: var(--color-text-muted);
  font-size: var(--text-small);
}

.venue-cta {
  background:
    radial-gradient(circle at top left, hsla(var(--color-primary-hsl), 0.24), transparent 32%),
    radial-gradient(circle at bottom right, hsla(var(--color-secondary-hsl), 0.24), transparent 30%),
    var(--color-surface-dark);
}

.cta-panel {
  max-width: 760px;
}

.cta-panel h2 {
  color: var(--color-text-on-surface-dark);
}

.cta-panel p {
  color: var(--color-text-on-surface-dark);
  opacity: 0.88;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (max-width: 1023px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .venue-copy {
    padding-left: 0;
    padding-top: var(--space-lg);
  }

  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .venue-hero {
    min-height: auto;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
  }

  .highlights-grid,
  .facts-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual img,
  .gallery-card img {
    min-height: 240px;
  }
}

@media (max-width: 480px) {
  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .meta-dot {
    display: none;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .highlight-panel,
  .gallery-card figcaption {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}