/* ============================================================
   EAGLES PHOTOGRAPHY — BOOKING PAGE CSS
   Centered request form
   ============================================================ */

.ep-booking-hero {
  padding: 80px var(--content-pad) 0;
  background: var(--color-bg);
  text-align: center;
}

.ep-booking-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-display-l);
  line-height: var(--lh-display);
  color: var(--color-ink);
}

.ep-booking-hero__sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-ink-muted);
  margin-top: 16px;
}

/* Centered form — wraps the 720px .ep-book-card with edge padding */
.ep-booking {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 0;
}

/* Two fields side by side on wider screens */
.ep-booking__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
}

.ep-booking__actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

/* date inputs keep the underline style consistent */
.ep-field[type="date"] {
  cursor: none;
}

@media (hover: none), (pointer: coarse) {
  .ep-field[type="date"] { cursor: text; }
}

@media (max-width: 640px) {
  .ep-booking__row { grid-template-columns: 1fr; column-gap: 0; }
}
