/* === Booking spezifisch (Layout-Erweiterung) === */
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin-top: 3rem;
}
main {
  flex: 1;
}


.booking-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.booking-image {
  flex: 1 1 350px;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.booking-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.contact-content {
  flex: 1 1 500px;
  text-align: center;
}

.contact-info {
    text-align: center;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
  .booking-layout {
    flex-direction: column;
    align-items: center;
  }

  .booking-image img {
    max-width: 100%;
  }

  .contact-content {
    width: 100%;
  }
}
