/* Farbpalette Beige/Neutral */
:root {
  --brand: #c6a27e;        /* Warmes Beige für Buttons */
  --brand-2: #a47c5b;      /* Dunkleres Beige als Akzent */
  --text: #2a2a2a;
  --muted: #6f665d;
  --bg: #f6f1eb;           /* Haupt-Hintergrund Beige */
  --bg-alt: #efe8e1;       /* Alternative Sektion Beige */
  --card: #fffdf9;         /* Karten-Hintergrund leicht abgesetzt */
  --ring: rgba(0,0,0,.08);
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius: 14px;
  --maxw: 1120px;

  /* Für Buttons & Hervorhebungen (aus deinen späteren Klassen) */
  --accent-color: var(--brand);
  --accent-strong: var(--brand-2);
}

/* Dark Mode Variante (optional) */
@media (prefers-color-scheme: dark) {
  :root {
    --text: #f0e8df;
    --muted: #c8b8a8;
    --bg: #1d1b19;
    --bg-alt: #23211f;
    --card: #2c2a28;
    --ring: rgba(255,255,255,.12);
    --shadow: 0 10px 30px rgba(0,0,0,.4);
  }
}

/* Global */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: auto; padding: 0 18px; }

/* Buttons – Basis */
.btn {
  background: var(--brand);
  color: #fff;
  padding: .9rem 1.1rem;
  border-radius: 12px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform .06s ease, box-shadow .06s ease, background .2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

/* Sekundärer Button */
.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--ring);
  box-shadow: none;
}

/* Varianten aus deinem späteren Block – angepasst auf Palette */
.btn-primary {
  background: var(--accent-color);
  color: #fff;
}

.btn-accent {
  background: var(--accent-strong);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent-strong);
  border: 2px solid var(--accent-strong);
  box-shadow: none;
}

/* WhatsApp-Button */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 999px;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

/* Tag */
.tag {
  background: rgba(198,162,126,0.2);
  color: var(--brand);
  padding: .25rem .6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .82rem;
}

/* Layout Utils */
.grid { display: grid; gap: 22px; }
.section { padding: 68px 0; }
.card {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.center { text-align: center; }
.mb-22 { margin-bottom: 22px; }
.muted { color: var(--muted); }
.bg-alt { background: var(--bg-alt); }

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: saturate(160%) blur(8px);
  background: rgba(246,241,235,0.8);
  border-bottom: 1px solid var(--ring);
}
header .bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
.logo { display: flex; gap: .6rem; font-weight: 800; letter-spacing: .3px; }
.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
}
nav a { margin: 0 .6rem; font-weight: 600; }
@media(max-width: 820px) { nav { display: none; } }

/* Hero */
.hero {
  padding: 80px 0 46px;
  background: radial-gradient(1100px 500px at 50% -120px, rgba(198,162,126,0.15), transparent);
}
.hero .h { display: grid; gap: 28px; }
.hero h1 {
  font-size: clamp(1.8rem, 2.2rem + 1vw, 3rem);
  line-height: 1.1;
}
.hero p { font-size: 1.1rem; color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-media {
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ring);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Features-Grid (Sektion mit Kacheln) */
.grid.features {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.grid.features .card { padding: 22px; }

/* Pricing */
.pricing { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.plan { padding: 26px; }
.price { font-size: 1.9rem; font-weight: 800; }

.most {
  border: 2px solid rgba(164,124,91,0.4);
  position: relative;
}
.most:after {
  content: "Beliebt";
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--brand-2);
  padding: .3rem .55rem;
  border-radius: 999px;
  font-size: .78rem;
  color: #fff;
  font-weight: 700;
}

/* Extra Hervorhebung für das beliebteste Paket */
.card.plan.most {
  border: 2px solid rgba(164,124,91,0.8);
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  transform: scale(1.03);
}

/* Pricing-Karten als Flex-Column -> Button unten */
.card.plan {
  display: flex;
  flex-direction: column;
}
.card.plan .btn {
  margin-top: auto;
}

/* Feature-Liste IN den Preis-Paketen (nicht das Feature-Grid!) */
article.plan ul.features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
article.plan ul.features li {
  margin-bottom: .35rem;
}
article.plan ul.features li::before {
  content: "✔";
  margin-right: 8px;
  color: var(--brand-2);
}

/* Kleine Hinweise unter Preisen */
.hint {
  font-size: 0.85rem;
  color: #777;
  margin-top: 5px;
}

/* Gallery */
.gallery { grid-template-columns: repeat(12, 1fr); }
.gallery .img {
  grid-column: span 4;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ring);
  background: var(--bg-alt);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; }
@media(max-width: 720px) { .gallery .img { grid-column: span 6; } }

/* FAQ */
details {
  padding: 16px 18px;
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--ring);
}
details + details { margin-top: 12px; }
summary { cursor: pointer; font-weight: 700; }

/* Form */
form { display: grid; gap: 12px; }
input, textarea, select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--ring);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 4px rgba(198,162,126,0.25);
}

/* =========================
   Hero Slider (Diashow)
   ========================= */

.hero-slider {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ring);
  background: var(--bg-alt);
}

/* Alle Slides übereinander legen, mit Fade-Effekt */
.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease;
}

.hero-slider .slide.active {
  opacity: 1;
}

/* Dots unten zentriert */
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.35);
  background: rgba(255,255,255,0.8);
  padding: 0;
  cursor: pointer;
}

.slider-dot.active {
  background: var(--brand);
  border-color: var(--brand-2);
}

/* Footer */
footer {
  padding: 32px 0;
  color: var(--muted);
  border-top: 1px solid var(--ring);
}
