@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

:root {
  --nav-offset: 55px;
}
/* Basis */
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: #f5eee2;
  position: relative;
}

/* Utilities */
.hr-soft {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.15),
    transparent
  );
  transform: translateZ(0);
}

.hr-dark {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.15),
    transparent
  );
  transform: translateZ(0);
}

.container {
  max-width: auto;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
}

.accent {
  color: rgba(229, 154, 63, 1);
  font-weight: 900;
}

.bg-accent {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;

  background: radial-gradient(
      at 20% 20%,
      rgba(229, 154, 63, 0.75),
      transparent 60%
    ),
    radial-gradient(at 80% 75%, rgba(120, 78, 28, 0.55), transparent 70%),
    /* NEW WARM BROWN */
      radial-gradient(at 60% 10%, rgba(255, 255, 255, 0.45), transparent 70%),
    radial-gradient(at 10% 90%, rgba(0, 0, 0, 0.25), transparent 75%);

  mix-blend-mode: normal;
}

/* Header */
.site-header {
  overflow: hidden;
  height: 80vh;
  width: 100%;
  position: relative;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.1) 35%,
    rgba(0, 0, 0, 0.5) 65%,
    rgba(0, 0, 0, 0) 100%
  );

  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 70vh;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
}

nav {
  width: 100%;
  margin: auto;
  position: fixed;
  top: 0;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(
    to bottom,
    rgba(253, 251, 247, 0.2) 0%,
    rgba(244, 234, 215, 0.2) 100%
  );
  -webkit-backdrop-filter: blur(6px) saturate(100%);
  backdrop-filter: blur(6px) saturate(100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 10;
}
.logo-link {
  margin: 0;
  padding: 0;
}
nav {
  transition: padding 200ms ease, background 200ms ease;
}
nav.is-scrolled {
  padding: 0 1rem;
  background: rgba(10, 12, 14, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.kontakt-cta {
  background: rgba(229, 154, 63, 0.75);
  border: 1px solid rgba(229, 154, 63, 0.9);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(229, 154, 63, 0.45), 0 6px 18px rgba(0, 0, 0, 0.08);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  padding: 5px 10px;
  border-radius: 35px;
}

.logo {
  height: 48px;
  width: auto;
  margin: 0;
  padding: 0;
  border-radius: 15px;
  filter: brightness(1.15) contrast(1.1);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.nav-header {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1rem, 4vw, 2rem);
  padding: 0 2rem;
}

.nav-header li {
  list-style-type: none;
}

.nav-header a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 600;
  opacity: 0.9;
  border-radius: 0.5rem;
  position: relative;
}

.nav-header a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: rgba(229, 154, 63, 0.75);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.nav-header a:hover {
  opacity: 1;
}

.nav-header a:hover::after {
  transform: scaleX(1);
}

#open-sidebar-button {
  position: fixed;
  top: 14px;
  right: 14px;
  display: none;
  width: 28px;
  height: 28px;
  background: transparent;
  cursor: pointer;
  z-index: 1000;
  padding: 0;
}

#close-sidebar-button {
  display: none;
  width: 28px;
  height: 28px;
  background: #fff3e2;
  border: 1px solid rgba(47, 62, 52, 0.12);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}

#overlay {
  position: fixed;
  inset: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 80px) 20px 40px;
  display: grid;
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
  min-height: 85vh;
  position: relative;
  z-index: 2;
}

.hero-copy {
  margin-top: -140px;
}

.hero-copy h1 {
  margin: 0;
  line-height: 1.05;
  color: #fffaf2;
  font-size: clamp(32px, 4.6vw, 64px);
  font-weight: 800;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);

  display: inline-block;
  padding-bottom: 0.2em;
}

.hero-copy p {
  margin: 0 0 1.75rem;
  color: #fffaf2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 500;
}

.hero-copy span {
  font-weight: 600;
}

.hero-buttons,
.hero-buttons a {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 1;
  font-size: clamp(16px, 2vw, 20px);
  margin-top: 1rem;
  padding-left: 0;
}

a.kontakt-hero,
a.galerie-hero {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: clamp(15px, 1.8vw, 20px);

  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  backdrop-filter: blur(10px) saturate(130%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

a.kontakt-hero:hover {
  background: rgba(229, 154, 63, 0.9);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 25px rgba(229, 154, 63, 0.55), 0 8px 28px rgba(0, 0, 0, 0.2);
}

a.kontakt-hero:focus-visible,
a.galerie-hero:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

a.kontakt-hero {
  background: rgba(229, 154, 63, 0.75);
  border: 1px solid rgba(229, 154, 63, 0.9);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(229, 154, 63, 0.45), 0 6px 18px rgba(0, 0, 0, 0.08);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

a.galerie-hero {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

a.galerie-hero:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

/* Preise */
.preise {
  position: relative;
  padding: 1rem 1.25rem 5rem;

  border-radius: 2rem;

  overflow: hidden;
  z-index: 0;
}

.floating-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.2;
}

.floating-dots::before,
.floating-dots::after {
  content: "";
  position: absolute;
  inset: -50%;
  background-image: radial-gradient(
      circle,
      rgba(229, 154, 63, 0.45) 2px,
      transparent 3px
    ),
    radial-gradient(circle, rgba(47, 62, 52, 0.25) 1.5px, transparent 3px);
  background-size: 120px 120px, 160px 160px;
  animation: dotsFloat 40s linear infinite;
}

.floating-dots::after {
  animation-duration: 60s;
  opacity: 0.6;
}

.preise > *:not(.floating-dots) {
  position: relative;
  z-index: 2;
}

.preise-animate {
  opacity: 0;
  transition: all 0.6s ease-out;
  --reveal-y: 40px;
  --lift-y: 0px;
  transform: translateY(var(--reveal-y)) translateY(var(--lift-y));
}

.preise-animate.show1 {
  opacity: 1;
  --reveal-y: 0px;
}

.preise-header {
  max-width: 1100px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.preise-header .galerie {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  color: #2f3e34;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
  background: none;
  border: 1px solid rgba(233, 223, 201, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #f4ead7;
}

.preise-header h2 {
  margin: 0 0 0.5rem;
  color: #2f3e34;
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  font-weight: 800;
}

.preise-header h3 {
  margin: 0;
  color: #2f3e34;
  opacity: 0.85;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
}

.preise-grid {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(16px, 2.4vw, 28px);
  grid-template-columns: repeat(3, 1fr);
}

.preise-card {
  border: 1px solid rgba(233, 223, 201, 0.85);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
  background: rgba(248, 245, 240, 0.5);
}

.preise-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-color: rgba(229, 154, 63, 0.45);
}

.preise-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2f3e34;
}

.tagespreise-rows {
  display: grid;
  margin-bottom: 0.75rem;
}

.tagespreise-rows .row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  background: #f8f5f0;
  border: 1px solid rgba(241, 226, 204, 0.85);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
}

.tagespreise-rows .label {
  margin: 0;
  color: #2f3e34;
  font-weight: 200;
  font-size: 0.8rem;
}

.tagespreise-rows .price {
  margin: 0;
  color: #2f3e34;
  font-weight: 200;
}

.preise-card .hint {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: #2f3e34;
  opacity: 0.8;
  font-weight: 300;
}

.checklist {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: #2f3e34;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;

  color: #e59a3f;
  font-size: 1rem;
  line-height: 1;
}

.checklist-extra {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.checklist-extra li {
  position: relative;
  padding-left: 28px;
}

.checklist-extra-h3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.checklist-extra li::before {
  content: "X";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;

  color: #e59a3f;
  font-size: 1rem;
  line-height: 1;
}

.checklist-extra h3 {
  font-size: 1rem;
  font-weight: 500;
}

.preise-card,
.infos > div,
.kontakt-form {
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), 0 3px 10px rgba(0, 0, 0, 0.04);
  position: relative;
}

.preise-card:hover,
.infos > div:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1), 0 6px 14px rgba(0, 0, 0, 0.06);
  border-color: rgba(229, 154, 63, 0.45);
}

.card-highlight p,
.card-highlight h3,
.card-highlight .tagespreise-rows .label,
.card-highlight .tagespreise-rows .price,
.card-highlight li,
.card-highlight .hint {
  color: #fff;
}

.preise-card:hover {
  transform: translateY(-2px);
}

/* Galerie */
.galerie-section {
  overflow: visible;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0 0 40px 0;
}

.galerie-overlay {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.galerie-text {
  z-index: 2;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.25rem 1rem;
}

.galerie-text h2 {
  margin: 0rem 0 0rem;
  color: #2f3e34;
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  font-weight: 800;
}

.galerie-text h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
  color: #2f3e34;
  line-height: 1.2;
}

.galerie {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  color: #2f3e34;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(233, 223, 201, 0.85);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #f4ead7;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: min(6vh, 40px) min(4vw, 32px);
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  user-select: none;
}

.lightbox__btn {
  position: absolute;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
}

.lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.lightbox__close {
  top: 16px;
  right: 16px;
  font-size: 22px;
}

.lightbox__prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}

.lightbox__next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}

.gallery-cats {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-cat {
  border: none;

  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.3);
  background: transparent;
  position: relative;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.gallery-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0) 70%
  );
  pointer-events: none;
}

.gallery-cat:hover {
  transform: translateY(-2px);
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.3);
  border-color: rgba(229, 154, 63, 0.45);
}

.gallery-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: saturate(1.05) contrast(1.05);
}
.gallery-cat:hover img {
  transform: scale(1.02);
  filter: saturate(1.15) contrast(1.1);
}

.gallery-cat__meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  padding: 0;
  z-index: 1;
}

.gallery-cat__meta h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.gallery-cat__meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.gallery-cat__meta h3,
.gallery-cat__meta p {
  font-family: "Poppins", sans-serif;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.gallery-modal.open {
  display: block;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(245, 238, 226, 0.72);
  backdrop-filter: blur(8px);
}

.gallery-modal__panel {
  position: relative;
  width: min(1100px, calc(100% - 2rem));
  margin: 4vh auto;

  max-height: calc(100vh - 8vh);
  display: flex;
  flex-direction: column;

  border-radius: 18px;
  border: 1px solid rgba(233, 223, 201, 0.85);
  background: rgba(253, 251, 247, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);

  overflow: hidden;
}

.gallery-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(233, 223, 201, 0.7);
}

.gallery-modal__header h2 {
  margin: 0;
  font-size: 1.3rem;
  color: #2f3e34;
}

.gallery-modal__subtitle {
  margin: 4px 0 0;
  color: #2f3e34;
  opacity: 0.75;
  font-size: 0.95rem;
}
.menu-wrapper {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1rem, 4vw, 2rem);
}

.gallery-modal__close {
  appearance: none;
  border: 1px solid rgba(47, 62, 52, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: #2f3e34;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gallery-modal__close:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.gallery-modal__grid {
  display: flex;
  flex-direction: column;
  overflow: auto;
  max-height: 72vh;
}

.gallery-shot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(233, 223, 201, 0.85);
  background: #f8f5f0;
}

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

.gallery-modal__side {
  display: grid;
  gap: 10px;
  grid-template-rows: 1fr 1fr;
}

.gallery-shot--side {
  max-height: 65vh;
  aspect-ratio: 1/1;
}
.gallery-shot--hero {
  width: 100%;
  max-height: 65vh;
  aspect-ratio: 4/3;
}

.gallery-cats {
  display: grid;
  gap: 10px;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.gallery-cats .cat-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery-modal__tabs {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  padding-top: 6px;
  -webkit-overflow-scrolling: touch;
}

.gallery-modal__tabs::-webkit-scrollbar {
  height: 6px;
}

.gallery-modal__tabs::-webkit-scrollbar-thumb {
  background: rgba(47, 62, 52, 0.18);
  border-radius: 999px;
}

.gallery-tab {
  flex: 0 0 auto;
  appearance: none;
  border: 1px solid rgba(47, 62, 52, 0.14);
  background: rgba(255, 255, 255, 0.75);
  color: #2f3e34;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}

.gallery-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 154, 63, 0.45);
}

.gallery-tab.active {
  background: rgba(229, 154, 63, 0.92);
  border-color: rgba(229, 154, 63, 0.9);
  color: #fff;
}

/* Überblick */
.wichtigste {
  padding: 4rem 1.25rem 5rem;
  scroll-margin-top: 96px;
  max-width: auto;
  position: relative;
  overflow: hidden;
}

.info-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.wichtigste .ueberblick {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  color: #2f3e34;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(233, 223, 201, 0.85);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #f4ead7;
}

.wichtigste h2 {
  margin: 0rem 0 3rem;
  color: #2f3e34;
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  font-weight: 800;
}

.infos {
  display: grid;
  gap: clamp(16px, 2.4vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.infos > div {
  border: 1px solid rgba(233, 223, 201, 0.85);
  border-radius: 4px;
  padding: 0px 0px 0px 72px;
  min-height: 92px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  background: rgba(248, 245, 240, 0.5);
}

.infos h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
  color: #2f3e34;
  line-height: 1.2;
}

.infos p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.8;
  color: #2f3e34;
  line-height: 1.35;
}

.infos > div::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0.9;
}

.infos > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-color: rgba(229, 154, 63, 0.45);
}

.infos > .infos_1::before {
  background: url("../bilder/lenkrad.svg") no-repeat left/70%;
}

.infos > .infos_2::before {
  background: url("../bilder/lizenz.svg") no-repeat left/70%;
}

.infos > .infos_3::before {
  background: url("../bilder/haustier.svg") no-repeat left/70%;
}

.infos > .infos_4::before {
  background: url("../bilder/bett.svg") no-repeat left/70%;
}

.infos > .infos_5::before {
  background: url("../bilder/personenanzahl.svg") no-repeat left/70%;
}

.infos > .infos_6::before {
  background: url("../bilder/schalter.svg") no-repeat left/70%;
}

.infos > .infos_7::before {
  background: url("../bilder/maße.svg") no-repeat left/70%;
}

.infos > .infos_8::before {
  background: url("../bilder/mindestdauer.svg") no-repeat left/70%;
}

/* Ausstattung */
.outer-ausstattung {
  position: relative;
  padding: 3rem;
}

.ausstattung {
  position: relative;
  scroll-margin-top: 96px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 28px);
  padding: 4rem 2rem 2rem;
}

.ausstattung > * {
  position: relative;
  z-index: 1;
}

.ausstattung-bild {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
}

.ausstattung-bild img {
  position: absolute;
  width: 100%;
  height: 300px;
  max-width: 500px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.ausstattung-bild img.active {
  opacity: 1;
  position: relative;
}

.ausstattung-text {
  flex: 1;
  height: 300px;
  margin: auto;
  border: 1px solid rgba(233, 223, 201, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  color: #2f3e34;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  overflow: hidden;
}

.ausstattung-text h2 {
  font-size: clamp(1.4rem, 2vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 0.25rem;
}

.tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.tab {
  background: #f4ead7;
  border: none;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(233, 223, 201, 0.85);
  font-weight: 600;
  font-size: 0.9rem;
  color: #2f3e34;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab:hover {
  background: #e59a3f;
  color: #fff;
}

.tab.active {
  background: #e59a3f;
  color: #fff;
}

.tab-contents {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Kontakt */
.kontakt-section {
  position: relative;
  padding: 4rem 1.25rem 5rem;
  scroll-margin-top: 96px;
}

.kontakt-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 36px);
  position: relative;
  z-index: 1;
}

.kontakt-info .kontakt-badge {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  color: #2f3e34;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(233, 223, 201, 0.85);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #f4ead7;
}

.kontakt-info h2 {
  margin: 0 0 0.3rem;
  color: #2f3e34;
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  font-weight: 800;
}

.kontakt-info p {
  margin: 0 0 1rem;
  color: #2f3e34;
  opacity: 0.9;
}

.kontakt-stichpunkte {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.35rem;
}

.kontakt-stichpunkte li {
  position: relative;
  padding-left: 24px;
  color: #2f3e34;
}

.kontakt-stichpunkte li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: #e59a3f;
  font-weight: 900;
}

.kontakt-form {
  border: 1px solid rgba(233, 223, 201, 0.85);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: clamp(16px, 3vw, 22px);
}

.form-row {
  margin-bottom: 0.9rem;
}

.form-row.two-cols {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr 1fr;
}

.form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2f3e34;
  margin-bottom: 0.35rem;
}

.kontakt-form input[type="text"],
.kontakt-form input[type="email"],
.kontakt-form input[type="tel"],
.kontakt-form input[type="date"],
.kontakt-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid #e6e0d5;
  border-radius: 8px;
  background: #fff8ef;
  color: #2f3e34;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kontakt-form textarea {
  resize: vertical;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
  border-color: rgba(229, 154, 63, 0.8);
  box-shadow: 0 0 0 3px rgba(229, 154, 63, 0.18);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 0.65rem;
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.btn-senden {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.8rem 1.1rem;
  border-radius: 10px;
  border: none;
  font-weight: 800;
  background: #2f3e34;
  color: #fff;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-senden:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.form-hinweis {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: #2f3e34;
  opacity: 0.7;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 3rem 3rem 0;
  color: #2f3e34;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(24px, 3vw, 28px);
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  align-items: baseline;
}

.footer-col h4,
.footer-brand h3 {
  margin: 0 0 0.6rem;
  font-weight: 800;
  color: #2f3e34;
}

.footer-brand h3 {
  font-size: 1.25rem;
  border-bottom: 3px solid #e59a3f;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #2f3e34;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer-col a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-cta {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(229, 154, 63, 0.75);
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(229, 154, 63, 0.28);
}

.footer-cta:hover {
  background: rgba(229, 154, 63, 1);
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid #e6e0d5;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  gap: 10px;
}

.footer-bottom a {
  color: #2f3e34;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.footer-bottom a:hover {
  border-color: #e59a3f;
}

/* Responsive */
@media (max-width: 600px) {
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .carousel-dots {
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-btn,
  .carousel-dot {
    transition: none;
  }
}

@media (max-width: 900px) {
  .kontakt-wrapper {
    grid-template-columns: 1fr;
  }
  .form-row.two-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .lightbox__btn {
    width: 40px;
    height: 40px;
  }
  .lightbox__prev,
  .lightbox__next {
    font-size: 20px;
  }
  .site-header {
    height: 70vh;
  }
}

@media (max-width: 580px) {
  .wichtigste {
    padding: 3.25rem 1rem 4.25rem;
  }

  .infos {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .infos > div {
    padding: 14px 14px 14px 56px;
    min-height: 74px;
  }

  .infos > div::before {
    left: 10px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    opacity: 0.9;
  }

  .infos h3 {
    font-size: 0.98rem;
    line-height: 1.2;
  }
  .infos p {
    font-size: 0.9rem;
    line-height: 1.35;
  }
}

@media (max-width: 600px) {
  .galerie-section {
    height: auto;
  }
  .galerie-overlay {
    height: auto;
  }

  .galerie-text {
    padding: 1.25rem 1rem 1.5rem;
  }

  .carousel {
    height: 48vh;
    align-items: center;
  }
  .image-wrapper > img {
    max-width: 94vw;
    max-height: 48vh;
  }

  .carousel-btn {
    font-size: 1.6rem;
    padding: 0.5rem;
  }
}

@media (max-width: 425px) {
  .hero-media img {
    transform: translate(-10%, -80%);
  }
}

@media (max-width: 350px) {
  .hero-media img {
    transform: translate(-17%, -80%);
  }
}

@media (max-width: 1100px) {
  .ausstattung {
    padding: 4rem 2rem 2rem;
  }
}

@media (min-width: 701px) and (max-width: 999px) {
  .ausstattung {
    padding: 3rem 2rem 2rem;
    gap: 2rem;
  }

  .ausstattung-text {
    flex: 0 1 60%;
    min-height: 420px;
    padding: 1.25rem;
    overflow: visible;
  }
  .ausstattung-text h2 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    margin-bottom: 0.6rem;
  }
  .tab-contents {
    max-height: none;
    overflow: visible;
  }

  .ausstattung-bild {
    flex: 0 1 40%;
  }
  .ausstattung-bild img {
    height: 420px;
    max-width: 480px;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 700px) {
  #open-sidebar-button,
  #close-sidebar-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #open-sidebar-button {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff3e2;
    border: 1px solid rgba(47, 62, 52, 0.12);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    padding: 0;
  }
  #open-sidebar-button img {
    width: 24px;
    height: 24px;
  }

  #close-sidebar-button {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff3e2;
    border: 1px solid rgba(47, 62, 52, 0.14);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    padding: 0;
    z-index: 11;
  }
  #close-sidebar-button img {
    width: 22px;
    height: 22px;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(82vw, 360px);
    z-index: 10;
    transition: right 300ms ease-out;
    background: rgba(247, 244, 237, 0.96);
    border-left: 1px solid #e6e0d5;
    box-shadow: -16px 0 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    padding: 16px 8px 14px;
    overflow: auto;
  }
  nav.show {
    right: 0;
  }

  #overlay {
    opacity: 0;
    transition: opacity 220ms ease;
  }
  nav.show ~ #overlay {
    display: block;
    opacity: 1;
  }

  nav ul {
    width: 100%;
    flex-direction: column;
  }
  nav a {
    width: 100%;
  }

  #navbar .nav-header {
    padding: 56px 6px 10px;
    display: block;
  }
  #navbar .nav-header li {
    list-style: none;
    margin: 0;
  }
  #navbar .nav-header li + li {
    border-top: 1px solid rgba(230, 224, 213, 0.9);
  }
  #navbar .nav-header a {
    display: block;
    color: #2f3e34;
    font-weight: 800;
    font-size: clamp(1.1rem, 4vw, 1.35rem);
    letter-spacing: 0.1px;
    text-decoration: none;
    padding: 12px 14px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    position: relative;
  }
  #navbar .menu-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
  .kontakt-cta {
    display: none;
  }
  #navbar .nav-header a:hover {
    color: #2f3e34;
  }
  .outer-ausstattung {
    flex-direction: column-reverse;
    gap: 1rem;
    padding: 1rem 0.5rem 1.25rem;
  }
  .ausstattung {
    flex-direction: column-reverse;
    gap: 1rem;
    padding: 1rem 0rem 1.25rem;
  }
  .ausstattung-text {
    height: auto;
    padding: 1rem;
  }
  .ausstattung-bild {
    width: 100%;
  }
  .ausstattung-bild img {
    width: 100%;
    max-width: none;
    height: clamp(140px, 28vh, 200px);
    object-fit: cover;
    object-position: center;
  }
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 70vh;
  }

  .hero-copy {
    margin-top: 0;
  }
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .carousel-controls {
    gap: 0.7rem;
    flex-wrap: nowrap;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .carousel-dots {
    gap: 0.35rem;
  }

  .carousel-dot {
    width: 7px;
    height: 7px;
    border-width: 1.6px;
  }
}

@media (max-width: 360px) {
  .carousel-controls {
    gap: 0.6rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  .carousel-dots {
    gap: 0.3rem;
  }
  .carousel-dot {
    width: 6px;
    height: 6px;
    border-width: 1.4px;
  }
}

@media (max-width: 900px) {
  .preise-grid {
    grid-template-columns: 1fr;
  }
  .card-highlight {
    transform: translateY(0px);
  }
}

@media (max-width: 900px) {
  .gallery-modal__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .gallery-shot--hero {
    min-height: 280px;
    aspect-ratio: 0;
  }
}

@media (max-width: 900px) {
  .gallery-modal__side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

@media (min-width: 900px) {
  .gallery-modal__tabs {
    overflow-x: visible;
    flex-wrap: wrap; /* ✅ 2 Zeilen möglich */
    padding-bottom: 0;
  }
}

@media (max-width: 900px) {
  .gallery-modal__tabs {
    flex-wrap: wrap;
    overflow-x: auto; /* ✅ scrollen */
    scroll-snap-type: x mandatory; /* ✅ fühlt sich gut an */
    padding-bottom: 6px;
    margin-right: -6px; /* optional: bis zum Rand */
    padding-right: 6px;
  }

  .gallery-tab {
    scroll-snap-align: start;
  }
}

@media (max-width: 560px) {
  .gallery-tab {
    padding: 7px 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 380px) {
  .gallery-tab {
    padding: 6px 9px;
    font-size: 0.82rem;
  }
}

/* Sonstiges */
ul {
  padding: 0;
}

.carousel > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.slide[data-active] {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 3;
  transition: transform 550ms cubic-bezier(0.23, 1, 0.32, 1),
    opacity 350ms ease-in-out;
}

.carousel > ul > .slide[data-active] + .slide {
  opacity: 0.55;
  transform: translateX(clamp(120px, 16vw, 260px)) scale(0.88);
  z-index: 2;
  pointer-events: none;
}

.carousel > ul > .slide:has(+ .slide[data-active]) {
  opacity: 0.55;
  transform: translateX(calc(-1 * clamp(120px, 16vw, 260px))) scale(0.88);
  z-index: 2;
  pointer-events: none;
}

.image-wrapper > img {
  max-width: 70vw;
  max-height: 60vh;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  aspect-ratio: 3 /4;
}

.carousel-dot.active {
  background: #2f3e34;
  opacity: 1;
  transform: scale(1.1);
}

.price-fett {
  font-size: 2.5rem;
  margin: 0;
  padding: 0;
  font-weight: 800;
  color: #e59a3f;
}

.price {
  margin: 0;
  color: #2f3e34;
  font-weight: 6;
}

.label {
  margin: 0;
  color: #2f3e34;
  font-weight: 700;
}

.flatpickr-calendar {
  border: 1px solid #e6e0d5;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  background: #fff8ef;
  overflow: hidden;
}

.flatpickr-months,
.flatpickr-weekdays {
  background: #f7f4ed;
  color: #2f3e34;
}

.flatpickr-weekday {
  color: #2f3e34;
  opacity: 0.8;
}

.flatpickr-day {
  color: #2f3e34;
  border-radius: 8px;
}

.flatpickr-day.today {
  border-color: #e59a3f;
}

.flatpickr-day:hover {
  background: rgba(229, 154, 63, 0.12);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #e59a3f;
  border-color: #e59a3f;
  color: #fff;
}

.flatpickr-day.inRange {
  background: rgba(229, 154, 63, 0.12);
}

.flatpickr-prev-month,
.flatpickr-next-month {
  color: #2f3e34 !important;
}

.flatpickr-day.booked {
  background: rgba(220, 53, 69, 0.12);
  border-color: rgba(220, 53, 69, 0.45);
  color: #dc3545;
  cursor: not-allowed;
}

.flatpickr-day.booked:hover {
  background: rgba(220, 53, 69, 0.18);
}

.card-highlight {
  background-color: #2f3e34;
  --lift-y: -14px;
}

.card-highlight {
  transform: translateY(-14px);
}

.card-highlight:hover {
  transform: translateY(-18px); /* -14 + -4 */
}
.komfort-section {
  padding: 4rem 1.25rem 5rem;
  z-index: 1;
}
.komfort-badge {
  max-width: 1100px;
  margin: 0 auto;
}
.komfort {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  color: #2f3e34;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(233, 223, 201, 0.85);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #f4ead7;
}

.komfort-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}
.komfort-wrapper h2 {
  margin: 0;
  color: #2f3e34;
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  font-weight: 800;
}

.komfort-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.komfort-row.reverse {
  direction: rtl;
}

.komfort-row.reverse > * {
  direction: ltr;
}

.komfort-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.komfort-image:hover img {
  transform: scale(1.02);
  filter: saturate(1.15) contrast(1.1);
}

.komfort-text {
  border: 1px solid rgba(233, 223, 201, 0.85);
  border-radius: 12px;
  padding: 2rem;
  min-height: 92px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  background: rgba(248, 245, 240, 0.5);
}

.komfort-text h3 {
  margin: 0 0 1rem 28px;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  color: #2f3e34;
}

.komfort-text p {
  margin: 0;
  color: #2f3e34;
  opacity: 0.9;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .komfort-row {
    grid-template-columns: 1fr;
  }

  .komfort-row.reverse {
    direction: ltr;
  }

  .komfort-image img {
    height: 240px;
  }
}
.komfort img {
  filter: saturate(1.05) contrast(1.05);
}
.faq-section {
  padding: 4rem 1.25rem 5rem;
  scroll-margin-top: 96px;
}

.faq-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-badge {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  color: #2f3e34;
  padding: 0.45rem 0.7rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(233, 223, 201, 0.85);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #f4ead7;
}

.faq-wrapper h2 {
  margin: 0 0 0.5rem;
  color: #2f3e34;
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  font-weight: 800;
}

.faq-lead {
  margin: 0 0 1.75rem;
  color: #2f3e34;
  opacity: 0.85;
  max-width: 70ch;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(233, 223, 201, 0.85);
  border-radius: 14px;
  background: rgba(248, 245, 240, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 800;
  color: #2f3e34;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  font-weight: 900;
  opacity: 0.7;
}

.faq-item[open] summary::after {
  content: "–";
  opacity: 0.9;
}

.faq-content {
  padding: 0 16px 14px;
  color: #2f3e34;
  opacity: 0.9;
  line-height: 1.6;
}

.faq-item:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 154, 63, 0.45);
}
.bewertungen-section {
  padding: 4rem 1.25rem 5rem;
}

.bewertungen-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.bewertungen-badge {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  color: #2f3e34;
  padding: 0.45rem 0.7rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(233, 223, 201, 0.85);
  border-radius: 999px;
  background: #f4ead7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bewertungen-wrapper h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  font-weight: 800;
  color: #2f3e34;
}

.bewertungen-lead {
  margin: 0 0 2rem;
  color: #2f3e34;
  opacity: 0.85;
  max-width: 70ch;
}

.bewertungen-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.bewertung-card {
  background: rgba(248, 245, 240, 0.6);
  border: 1px solid rgba(233, 223, 201, 0.85);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bewertung-stars {
  color: #e59a3f;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.bewertung-text {
  margin: 0 0 0.75rem;
  color: #2f3e34;
  line-height: 1.6;
}

.bewertung-name {
  font-weight: 700;
  color: #2f3e34;
  opacity: 0.85;
}
@media (max-width: 550px) {
  .site-footer {
    padding: 2rem 1rem 0;
  }
}
@media (max-width: 360px) {
  .g-recaptcha {
    transform: scale(0.86);
  }
}

.auto-show {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.auto-show.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.imageReveal {
  opacity: 0;
  transform: translateY(4rem) scale(0.95);
  filter: saturate(0) contrast(4) brightness(0.1) blur(5px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.imageReveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: saturate(1) contrast(1) brightness(1) blur(0);
}

.fade-up {
  animation: fade-up both;
  animation-timeline: view();
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up:nth-child(1) {
  animation-range: entry 10% cover 40%;
}
.fade-up:nth-child(2) {
  animation-range: entry 10% cover 40%;
}
.fade-up:nth-child(3) {
  animation-range: entry 30% cover 60%;
}
.fade-up:nth-child(4) {
  animation-range: entry 30% cover 60%;
}
.fade-up:nth-child(5) {
  animation-range: entry 40% cover 70%;
}
.fade-up:nth-child(6) {
  animation-range: entry 40% cover 70%;
}
.fade-up:nth-child(7) {
  animation-range: entry 50% cover 80%;
}
.fade-up:nth-child(8) {
  animation-range: entry 50% cover 80%;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.5);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
#preise {
  scroll-margin-top: calc(55px + 1rem);
}
#galerie {
  scroll-margin-top: calc(55px + 1rem);
}
#ueberblick {
  scroll-margin-top: 55px;
}
#ausstattung {
  scroll-margin-top: 55px;
}
#faq {
  scroll-margin-top: 55px;
}
@media (max-width: 900px) {
  .card-highlight {
    transform: translateY(0);
  }

  .card-highlight:hover {
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .gallery-cats {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

  .gallery-cat .cat-main {
    grid-column: 1 / -1; /* über beide Spalten */
    grid-row: auto;
    aspect-ratio: 16 / 9; /* Main behält Form */
  }

  .gallery-cat .tile {
    aspect-ratio: 1 / 1; /* Kacheln quadratisch */
  }
}

/* Mobile: 1 Spalte, alles untereinander */
@media (max-width: 600px) {
  .gallery-cats {
    grid-template-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    aspect-ratio: 3 / 4;
  }

  .gallery-cat .cat-main {
    grid-column: auto;
    aspect-ratio: 16 / 9;
  }

  .gallery-cat .tile {
    aspect-ratio: 16 / 9; /* oder 1/1 wenn du lieber quadratisch willst */
  }
}
@media (max-width: 500px) {
  .gallery-cat__meta p,
  .gallery-cat__meta h3 {
    font-size: 0.8rem;
  }
}
@media (max-width: 450px) {
  .gallery-cat__meta p,
  .gallery-cat__meta h3 {
    font-size: 0.6rem;
  }
}
.gallery-show-all {
  position: absolute;
  justify-self: end;

  bottom: 24px;
  z-index: 5;

  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;

  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(47, 62, 52, 0.2);
  color: #2f3e34;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gallery-show-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.gallery-section {
  padding: 10px 10px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.gallery-section__title {
  margin: 6px 0 2px;
  font-size: 18px;
}

.gallery-section__subtitle {
  margin: 0 0 10px;
  opacity: 0.75;
}

.gallery-section__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .gallery-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-thumb {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
