/* ═══════════════════════════════════════════════════════
   BOOK PAGE — The Saracen's Head Inn
   ═══════════════════════════════════════════════════════ */

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

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

.book-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%);
}

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

.book-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;
}

.book-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);
}

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

/* ── Booking Options ── */
.book-options {
  background: var(--parchment);
  padding: var(--space-2xl) 0;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Booking Card ── */
.book-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.book-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.book-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  color: var(--ale);
}

.book-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--space-xs);
}

.book-card__desc {
  font-size: var(--text-sm);
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.book-card__desc strong {
  color: var(--ink);
  font-weight: 500;
}

.book-card__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.book-card__actions .btn {
  width: 100%;
  justify-content: center;
}

.book-card__note {
  margin-top: var(--space-sm);
  font-size: var(--text-xs);
  color: var(--stone);
  font-style: italic;
}

.book-card__note a {
  color: var(--ale);
  font-weight: 500;
  font-style: normal;
}

/* ── Contact Bar ── */
.book-contact {
  padding: var(--space-xl) 0;
}

.book-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.book-contact__item h3 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ale-light);
  margin-bottom: var(--space-xs);
}

.book-contact__item a,
.book-contact__item p {
  font-size: var(--text-sm);
  color: var(--parchment);
  line-height: 1.7;
}

.book-contact__item a:hover {
  color: var(--ale-light);
}

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

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

  .book-grid {
    grid-template-columns: 1fr;
  }

  .book-contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

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