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

:root {
  --bg: #f3efe6;
  --text: #1f2933;
  --accent: #7fa89c;
  --accent-dark: #6a9386;
  --white: #ffffff;
  --gray-light: #e8e4dc;
  --gray: #9aa5b4;
  --radius: 12px;
  --max-w: 1100px;
  --section-pad: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 40px);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--accent-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text); }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-light);
  padding: 0 clamp(20px, 5vw, 40px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  max-height: 44px;
  max-width: 160px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-logo-accent { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    padding: 0 30px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .nav-links.open {
    max-height: 400px;
    padding: 24px 30px;
    gap: 20px;
  }
  .nav-links a { font-size: 1.1rem; opacity: 1; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: clamp(500px, 95vh, 1000px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #1a1f26;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6);
}
.hero-content {
  position: relative; z-index: 1;
  color: #fff;
  padding: 0 20px;
  max-width: 700px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.hero-content .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  margin-bottom: 16px;
  opacity: 0.95;
}
.hero-content .tagline {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-style: italic;
  opacity: 0.8;
}
.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-buttons a {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.2s;
}
.hero-buttons a:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-primary { background: var(--accent); color: #fff !important; }
.btn-secondary { background: rgba(255,255,255,0.15); color: #fff !important; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(4px); }

/* ── SECTIONS ── */
.section { padding: var(--section-pad); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #52606d;
  margin-bottom: 40px;
  line-height: 1.6;
}
.section-divider {
  width: 50px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 32px;
}
.section-alt { background: var(--white); }

/* ── START ── */
.start-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}
.start-grid img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--gray-light);
}
.start-text p { margin-bottom: 20px; font-size: 1.05rem; }
@media (max-width: 768px) {
  .start-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ── INFO BOX ── */
.info-box {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin-top: 40px;
}
.info-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 28px;
}
.info-box h3:first-child { margin-top: 0; }
.info-box p { font-size: 1.02rem; color: #52606d; line-height: 1.7; }
.info-box .price-highlight {
  margin-top: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
}

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.step {
  text-align: center;
  padding: 24px 16px;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.step p { font-size: 0.92rem; line-height: 1.5; }
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 8px; }
  .step { display: flex; align-items: center; gap: 16px; text-align: left; padding: 16px 0; }
  .step-num { flex-shrink: 0; }
}

/* ── THEMENWELTEN ── */
.themes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.theme-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.theme-header {
  background: var(--accent);
  color: #fff;
  padding: 24px;
  text-align: center;
}
.theme-header h3 { font-size: 1.15rem; font-weight: 600; }
.theme-body { padding: 24px; }
.theme-body ul { list-style: none; }
.theme-body li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.95rem;
}
.theme-body li:last-child { border-bottom: none; }
.theme-body li.extra { color: var(--text); }
.theme-sub-heading {
  font-weight: 600;
  padding-top: 14px;
  padding-bottom: 4px;
  border-bottom: none !important;
  font-size: 0.92rem;
  color: var(--text);
}
.theme-sub-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 8px;
}
.theme-sub-list li {
  border-bottom: none;
  padding: 3px 0;
  font-size: 0.92rem;
}
.theme-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--gray);
  font-style: italic;
}
@media (max-width: 768px) {
  .themes { grid-template-columns: 1fr; }
}

/* ── PREISE ── */
.price-box {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin-top: 32px;
}
.price-box h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 16px; }
.price-box p { font-size: 0.98rem; color: #52606d; line-height: 1.8; }

.addon-box {
  margin-top: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.addon-box h3 { font-size: 1.2rem; margin-bottom: 12px; }
.addon-box p { font-size: 1rem; opacity: 0.9; line-height: 1.7; max-width: 700px; margin: 0 auto; }
.addon-box .price-tag {
  margin-top: 16px;
  font-size: 1.6rem;
  font-weight: 700;
}
.addon-box .price-sub { font-size: 1rem; opacity: 0.8; }

/* ── GALERIE SLIDER ── */
.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.slider-nav { display: flex; gap: 10px; }
.slider-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  transition: background 0.15s, border-color 0.15s;
}
.slider-btn:hover { background: var(--bg); border-color: var(--accent); }

.slider-track-wrap { overflow: hidden; border-radius: var(--radius); }
.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-slide {
  flex: 0 0 calc((100% - 32px) / 3);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--gray-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.slider-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.slider-slide img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.gallery-caption { padding: 14px 16px; }
.gallery-caption .gc-title { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.gallery-caption .gc-sub { font-size: 0.85rem; color: var(--gray); margin-top: 3px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.slider-dot.active { background: var(--accent); transform: scale(1.3); }

@media (max-width: 768px) {
  .slider-slide { flex: 0 0 calc(100% - 0px); }
  .slider-track { gap: 16px; }
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 70vh;
  border-radius: 12px 12px 0 0;
  object-fit: contain;
  background: #fff;
}
.lightbox-bar {
  background: #fff;
  border-radius: 0 0 12px 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 90vw;
  width: 100%;
  flex-wrap: wrap;
}
.lightbox-bar .lb-text .lb-title { font-size: 1.1rem; font-weight: 600; color: var(--text); }
.lightbox-bar .lb-text .lb-sub { font-size: 0.9rem; color: var(--gray); margin-top: 2px; }
.lightbox-bar .lb-nav { display: flex; gap: 10px; }
.lightbox-bar .lb-nav button {
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s;
}
.lightbox-bar .lb-nav button:hover { background: var(--bg); }
.lightbox-bar .lb-nav .lb-next { background: var(--accent); color: #fff; border-color: var(--accent); }
.lightbox-bar .lb-nav .lb-next:hover { background: var(--accent-dark); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 600;
}

/* ── ÜBER UNS ── */
.about-text-box {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin-bottom: 28px;
}
.about-text-box p { margin-bottom: 20px; font-size: 1.02rem; line-height: 1.8; color: #334155; }
.about-text-box p:last-child { margin-bottom: 0; }
.about-images-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-images-row img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--gray-light);
}
@media (max-width: 600px) {
  .about-images-row { grid-template-columns: 1fr; }
}

/* ── KONTAKT FORM ── */
.contact-box {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 36px 32px;
  max-width: 680px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  background: var(--bg);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-hint {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.5;
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-footer .phone-hint { font-size: 0.9rem; color: #52606d; }
.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn:hover { background: var(--accent-dark); }
.btn:active { transform: scale(0.98); }

/* ── LEGAL SECTIONS (inline) ── */
.legal-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px clamp(20px, 5vw, 40px);
}
.legal-section .legal-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 16px;
}
.legal-box {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 24px;
}
.legal-box p {
  font-size: 0.9rem;
  color: #52606d;
  margin-bottom: 10px;
  line-height: 1.6;
}
.legal-box p:last-child { margin-bottom: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px clamp(20px, 5vw, 40px) 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.footer p, .footer a { font-size: 0.9rem; color: #52606d; }
.footer a:hover { color: var(--text); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid var(--gray-light);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 4000;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 20px clamp(20px, 5vw, 40px);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 0.9rem; max-width: 650px; color: #52606d; }
.cookie-btn {
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
}
