/* Anpassungen gegenueber dem produktiven Stylesheet. */

/* "Passt besonders zu" oben ausrichten statt mittig. */
.intro-card {
  align-items: start;
}

/* A-Z-Sprungleiste */
.letter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
}

.letter-bar__item {
  min-width: 34px;
  padding: 6px 9px;
  border: 1px solid rgba(0, 88, 188, 0.24);
  border-radius: 10px;
  background: #fff;
  color: #0058bc;
  font: inherit;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
}

.letter-bar__item:hover,
.letter-bar__item.is-active {
  background: #0058bc;
  border-color: #0058bc;
  color: #fff;
}

/* Weitere anzeigen */
.list-more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.list-more__button {
  padding: 12px 22px;
  border: 1px solid rgba(0, 88, 188, 0.28);
  border-radius: 12px;
  background: #fff;
  color: #0058bc;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.list-more__button:hover {
  background: #0058bc;
  border-color: #0058bc;
  color: #fff;
}

.nearby-grid > [hidden],
.list-more[hidden] {
  display: none !important;
}

/* Tagesausfluege mit eigener Zielseite */
.card--linked .card__image-link {
  display: block;
  margin: -4px 0 14px;
}

.card--linked .card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.card--linked .card__title-link {
  color: inherit;
  text-decoration: none;
}

.card--linked .card__title-link:hover {
  text-decoration: underline;
}

.card__link {
  margin-top: 12px;
  font-weight: 600;
}

.card__link a {
  color: #0058bc;
  text-decoration: none;
}

.card__link a:hover {
  text-decoration: underline;
}

/* Schritt 8: Preisniveau, Sprungleiste, Kontaktformular */
.hero {
  position: relative;
}

.price-level {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(12, 26, 48, 0.18);
  text-align: right;
}

.price-level__caption {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a6675;
}

.price-level__symbols {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #0c3f7d;
  white-space: nowrap;
}

.price-level__image {
  display: block;
  height: 22px;
  width: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .price-level {
    top: 12px;
    right: 12px;
    padding: 6px 10px;
  }

  .price-level__symbols {
    font-size: 0.9rem;
  }
}

/* A-Z-Leiste bleibt oben stehen, damit das Sprungziel darunter erscheint. */
.letter-bar {
  position: sticky;
  top: var(--sticky-top, 0px);
  z-index: 12;
  margin: 0 0 16px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(12, 26, 48, 0.08);
}

.letter-bar__item.is-active {
  background: #0058bc;
  border-color: #0058bc;
  color: #fff;
}

/* Kontaktformular */
.contact-form {
  display: grid;
  gap: 16px;
  max-width: 640px;
  margin: 8px 0 32px;
}

.contact-form__intro {
  margin: 0;
  color: #4a5563;
}

.contact-form .booking-field {
  display: grid;
  gap: 6px;
}

.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(12, 26, 48, 0.2);
  border-radius: 10px;
  font: inherit;
  resize: vertical;
}

.contact-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-form__consent input {
  margin-top: 3px;
}

.contact-form button {
  justify-self: start;
  padding: 12px 24px;
  border: 0;
  border-radius: 10px;
  background: #0058bc;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #00468f;
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-note {
  margin: 16px 0;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
}

.form-note--ok {
  background: #e6f5ec;
  color: #14653a;
}

.form-note--error {
  background: #fdecec;
  color: #8c1c1c;
}
