/* ========================================================
   BOOKING.CSS — Booking Page & Contact Section
   ======================================================== */

/* ===== BOOKING SECTION ===== */

.booking-section {
  padding: var(--space-xl) var(--space-md);
  min-height: calc(100svh - 72px);
  background: var(--bg-primary);
  display: flex;
  align-items: center;
}

.contact-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.booking-title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.contact-text {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.contact-btn {
  font-size: var(--fs-body);
  padding: 1.25rem 3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .booking-section {
    padding: var(--space-lg) var(--space-md);
    min-height: auto;
  }

  .booking-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .contact-btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .booking-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}
