/* /pages/booking/css/booking.css
   Booking page styles (scoped)
   -------------------------------------------- */

/* ============================
   BOOKING HERO + SUBHERO IMAGE (layered)
   Text overlays the image like About
   ============================ */

.subpage-hero.booking-hero {
  height: auto;
  min-height: 300px;        /* reduced from hero-scale */
  box-sizing: border-box;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Text container */
.booking-hero .subpage-hero-inner {
  position: relative;
  z-index: 3;
  padding: 2.25rem 1.5rem;  /* tighter vertical rhythm */
  box-sizing: border-box;
}

/* Image fills hero */
.booking-subhero-image-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.booking-subhero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.subpage-hero.booking-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background: radial-gradient(
    circle at top,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.92)
  );
}

/* Desktop */
@media (min-width: 900px) {
  .subpage-hero.booking-hero {
    min-height: 360px;      /* was 520px */
  }

  .booking-hero .subpage-hero-inner {
    padding: 3rem 1.75rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .subpage-hero.booking-hero {
    min-height: 260px;
  }

  .booking-hero .subpage-hero-inner {
    padding: 1.9rem 1.25rem;
  }
}

/* ============================================
   HERO TEXT (Booking-only)
   ============================================ */

.booking-hero .subpage-title,
.booking-hero .subpage-subtitle {
  color: #fff;
}

.booking-hero .subpage-subtitle {
  opacity: 0.85;
  margin-top: 0.6rem;
}

/* ============================================
   SECTION WRAPPER
   ============================================ */

.booking-section {
  padding: 4rem 0;
  background: #000;
}

.booking-inner {
  display: flex;
  justify-content: center;
}

/* ============================================
   FORM CARD
   ============================================ */

.booking-form {
  width: 100%;
  max-width: 720px;
  padding: 1.75rem 1.75rem 1.5rem;
  border-radius: 14px;
  color: #fff;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 167, 99, 0.20);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

/* FORM NOTE (top message) */
.booking-form-note {
  margin: 0 0 1.15rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;

  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);

  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.booking-form-note a {
  color: rgba(200, 167, 99, 1);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 167, 99, 0.55);
}

.booking-form-note a:hover {
  border-bottom-color: rgba(200, 167, 99, 0.95);
}

/* ============================================
   FIELD SPACING + LABELS
   ============================================ */

.booking-field {
  margin-bottom: 1rem;
}

.booking-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Small helper note inside labels */
.booking-field-note {
  font-size: 0.85em;
  opacity: 0.75;
  margin-left: 0.35rem;
}

/* ============================================
   INPUTS
   ============================================ */

.booking-field input,
.booking-field textarea,
.booking-field select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.45);

  color: #fff;
  font: inherit;
}

.booking-field textarea {
  resize: vertical;
  min-height: 150px;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.booking-field input:focus,
.booking-field textarea:focus,
.booking-field select:focus {
  outline: none;
  border-color: rgba(200, 167, 99, 0.70);
  box-shadow: 0 0 0 3px rgba(200, 167, 99, 0.18);
}

/* ============================================
   DATE ROW (Show Date + Alternate on one line)
   ============================================ */

.booking-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.booking-date-row .booking-field {
  margin-bottom: 0;
}

/* ============================================
   SUBMIT BUTTON (CTA STYLE)
   ============================================ */

.booking-submit.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 0.75rem;
  padding: 0.75rem 2.25rem;
  min-width: 220px;

  font-family: 'Algerian', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  background: linear-gradient(
    to right,
    rgba(200, 167, 99, 0.85),
    rgba(200, 167, 99, 1)
  );

  color: #000;
  border: none;
  border-radius: 999px;

  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.booking-submit.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 167, 99, 0.35);
}

.booking-submit.btn-gold:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(200, 167, 99, 0.25);
}

/* ============================================
   MOBILE TUNING
   ============================================ */

@media (max-width: 640px) {

  .booking-hero .subpage-hero-inner,
  .booking-hero .container.subpage-hero-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .booking-hero .subpage-title {
    font-size: 2.4rem;
    line-height: 1.05;
    text-align: center;
    margin-top: 0.25rem;
  }

  .booking-hero .subpage-subtitle {
    text-align: center;
    max-width: 28rem;
    margin: 0.75rem auto 0;
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .booking-section {
    padding: 2.5rem 0 3rem;
  }

  .booking-inner {
    padding: 0 1.1rem;
  }

  .booking-form {
    padding: 1.25rem 1.1rem 1.15rem;
    border-radius: 12px;
  }

  .booking-form-note {
    padding: 0.85rem 0.9rem;
    border-radius: 12px;
    font-size: 0.92rem;
  }

  .booking-date-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .booking-field input,
  .booking-field textarea,
  .booking-field select {
    padding: 0.85rem 0.9rem;
    border-radius: 10px;
  }

  .booking-field textarea {
    min-height: 140px;
  }

  .booking-submit.btn-gold {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}