/* V6 – Lesbarkeit Anfragebereich + Wiederherstellung der thematischen Domainlinks */

/* Anfragebereich: ausreichend Kontrast auf dem dunklen Ostsee-Hintergrund */
.booking .booking-copy h2,
.booking .booking-copy p,
.booking .booking-copy .contact-note,
.booking .booking-copy .phone {
  color:#fff;
}
.booking .booking-copy .eyebrow {
  color:#DCEFF3;
}
.booking .booking-copy p,
.booking .booking-copy .contact-note {
  color:rgba(255,255,255,.88);
}
.booking .booking-copy .phone {
  text-decoration-color:rgba(255,255,255,.55);
}

/* Kontextuelle Verlinkung zu den beiden Reiseführern – bewusst dezent, nicht wie ein Buchungs-CTA. */
.site-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:22px 0 28px;
}
.site-links a{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:10px 15px;
  border:1px solid rgba(14,90,117,.22);
  border-radius:999px;
  background:#fff;
  color:#083E52;
  font-weight:750;
  text-decoration:none;
  box-shadow:0 6px 18px rgba(8,62,82,.06);
}
.site-links a:hover,
.site-links a:focus-visible{
  background:#DCEFF3;
  border-color:#0E5A75;
  outline:none;
}

@media(max-width:767px){
  .site-links{display:grid;grid-template-columns:1fr;gap:10px;margin:18px 0 22px}
  .site-links a{width:100%;justify-content:center;text-align:center}
}
