/* =========================
   BASIS
========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #1d2940;
  background:
    radial-gradient(circle at top left, #ffe2ec 0%, transparent 22%),
    radial-gradient(circle at top right, #dff4ff 0%, transparent 24%),
    #f6f8fc;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select {
  font-family: inherit;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 800;
  color: #17233c;
}

.logo-icon {
  font-size: 30px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: #334155;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #ff5b8a;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 42px 0 18px;
}

.hero-center-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 54px 32px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ffdce8, #fff0b8 42%, #dff1ff);
  box-shadow: 0 18px 50px rgba(25, 40, 79, 0.12);
}

.hero-center-box h1 {
  margin: 0 0 20px;
  font-size: 60px;
  line-height: 1.08;
  color: #16233d;
}

.hero-subtext {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 21px;
  line-height: 1.6;
  color: #445268;
}

/* =========================
   KATEGORIEN
========================= */
.hero-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.category-chip {
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #17233c;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
}

.category-chip:hover {
  transform: translateY(-2px);
}

.category-chip.active {
  background: linear-gradient(135deg, #ff5b8a, #ff7f50);
  color: white;
  box-shadow: 0 12px 24px rgba(255, 91, 138, 0.28);
}

/* =========================
   BUTTONS
========================= */
.hero-buttons {
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ff5b8a, #ff7f50);
  color: white;
  box-shadow: 0 12px 24px rgba(255, 91, 138, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.hero-main-btn {
  font-size: 16px;
  padding: 15px 26px;
}

.btn-card-main {
  background: linear-gradient(135deg, #6c63ff, #8c7bff);
  color: white;
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.24);
}

.btn-card-main:hover {
  transform: translateY(-2px);
}

.btn-card-booking {
  background: #e8f4ff;
  color: #0f4c81;
  border: 1px solid #cfe7ff;
}

.btn-card-booking:hover {
  background: #dcedff;
  transform: translateY(-2px);
}

.btn-card-expedia {
  background: #fff4dc;
  color: #8a5a00;
  border: 1px solid #ffe2a6;
}

.btn-card-expedia:hover {
  background: #ffeec2;
  transform: translateY(-2px);
}

/* =========================
   SUCHBEREICH
========================= */
.search-section {
  padding: 12px 0 8px;
}

.search-box {
  background: linear-gradient(135deg, #ffffff, #fef8ff);
  padding: 18px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  box-shadow: 0 14px 34px rgba(25, 40, 79, 0.08);
}

.search-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

.search-box input,
.search-box select {
  width: 100%;
  padding: 15px 16px;
  border: 2px solid #edf1f7;
  border-radius: 14px;
  font-size: 15px;
  background: white;
}

.search-box input:focus,
.search-box select:focus {
  outline: none;
  border-color: #ff7f50;
}

/* =========================
   SEKTION
========================= */
.section {
  padding: 38px 0 10px;
}

.section-top {
  margin-bottom: 20px;
}

.section-top h2 {
  margin: 0 0 10px;
  font-size: 42px;
  color: #16233d;
}

.section-text {
  margin: 0;
  color: #5d6b82;
  font-size: 18px;
}

.loading-box,
.no-results,
.error-box {
  background: white;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(25, 40, 79, 0.08);
  margin-bottom: 20px;
}

.error-box {
  color: #b91c1c;
}

/* =========================
   KARTEN
========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(25, 40, 79, 0.09);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card-image {
  position: relative;
}

.card-image img {
  height: 235px;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin: 0 0 8px;
  font-size: 26px;
  color: #16233d;
}

.card-location {
  margin: 0 0 10px;
  color: #ff5b8a;
  font-weight: 700;
}

.card-description {
  color: #5d6b82;
  font-size: 15px;
  margin-bottom: 14px;
  min-height: 68px;
}

.info-list {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.info-item {
  font-size: 14px;
  color: #334155;
  background: #f8fafc;
  padding: 10px 12px;
  border-radius: 12px;
}

.card-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card-buttons .btn {
  flex: 1 1 calc(50% - 10px);
  min-width: 160px;
}

/* =========================
   TEXTSEITEN / HINWEISE
========================= */
.page-content {
  padding: 40px 0 10px;
}

.text-page-box {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(25, 40, 79, 0.08);
  line-height: 1.8;
}

.text-page-box h1 {
  margin-top: 0;
  color: #16233d;
}

.text-page-box p {
  color: #445268;
}

.disabled-booking-link {
  opacity: 0.72;
  cursor: default;
  pointer-events: none;
}

.image-note {
  margin: 0 0 12px;
  font-size: 13px;
  color: #7b8794;
  font-weight: 600;
}

.image-note-details {
  margin-top: 8px;
  margin-bottom: 18px;
}

.price-note {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff8e8;
  color: #7a5a00;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(25, 40, 79, 0.06);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  margin-top: 56px;
  padding: 42px 0;
  text-align: center;
  background: linear-gradient(135deg, #16233d, #22355a);
  color: white;
}

.footer-container h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 28px;
}

.footer-container p {
  margin: 8px 0;
}

.footer-note {
  color: #cbd5e1;
  margin-top: 12px;
}

.footer-note a {
  color: white;
  font-weight: 700;
}

.footer-note a:hover {
  color: #ff8fb0;
}

.footer-legal {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 600;
}

.footer-legal a {
  color: white;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #ff8fb0;
}

.footer-dot {
  color: #ff8fb0;
  font-size: 18px;
  line-height: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .hero-center-box {
    padding: 38px 22px;
  }

  .hero-center-box h1 {
    font-size: 40px;
  }

  .hero-subtext {
    font-size: 17px;
  }

  .section-top h2 {
    font-size: 34px;
  }
}

@media (max-width: 560px) {
  .logo {
    font-size: 22px;
  }

  .hero-center-box h1 {
    font-size: 32px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .category-chip {
    font-size: 14px;
    padding: 11px 14px;
  }

  .nav {
    gap: 12px;
  }

  .footer-legal {
    gap: 8px;
  }

  .card-buttons .btn {
    flex: 1 1 100%;
  }
}