/* =========================================================
   Book Online page
   ========================================================= */

.book-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.book-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.booking-panel {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 2rem;
}

/* This is the container your booking software's embed code (iframe or
   script snippet) should go into. It's set to a sensible default height
   so the page looks right even before a widget is added — most booking
   platforms (e.g. Cliniko, Fresha, Setmore, Nookal, HealthEngine) also
   let you set a fixed or 100% height on their embed for a closer fit. */
.booking-embed {
  min-height: 720px;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.booking-embed-placeholder {
  max-width: 46ch;
  color: var(--color-ink-soft);
}

.booking-embed-placeholder strong {
  display: block;
  color: var(--color-teal-900);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.booking-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 720px;
  border: 0;
  display: block;
}

.book-alt-contact {
  margin-top: 2rem;
  text-align: center;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .booking-panel {
    padding: 1.25rem;
  }

  .booking-embed,
  .booking-embed iframe {
    min-height: 600px;
  }
}
