/* Booking page — light theme (tokens from ../style.css)
   Page uses a soft off-white so the white iframe/card has clear contrast. */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.booking-page {
  font-family: var(--font-body);
  color: var(--color-text);
  /* Slightly cooler than pure white so the white calendar pops */
  background: #fff;
  overflow-x: clip;
  min-height: 100vh;
}

.booking-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.booking-section {
  flex: 1;
  padding: 48px 20px 56px;
  position: relative;
}

/* Very subtle dot texture (matches funnel hero feel, stays minimal) */
.booking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.05) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.booking-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-section__eyebrow {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.booking-section__title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 10px;
}

.booking-section__sub {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 26px;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* White card: border + shadow separate it from #f1f5f9 page */
.booking-widget-wrap {
  width: 100%;
  max-width: 100%;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.06),
    0 12px 40px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(249, 115, 22, 0.06);
  overscroll-behavior-x: none;
}

.booking-widget-wrap iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 860px;
  border: 0;
  overflow: hidden;
  touch-action: pan-y;
}

@media (min-width: 768px) {
  .booking-section {
    padding: 64px 32px 72px;
  }

  .booking-section__sub {
    margin-bottom: 34px;
  }

  .booking-widget-wrap iframe {
    min-height: 900px;
  }
}

@media (min-width: 1280px) {
  .booking-section {
    padding: 80px 40px 88px;
  }
}
