/* Basis – helle Variante */

:root {
  --blue: #2563eb;
  --blue-soft: #e0ecff;
  --green: #16a34a;
  --bg: #f3f4f6;
  --bg-card: #ffffff;
  --border-soft: #e5e7eb;
  --text: #111827;
  --muted: #6b7280;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.10);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, #e5edff 0, #f9fafb 55%, #edf2ff 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
}

/* Header / Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  height: 34px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  color: var(--muted);
  border: 1px solid transparent;
  transition: all 0.18s ease-out;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
  border-color: rgba(129, 140, 248, 0.45);
  background: rgba(219, 234, 254, 0.8);
}

/* Burger */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: #4b5563;
  border-radius: 999px;
}

/* Hero */

.hero {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: stretch;
}

.hero-card,
.hero-side {
  height: 100%;
}

.hero-card {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(22, 163, 74, 0.10), transparent 60%),
    #ffffff;
  border-radius: 24px;
  padding: 1.8rem 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.hero-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.hero-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero-title span {
  background: linear-gradient(120deg, #2563eb, #16a34a);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.tag {
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  font-size: 0.78rem;
  color: var(--muted);
  background: #f9fafb;
}

.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  background: #ecfdf3;
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #166534;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.25);
}

.hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.86rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--muted);
}

.hero-list li::before {
  content: "✔";
  color: #16a34a;
  margin-right: 0.4rem;
  font-size: 0.78rem;
}

/* Bild im Hero */

.hero-photo {
  margin-top: 0.9rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  width: 100%;
  max-width: none;
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Sections / Cards / Grid */

.section {
  margin-top: 2.4rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.2rem;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background:
    radial-gradient(circle at top, rgba(219, 234, 254, 0.45), transparent 55%),
    #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.1rem 1.2rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.card-title-row h2,
.card-title-row h3 {
  margin: 0;
  font-size: 1rem;
}

.card-pill {
  font-size: 0.7rem;
  border-radius: var(--radius-pill);
  padding: 0.18rem 0.55rem;
  background: #f3f4ff;
  border: 1px solid rgba(129, 140, 248, 0.6);
  color: #4f46e5;
}

.card p {
  margin: 0.5rem 0 0.7rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: var(--muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 0.86rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.16s ease-out;
}

.btn span {
  font-size: 1.05rem;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

/* Footer – leicht dunkler Kontrast */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(to top, #0f172a, #111827);
  color: #e5e7eb;
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.25rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  font-size: 0.82rem;
}

.footer-brand {
  margin: 0 0 0.15rem;
  font-weight: 500;
}

.footer-small {
  margin: 0;
  color: #9ca3af;
}

.footer-right {
  display: flex;
  gap: 0.7rem;
}

.footer-right a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* Einzel-Seiten */

.page-intro {
  margin-top: 1.5rem;
  max-width: 620px;
  font-size: 0.92rem;
  color: var(--muted);
}

/* FAQ */

.faq-card details {
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
  padding: 0.6rem 0;
}

.faq-card details:last-of-type {
  border-bottom: none;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "⌄";
  font-size: 0.85rem;
  opacity: 0.6;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
}

.faq-card details[open] summary::after {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-card p {
  margin-top: 0.45rem;
  font-size: 0.86rem;
  color: var(--muted);
}

/* Modal / Booking */

.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.45);
  z-index: 200;
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
  max-width: 1120px;
  width: min(1120px, 100% - 2rem);
  height: 80vh;
  max-height: 90vh;
  padding: 1rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
}

.modal-title {
  margin: 0.25rem 0 0.6rem;
  font-size: 1rem;
}

.modal-body {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
}

.modal-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  align-self: flex-end;
  border: none;
  background: transparent;
  color: #4b5563;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
}

.modal-close:hover {
  background: rgba(148, 163, 184, 0.15);
}

/* Galerie Badumbau */

.gallery-item {
  padding: 0;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  padding: 0.8rem 0.9rem 1rem;
  font-size: 0.86rem;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 800px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    order: -1;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    inset: 52px 1.25rem auto;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.6);
    border-radius: 14px;
    padding: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.16s ease-out;
  }

  .nav-links.nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-links a {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .modal {
    width: 100%;
    max-width: none;
    height: 100vh;
    max-height: none;
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  .container {
    padding-inline: 1rem;
  }
}
