/* ═══════════════════════════════════════════════════════
   WHAT'S ON PAGE — The Saracen's Head Inn
   ═══════════════════════════════════════════════════════ */

/* ── Page Hero ── */
.whatson-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-xl);
  background: var(--ink);
  text-align: center;
  overflow: hidden;
}

.whatson-hero__bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background: url('../images/pub-front.jpg') center 30% / cover no-repeat;
  opacity: 0.2;
}

.whatson-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, var(--ink) 100%);
}

.whatson-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.whatson-hero__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ale-light);
  margin-bottom: var(--space-sm);
  display: block;
}

.whatson-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.whatson-hero__subtitle {
  font-size: var(--text-base);
  color: var(--parchment-dark);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Fixtures Section ── */
.whatson-fixtures {
  background: var(--parchment);
  padding: var(--space-xl) 0 var(--space-2xl);
}

/* ── Date Group ── */
.whatson-date-group {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.whatson-date-group:first-child {
  margin-top: 0;
}

.whatson-date-group__heading {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
}

.whatson-date-group__day {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--ink);
}

.whatson-date-group__full {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--stone);
  font-weight: 400;
}

/* ── Fixture Card ── */
.fixture {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.fixture:last-of-type {
  border-bottom: none;
}

/* Time column */
.fixture__time {
  flex-shrink: 0;
  width: 72px;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  padding-top: 0.15rem;
}

.fixture__time-value {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

.fixture__time-period {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Body */
.fixture__body {
  flex: 1;
  min-width: 0;
}

.fixture__comp {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ale);
  display: block;
  margin-bottom: 0.25rem;
}

.fixture__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.fixture__desc {
  font-size: var(--text-sm);
  color: var(--stone);
  line-height: 1.7;
}

/* ── Sport Overview ── */
.whatson-sport-intro {
  font-size: var(--text-base);
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 640px;
}

.whatson-sport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.whatson-sport-card {
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-top: 2px solid var(--ale);
}

.whatson-sport-card__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ale);
  display: block;
  margin-bottom: var(--space-xs);
}

.whatson-sport-card p {
  font-size: var(--text-sm);
  color: var(--stone);
  line-height: 1.7;
}

.whatson-sport-note {
  font-size: var(--text-sm);
  color: var(--stone);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
}

.whatson-sport-note a {
  color: var(--ale);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── CTA Section ── */
.whatson-cta {
  padding: var(--space-2xl) 0;
}

/* ── Active Nav Link ── */
.nav__link--active {
  color: var(--ale-light) !important;
}

.nav__link--active::after {
  width: 100% !important;
  opacity: 0.3 !important;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .whatson-hero {
    padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-lg);
  }

  .whatson-sport-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .whatson-hero__title {
    font-size: var(--text-3xl);
  }
}
