/* ── Booking section layout ─────────────────────────────────────
   Colors, card background and blur are defined on .booking-content
   in main.css — this file only handles the internal grid layout. */

.booking-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 8px;
}

#booking-text p {
  margin: 0;
}

.booking-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact {
  color: #fff;
  font-weight: 500;
  padding: 20px 24px;
  background: rgba(233, 30, 172, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
}

#contact p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  line-height: 1.9;
}

#booking-image img {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 800px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
