/* AYATICKETS Venue detail — premium flat */

.aya-venue-detail {
  --aya-brand: #c3073f;
  --aya-brand-hover: #a00635;
  --aya-ink: #111827;
  --aya-muted: #6b7280;
  --aya-border: #ebebeb;
  --aya-surface: #fafafa;
  --aya-card-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

body.aya-venue-detail-page {
  background: #fff !important;
}

.aya-venue-detail .venue-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--aya-border);
}

.aya-venue-detail .venue-hero .item-slide {
  position: relative;
  height: 48vh;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aya-venue-detail .venue-hero .slider-img {
  max-height: 48vh;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  z-index: 1;
}

.aya-venue-detail .venue-hero .slider-blured-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(12px) saturate(105%);
  transform: scale(1.1);
  opacity: 0.45;
  z-index: 0;
}

.aya-venue-detail .venue-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.55));
  z-index: 2;
}

.aya-venue-detail .venue-hero--noimg {
  height: 42vh;
  min-height: 280px;
  background: var(--aya-brand);
}

.aya-venue-detail .venue-hero .hero-meta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  z-index: 3;
  width: min(1120px, 92%);
  color: #fff;
}

.aya-venue-detail .hero-title {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  font-size: clamp(1.25rem, 4vw, 2.25rem);
}

.aya-venue-detail .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.aya-venue-detail .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 500;
  font-size: 0.8125rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.aya-venue-detail .shell {
  background: #fff;
  border: 1px solid var(--aya-border);
  border-radius: 12px;
  box-shadow: var(--aya-card-shadow);
}

.aya-venue-detail .section {
  border: 1px solid var(--aya-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--aya-card-shadow);
}

.aya-venue-detail .section-head {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--aya-border);
  position: relative;
}

.aya-venue-detail .section-head .accent {
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  background: var(--aya-brand);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.aya-venue-detail .section-title {
  margin: 0;
  font-weight: 600;
  color: var(--aya-ink);
  font-size: 1rem;
}

.aya-venue-detail .section-body {
  padding: 18px;
}

.aya-venue-detail .dl + .dl {
  border-top: 1px dashed var(--aya-border);
}

.aya-venue-detail .dl dt {
  width: 200px;
  color: var(--aya-muted);
  font-weight: 600;
  font-size: 0.875rem;
}

.aya-venue-detail .dl dd {
  margin-bottom: 0;
  color: var(--aya-ink);
}

.aya-venue-detail .section-body .chip {
  background: var(--aya-surface);
  border: 1px solid var(--aya-border);
  color: #374151;
  backdrop-filter: none;
}

.aya-venue-detail .section-body .chip i {
  color: var(--aya-brand);
}

.aya-venue-detail .amenity {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--aya-border);
  background: var(--aya-surface);
  color: #374151;
  font-weight: 500;
  font-size: 0.8125rem;
  box-shadow: none;
}

.aya-venue-detail .amenity i {
  color: var(--aya-brand);
  opacity: 1;
}

.aya-venue-detail .venue-map {
  border-radius: 10px;
  border: 1px solid var(--aya-border);
  box-shadow: var(--aya-card-shadow);
}

.aya-venue-detail .sticky-right {
  position: relative;
}

@media (min-width: 992px) {
  .aya-venue-detail .sticky-right {
    position: sticky;
    top: 84px;
  }
}

@media (max-width: 992px) {
  .aya-venue-detail .venue-hero .item-slide {
    height: 42vh;
    min-height: 300px;
  }

  .aya-venue-detail .venue-hero .slider-img {
    max-height: 42vh;
  }
}

@media (max-width: 576px) {
  .aya-venue-detail .venue-hero .item-slide {
    height: 36vh;
    min-height: 220px;
  }

  .aya-venue-detail .venue-hero .slider-img {
    max-height: 36vh;
  }

  .aya-venue-detail .chips {
    gap: 0.4rem;
  }

  .aya-venue-detail .dl dt {
    width: 150px;
  }
}
