/* assets/css/events.css — events list, detail, enquire, credits (sharp & editorial) */

.ov-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === Events list === */

.ov-events-hero {
  background: var(--navy);
  background-image: linear-gradient(180deg, rgba(11,22,38,0.78), rgba(11,22,38,0.92)), url('/assets/img/wiki/concerts.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 96px 0 72px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ov-events-hero .ov-container { max-width: 1240px; }
.ov-events-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: #fff;
}
.ov-events-hero p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  font-weight: 300;
  line-height: 1.55;
}
.ov-events-hero a { color: rgba(255,255,255,0.7); }

.ov-events-toolbar {
  background: var(--stratos);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.ov-events-toolbar .ov-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ov-events-filter {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ov-events-filter label {
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ov-events-filter select {
  padding: 9px 36px 9px 14px;
  border-radius: 0;
  border: 1px solid var(--line-strong);
  font-size: 0.95rem;
  background: var(--stratos);
  font-family: inherit;
  color: var(--ink);
  -webkit-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.ov-events-count {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ov-events-grid-wrap {
  padding: 56px 0 96px;
  background: var(--light-bg);
  min-height: 60vh;
}
.ov-events-empty {
  text-align: center;
  padding: 72px 16px;
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.ov-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.ov-listing-card {
  display: flex;
  flex-direction: column;
  background: var(--stratos);
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.25s ease;
}
.ov-listing-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.ov-listing-card:hover .ov-listing-card-img::before { opacity: 0.05; }
.ov-listing-card:hover .ov-listing-card-img-bg { transform: scale(calc(var(--zoom, 1) * 1.04)); }

.ov-listing-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}
.ov-listing-card-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--fx, 50%) var(--fy, 50%);
  transform: scale(var(--zoom, 1));
  transform-origin: var(--fx, 50%) var(--fy, 50%);
  display: block;
  transition: transform 0.6s ease;
}
.ov-listing-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,22,38,0) 50%, rgba(11,22,38,0.6) 100%);
  opacity: 0.85;
  transition: opacity 0.25s ease;
  z-index: 1;
}
.ov-listing-card-type {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11,22,38,0.85);
  color: #fff;
  padding: 5px 11px;
  border-radius: 0;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.ov-listing-card-body {
  padding: 22px 22px 26px;
}
.ov-listing-card-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--ink);
}
.ov-listing-card-venue,
.ov-listing-card-date {
  margin: 4px 0;
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ov-listing-card-venue i,
.ov-listing-card-date i {
  width: 12px;
  color: var(--muted-light);
  font-size: 0.85rem;
}
.ov-listing-card-from {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ov-listing-card-from strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

/* === Event detail === */

.ov-event-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ov-event-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.ov-event-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,22,38,0.55) 0%, rgba(11,22,38,0.92) 100%);
}
.ov-event-hero .ov-container {
  position: relative;
  z-index: 1;
}
.ov-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.ov-back-link:hover { color: var(--gold); }

.ov-event-hero-type {
  display: inline-block;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 4px 0;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}
.ov-event-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0 0 26px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 900px;
}
.ov-event-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 300;
}
.ov-event-hero-meta i {
  margin-right: 6px;
  color: var(--gold);
  font-size: 0.85rem;
}

/* Two-column layout for description + sticky packages */
.ov-event-body {
  background: var(--stratos);
  padding: 64px 0 96px;
  border-bottom: 1px solid var(--line);
}
.ov-event-body .ov-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 64px;
  align-items: start;
}

.ov-event-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 400;
}
.ov-event-description p { margin: 0 0 1em; }
.ov-event-description-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 16px;
}
.ov-event-description h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 22px;
}
.ov-event-description-empty {
  font-style: italic;
  color: var(--muted);
}

/* Right rail packages */
.ov-tickets {
  position: sticky;
  top: 96px;
  align-self: start;
}
.ov-tickets-head {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.ov-ticket-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.ov-ticket {
  background: var(--stratos);
  border: 1px solid var(--line);
  border-bottom: none;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ov-ticket:last-child { border-bottom: 1px solid var(--line); }
.ov-ticket:hover { background: var(--light-bg); }
.ov-ticket-main h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  margin: 0 0 8px;
  color: var(--ink);
}
.ov-ticket-desc {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ov-ticket-stock {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ov-stock-ok { color: #047857; font-weight: 600; }
.ov-stock-low { color: #b91c1c; font-weight: 600; }

.ov-ticket-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.ov-ticket-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ov-ticket-price-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.ov-ticket-price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
}

.ov-tickets-empty {
  background: var(--light-bg);
  padding: 32px;
  text-align: center;
  font-style: italic;
  color: var(--muted);
  border: 1px solid var(--line);
}

/* === Buttons (events scope) === */
.ov-btn {
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  font: 600 0.74rem/1 'Inter', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ov-btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.ov-btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}
.ov-btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.ov-btn-ghost-dark:hover {
  background: var(--ink);
  color: #fff;
}
.ov-btn-small { padding: 9px 18px; font-size: 0.68rem; }

/* === Header nav additions === */
.ov-nav {
  display: flex;
  gap: 32px;
}
.ov-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ov-nav a:hover { color: var(--gold); }

/* === Minimal footer === */
.ov-footer-min {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 28px 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ov-footer-min .ov-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.ov-footer-min a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.ov-footer-min a:hover { color: var(--gold); }

/* === Enquire form === */
.ov-enquire-wrap {
  background: var(--light-bg);
  padding: 56px 0 96px;
}
.ov-enquire-form {
  background: var(--stratos);
  padding: 36px 40px;
  border: 1px solid var(--line);
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ov-enquire-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ov-enquire-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ov-enquire-form input[type=text],
.ov-enquire-form input[type=email],
.ov-enquire-form input[type=tel],
.ov-enquire-form input[type=number],
.ov-enquire-form textarea {
  font: 400 0.95rem var(--body);
  letter-spacing: 0;
  text-transform: none;
  color: var(--bone);
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
}
.ov-enquire-form input::placeholder,
.ov-enquire-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.ov-enquire-form input:focus,
.ov-enquire-form textarea:focus {
  outline: 1px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.ov-enquire-check {
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.9rem !important;
  color: var(--ink-soft) !important;
  font-weight: 400 !important;
}
.ov-enquire-check input { margin: 0; }
.ov-enquire-actions { display: flex; justify-content: flex-end; padding-top: 6px; }
.ov-enquire-flash {
  padding: 14px 18px;
  border-radius: 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  max-width: 760px;
  border-left: 3px solid;
}
.ov-enquire-ok { background: rgba(4, 120, 87, 0.18); color: #6ee7b7; border-color: #047857; }
.ov-enquire-err { background: rgba(185, 28, 28, 0.18); color: #fca5a5; border-color: #b91c1c; }

/* === Credits page === */
.ov-credits-wrap {
  background: var(--light-bg);
  padding: 56px 0 96px;
}
.ov-credits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
}
.ov-credit {
  background: var(--stratos);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 280px 1fr;
}
.ov-credit-img {
  background-size: cover;
  background-position: center;
  min-height: 200px;
}
.ov-credit-body { padding: 24px 28px; }
.ov-credit-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.ov-credit-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
}
.ov-credit-body dl {
  margin: 0;
  display: grid;
  grid-template-columns: 88px 1fr;
  row-gap: 6px;
  column-gap: 12px;
  font-size: 0.85rem;
}
.ov-credit-body dt {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  align-self: center;
}
.ov-credit-body dd { margin: 0; color: var(--ink-soft); }
.ov-credit-body a { color: var(--ink); text-decoration: underline; }
.ov-credit-body a:hover { color: var(--gold); }

@media (max-width: 980px) {
  .ov-event-body .ov-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ov-tickets { position: static; }
  .ov-credit { grid-template-columns: 1fr; }
  .ov-credit-img { min-height: 220px; }
}

@media (max-width: 600px) {
  .ov-container { padding: 0 20px; }
  .ov-events-hero { padding: 56px 0 40px; }
  .ov-event-hero { padding: 56px 0 40px; }
  .ov-events-toolbar .ov-container { flex-direction: column; align-items: flex-start; }
  .ov-enquire-row { grid-template-columns: 1fr; }
  .ov-enquire-form { padding: 24px 20px; }
}
