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

:root {
  --teal:      #0d7b7b;
  --teal-dark: #085f5f;
  --teal-light:#1a9a9a;
  --sky:       #4db6d6;
  --sky-light: #a8dff0;
  --sand:      #fdf6e9;
  --sand-dark: #f0e4c4;
  --coral:     #e8644a;
  --coral-dark:#c94c34;
  --green:     #28a745;
  --white:     #ffffff;
  --text:      #1c3535;
  --text-light:#4a6a6a;
  --border:    rgba(13,123,123,0.15);
  --radius:    12px;
  --shadow:    0 4px 24px rgba(13,123,123,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Miranda Sans', sans-serif;
  background: var(--sand);
  color: var(--text);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Miranda Sans', sans-serif; line-height: 1.2; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--teal-dark); margin-bottom: .4em; }
h3 { font-size: 1.25rem; }
.section-sub { color: var(--text-light); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 540px; margin-left: auto; margin-right: auto; }
section { padding: 80px 20px; }
.container { max-width: 1120px; margin: 0 auto; }
.text-center { text-align: center; }

/* ── FADE-IN ANIMATION ── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ════════════════════════════
   NAV
════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 154px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  box-shadow: 0 2px 16px rgba(13,123,123,.08);
  transition: background .3s;
}

/* ── Center logo ── */
.nav-logo {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-decoration: none;
  justify-self: center;
}
.nav-brand-name {
  font-family: 'Miranda Sans', sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  color: var(--teal-dark); white-space: nowrap;
  margin-bottom: 8px;
}
.nav-logo-img {
  height: 120px; width: auto; flex-shrink: 0;
  margin-top: 6px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}

/* Circular blend – fades the square logo cleanly into the nav background */
.logo-blend {
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle, #000 42%, rgba(0,0,0,.6) 58%, transparent 72%);
  mask-image:         radial-gradient(circle, #000 42%, rgba(0,0,0,.6) 58%, transparent 72%);
}

/* ── Left / Right link lists ── */
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links-left  { justify-content: flex-end; }
.nav-links-right { justify-content: flex-start; }
.nav-links a {
  text-decoration: none; color: var(--text-light);
  font-size: .9rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--coral); color: #fff !important;
  padding: 8px 20px; border-radius: 24px;
  white-space: nowrap;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--coral-dark) !important; color: #fff !important; }

/* ── Nav-right wrapper (right links + hamburger) ── */
.nav-right { display: flex; align-items: center; gap: 16px; justify-content: flex-start; }

/* ── Hamburger ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--teal-dark); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu dropdown ── */
.mobile-menu {
  display: none;
  position: fixed; top: 154px; left: 0; right: 0;
  background: #fff;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  z-index: 998;
}
.mobile-menu.open { max-height: 500px; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu ul li { width: 100%; }
.mobile-menu ul a { display: block; padding: 15px 28px; border-bottom: 1px solid var(--border); color: var(--text-light); font-size: .9rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; text-decoration: none; }
.mobile-menu ul a:hover { color: var(--teal); }
.mobile-menu .nav-cta { border-radius: 0; background: var(--teal) !important; color: #fff !important; }

@media(max-width:1024px){
  nav {
    grid-template-columns: 1fr auto;
    height: 110px;
  }
  .nav-brand-name { display: none; }
  .nav-links-left  { display: none; }
  .nav-links-right { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: none; top: 110px; }
  .mobile-menu.open { display: block; max-height: 500px; }
  .nav-logo-img { height: 96px; }
}



/* ════════════════════════════
   HERO
════════════════════════════ */
#start {
  min-height: 100vh;
  background:
    linear-gradient(180deg,
      #a8d8f0 0%,
      #6ec6e8 18%,
      #4db6d6 32%,
      #2a9ab5 44%,
      #1d8fa6 52%,
      #e8d5a3 62%,
      #f2e4b8 72%,
      #fdf6e9 85%,
      #ffffff 100%
    );
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 174px 24px 80px;
  position: relative;
}

/* hero background image — hidden until src is set */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
  z-index: 0;
}
.hero-img[src]:not([src=""]) {
  display: block;
}

/* gradient overlay for readability when image is present */
.hero-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(0, 0, 0, 0.28) 40%,
    rgba(0, 0, 0, 0.38) 65%,
    rgba(8, 60, 60, 0.52) 100%
  );
  z-index: 1;
}

/* when image is present: show overlay, hide CSS gradient sky, lift content above overlay */
#start:has(.hero-img[src]:not([src=""])) {
  background: var(--sand);
}
#start:has(.hero-img[src]:not([src=""])) .hero-overlay {
  display: block;
}
#start:has(.hero-img[src]:not([src=""])) .hero-badge,
#start:has(.hero-img[src]:not([src=""])) .hero-title,
#start:has(.hero-img[src]:not([src=""])) .hero-sub,
#start:has(.hero-img[src]:not([src=""])) .hero-btns {
  position: relative;
  z-index: 2;
}
#start:has(.hero-img[src]:not([src=""])) .hero-wave {
  z-index: 2;
}
#start:has(.hero-img[src]:not([src=""])) .hero-badge {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
#start:has(.hero-img[src]:not([src=""])) .hero-title {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
#start:has(.hero-img[src]:not([src=""])) .hero-title em {
  color: #ffb89a;
}
#start:has(.hero-img[src]:not([src=""])) .hero-sub {
  color: #fff;
  opacity: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* decorative sun */
#start::before {
  content: '';
  position: absolute; top: 60px; right: 10%;
  width: 130px; height: 130px;
  background: radial-gradient(circle, #ffe066 30%, #ffb347 70%, transparent 100%);
  border-radius: 50%;
  opacity: .7;
  animation: sunPulse 4s ease-in-out infinite;
}
@keyframes sunPulse {
  0%,100% { transform: scale(1); opacity:.7; }
  50%      { transform: scale(1.06); opacity:.85; }
}

.hero-badge,
.hero-title,
.hero-sub,
.hero-btns,
.hero-wave {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.7);
  color: var(--teal-dark);
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 20px; margin-bottom: 1.4rem;
  animation: fadeDown .7s ease both;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700; color: var(--teal-dark);
  letter-spacing: -.01em;
  text-shadow: 0 2px 20px rgba(255,255,255,.6);
  animation: fadeDown .75s .1s ease both;
  line-height: 1.05;
}
.hero-title em { color: var(--coral); font-style: normal; }
.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--teal-dark); opacity: .85;
  margin: 1rem 0 2.2rem;
  font-weight: 300; letter-spacing: .02em;
  animation: fadeDown .75s .2s ease both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeDown .75s .3s ease both;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 32px;
  font-size: .95rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--coral); color: #fff;
  box-shadow: 0 6px 24px rgba(232,100,74,.4);
}
.btn-primary:hover { background: var(--coral-dark); box-shadow: 0 8px 32px rgba(232,100,74,.5); }
.btn-outline {
  background: rgba(255,255,255,.55); color: var(--teal-dark);
  border: 2px solid rgba(13,123,123,.35);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,.8); }

@keyframes fadeDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:none; }
}

/* wave divider */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; margin-bottom: -2px; }
.wave-divider svg { display: block; width: 100%; }

/* hero wave */
.hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ════════════════════════════
   VORTEILE
════════════════════════════ */
#vorteile { background: var(--white); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.cards-grid .card { grid-column: span 1; }
@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
}
.card {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--sky));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.7rem;
}
.card h3 { color: var(--teal-dark); margin-bottom: .5rem; }
.card p { color: var(--text-light); font-size: .93rem; line-height: 1.6; }

/* ════════════════════════════
   PREISE
════════════════════════════ */
#preise {
  background: linear-gradient(160deg, #e8f6f6 0%, var(--sand) 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px var(--teal), var(--shadow);
}
.price-card.featured::before {
  content: 'Beliebt';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 12px;
}
.price-label { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.price-amount { font-family: 'Miranda Sans', sans-serif; font-size: 2.4rem; color: var(--teal-dark); font-weight: 700; line-height: 1; }
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.price-desc { color: var(--text-light); font-size: .88rem; margin-top: 8px; line-height: 1.5; }
.price-surcharges {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.price-surcharges h3 { color: var(--teal-dark); margin-bottom: 14px; font-size: 1.1rem; }
.surcharge-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.surcharge-row:last-child { border-bottom: none; }
.surcharge-row .price { font-weight: 700; color: var(--teal); }

/* ════════════════════════════
   BUCHUNG
════════════════════════════ */
#buchung { background: var(--teal-dark); }
#buchung h2 { color: var(--white); }
#buchung .section-sub { color: rgba(255,255,255,.7); }

.booking-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 40px;
  max-width: 720px; margin: 0 auto;
  backdrop-filter: blur(6px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.form-group input,
.form-group select {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-group input::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus,
.form-group select:focus { border-color: var(--sky); background: rgba(255,255,255,.15); }
.form-group select option { background: var(--teal-dark); color: #fff; }
.form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }
.booking-form .btn-primary { width: 100%; justify-content: center; margin-top: 8px; font-size: 1rem; }

@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }

/* ════════════════════════════
   GALERIE
════════════════════════════ */
#galerie { background: var(--white); overflow: hidden; }
.gallery-track-wrap { overflow: hidden; position: relative; }
.gallery-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: galleryScroll 28s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }
@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gallery-item {
  width: 300px; height: 220px;
  border-radius: 14px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  cursor: pointer;
}
.gallery-item:hover .gi-bg { transform: scale(1.05); transition: transform .3s ease; }
.gallery-item--logo { background: #fff; }
.gallery-item--logo .gi-bg { object-fit: contain; padding: 20px; }

/* ── Lightbox ── */
#lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: min(90vw, 1000px);
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 12px 60px rgba(0,0,0,.6);
  object-fit: contain;
  animation: lbFadeIn .25s ease;
}
@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(.93); }
  to   { opacity: 1; transform: scale(1); }
}
#lightbox-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,.15); border: none;
  color: #fff; font-size: 1.8rem; line-height: 1;
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
#lightbox-close:hover { background: rgba(255,255,255,.3); }
.gallery-item .gi-bg {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  object-fit: cover;
  object-position: center;
}
.gallery-item .gi-label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(0,0,0,.45); backdrop-filter: blur(4px);
  color: #fff; font-size: .78rem; font-weight: 700;
  padding: 5px 12px; border-radius: 20px; letter-spacing: .05em;
}


/* ════════════════════════════
   LAGE
════════════════════════════ */
#lage { background: linear-gradient(160deg, var(--sand) 0%, #e8f6f6 100%); }

/* Quick-Info-Karten */
.lage-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.lage-info-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(13,123,123,.08);
  border: 1px solid rgba(13,123,123,.1);
}
.lage-info-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.lage-info-text { display: flex; flex-direction: column; gap: 2px; }
.lage-info-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); }
.lage-info-value { font-size: .93rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.lage-info-sub { font-size: .82rem; color: var(--text-light); }

/* Haupt-Grid */
.lage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

/* Karte */
.map-iframe {
  width: 100%;
  height: 360px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(13,123,123,.15);
  display: block;
}

/* Parkplatz-Button */
.btn-parking {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 24px;
  background: var(--teal); color: #fff;
  font-size: .85rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-parking:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* Wegbeschreibung */
.lage-route-box {
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 2px 12px rgba(13,123,123,.08);
  border: 1px solid rgba(13,123,123,.1);
  margin-bottom: 20px;
}
.lage-route-title {
  font-size: 1rem; font-weight: 700; color: var(--teal-dark);
  margin: 0 0 18px;
  display: flex; align-items: center; gap: 8px;
}
.lage-route-title::before {
  content: '';
  display: inline-block; width: 4px; height: 18px;
  background: var(--teal); border-radius: 2px;
}
.lage-route-steps { display: flex; flex-direction: column; }
.lage-route-step {
  display: flex; align-items: flex-start; gap: 12px;
}
.step-dot {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.step-dot--car   { background: var(--teal-dark); }
.step-dot--walk  { background: var(--teal); }
.step-dot--beach { background: var(--coral); }
.step-content { display: flex; flex-direction: column; gap: 2px; padding-top: 4px; }
.step-content strong { font-size: .92rem; color: var(--text-dark); }
.step-content span   { font-size: .82rem; color: var(--text-light); }
.step-connector {
  width: 2px; height: 24px;
  background: linear-gradient(to bottom, var(--teal-dark), var(--teal));
  margin-left: 15px; border-radius: 1px;
  opacity: .3;
}

/* Nachbarschaft Tags */
.lage-nearby {
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 2px 12px rgba(13,123,123,.08);
  border: 1px solid rgba(13,123,123,.1);
}
.lage-nearby-title {
  font-size: 1rem; font-weight: 700; color: var(--teal-dark);
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 8px;
}
.lage-nearby-title::before {
  content: '';
  display: inline-block; width: 4px; height: 18px;
  background: var(--coral); border-radius: 2px;
}
.nearby-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.nearby-tag {
  font-size: .8rem; font-weight: 600;
  background: linear-gradient(135deg, #f0fafa, #e4f4f4);
  color: var(--teal-dark);
  border: 1px solid rgba(13,123,123,.12);
  border-radius: 20px;
  padding: 5px 12px;
  white-space: nowrap;
}

@media(max-width:900px){ .lage-info-cards { grid-template-columns: 1fr; } }
@media(max-width:768px){ .lage-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════
   VERKAUF
════════════════════════════ */
#verkauf { background: linear-gradient(160deg, var(--white) 0%, var(--sand) 55%, var(--sand-dark) 100%); }
.verkauf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.verkauf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.verkauf-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.verkauf-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--sky));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.7rem;
}
.verkauf-card h3 { color: var(--teal-dark); margin-bottom: .6rem; font-size: 1.1rem; }
.verkauf-card p { color: var(--text-light); font-size: .9rem; line-height: 1.65; }

/* ════════════════════════════
   KOOPERATIONEN
════════════════════════════ */
#kooperationen { padding: 0; }
.koop-parallax {
  background-image: url("https://cdn1.site-media.eu/images/1920%2C5615x3158%2B0%2B771/7232338/person-holding-on-door-lever-inside-room.jpeg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.koop-overlay {
  background: rgba(0,0,0,0.52);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 140px 24px;
  gap: 60px;
}
.koop-hotel { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.koop-quote {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  max-width: 720px;
  line-height: 1.7;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.koop-stars { display: flex; gap: 8px; }
.koop-stars svg {
  width: 36px; height: 36px;
  fill: #f5a623;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}
.koop-btn {
  display: inline-block;
  background: #e07b30;
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.koop-btn:hover { background: #c96a20; text-decoration: none; transform: translateY(-2px); }
.koop-divider {
  width: 60%;
  max-width: 400px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}
.koop-groemitz { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.koop-kayakomat { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.koop-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  letter-spacing: .04em;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.koop-logo-link { display: inline-block; transition: opacity .2s, transform .15s; }
.koop-logo-link:hover { opacity: .85; transform: translateY(-2px); }
.koop-logo { max-width: 340px; height: auto; display: block; }

/* ════════════════════════════
   KONTAKT
════════════════════════════ */
#kontakt {
  background: linear-gradient(160deg, var(--sand) 0%, var(--sand-dark) 55%, #ead5b0 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.ktyr-inner { display: flex; align-items: center; gap: 40px; }

/* side panels */
.ktyr-side { flex: 1; min-width: 0; text-align: center; padding: 24px 16px; }
.ktyr-side h3 { color: var(--teal-dark); font-size: 1.25rem; margin-bottom: .9rem; }
.ktyr-side p { color: var(--text-light); font-size: .9rem; line-height: 1.8; margin-bottom: .4rem; }
.ktyr-side a { color: var(--teal); text-decoration: none; }
.ktyr-side a:hover { color: var(--teal-dark); text-decoration: underline; }
.ktyr-links { margin-top: 1.1rem !important; font-size: .8rem !important; opacity: .7; }
.ktyr-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--sky));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.ktyr-icon svg { width: 34px; height: 34px; fill: #fff; }

/* center form card */
.ktyr-form-box {
  flex: 0 0 540px;
  background: var(--white);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 4px 28px rgba(13,123,123,.12);
  text-align: center;
}
.ktyr-form-box h2 { text-align: center; margin-bottom: .5rem; }
.ktyr-logo { display: flex; justify-content: center; margin-bottom: 1.4rem; }
.ktyr-logo-img { max-width: 260px; height: auto; }
.ktyr-form-box .cf-group { text-align: left; }
.ktyr-form-box .cf-check { text-align: left; }
.ktyr-form-box .btn-primary { width: 100%; justify-content: center; }

/* form field styles */
.cf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cf-group label { font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-light); }
.cf-group input,
.cf-group textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'Lato', sans-serif;
  font-size: .93rem;
  color: var(--text);
  outline: none;
  background: var(--sand);
  transition: border-color .2s;
}
.cf-group input:focus,
.cf-group textarea:focus { border-color: var(--teal); background: var(--white); }
.cf-group textarea { resize: vertical; min-height: 110px; }
.cf-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.cf-check input { margin-top: 3px; accent-color: var(--teal); }
.cf-check label { font-size: .82rem; color: var(--text-light); line-height: 1.5; }
.cf-check a { color: var(--teal); }

/* scroll-triggered slide animations */
.slide-left  { opacity: 0; transform: translateX(-70px); transition: opacity .8s ease, transform .8s ease; }
.slide-right { opacity: 0; transform: translateX(70px);  transition: opacity .8s ease, transform .8s ease; }
.slide-left.visible, .slide-right.visible { opacity: 1; transform: translateX(0); }

@media(max-width:900px) {
  #kontakt { display: block; }
  .ktyr-inner { flex-direction: column; }
  .ktyr-form-box { flex: 0 0 auto; width: 100%; max-width: 540px; margin: 0 auto; }
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,.75);
  padding: 52px 24px 28px;
}
.footer-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 12px; pointer-events: none; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 300px; }
footer h4 { color: #fff; font-family: 'Lato', sans-serif; font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
footer ul { list-style: none; }
footer li { margin-bottom: 9px; }
footer a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .88rem; transition: color .2s; }
footer a:hover { color: #fff; }
.footer-bottom {
  max-width: 1120px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); }
@media(max-width:768px){ 
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding-bottom: 100px; } 
}

/* ════════════════════════════
   FLOATING CTA
════════════════════════════ */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  background: var(--coral);
  color: #fff;
  border: none; border-radius: 32px;
  padding: 14px 24px;
  font-family: 'Miranda Sans', sans-serif;
  font-size: .88rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 28px rgba(232,100,74,.45);
  display: flex; align-items: center; gap: 8px;
  transition: transform .2s, box-shadow .2s, background .2s;
  animation: floatIn .8s .5s both;
}
.float-cta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 36px rgba(232,100,74,.55); background: var(--coral-dark); }
@keyframes floatIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }

/* ════════════════════════════
   FORM SUCCESS MESSAGE
════════════════════════════ */
.form-success {
  display: none;
  background: #d4edda; border: 1px solid #28a745;
  border-radius: 8px; padding: 14px 18px;
  color: #155724; font-size: .9rem; margin-top: 12px;
  align-items: center; gap: 8px;
}
.form-success.show { display: flex; }
