:root {
    --blush:    #EDCFBF;
    --peach:    #E8B49A;
    --rose:     #C9856A;
    --sand:     #E8D9C5;
    --sage:     #9FAF96;
    --sage-lt:  #C6D1BF;
    --cream:    #FAF5EF;
    --warm:     #F5EDE2;
    --dark:     #3D3530;
    --mid:      #6B5A52;
    --light:    #A8978F;
    --whatsapp: #25D366;
    --wa-dark:  #1da851;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ─── WATERCOLOUR BACKGROUND ─── */
  .page-bg {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    overflow: hidden;
  }
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
  }
  .blob-1 { width:600px;height:500px;background:var(--blush);  top:-100px;  left:-150px; }
  .blob-2 { width:500px;height:500px;background:var(--sand);   top:30%;     right:-100px; }
  .blob-3 { width:400px;height:400px;background:var(--sage-lt);bottom:0;    left:10%; }
  .blob-4 { width:300px;height:300px;background:var(--peach);  bottom:20%;  right:5%;  opacity:0.2; }

  /* ─── LAYOUT ─── */
  .wrapper {
    position: relative; z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  /* ─── LOGO ─── */
  .logo-wrap {
    width: 220px; height: 220px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
      0 4px 30px rgba(61,53,48,0.12),
      0 0 0 6px var(--cream),
      0 0 0 10px var(--blush);
    animation: fadeDown 0.8s ease both;
    flex-shrink: 0;
  }
  .logo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ─── HERO TEXT ─── */
  .hero-text {
    text-align: center;
    margin-top: 2.2rem;
    animation: fadeUp 0.7s ease 0.15s both;
  }
  .tagline {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    font-weight: 700;
    color: var(--rose);
    line-height: 1.1;
  }
  .sub-tagline {
    font-weight: 300;
    font-size: 1rem;
    color: var(--mid);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.4rem;
  }

  /* ─── DIVIDER ─── */
  .divider {
    display: flex; align-items: center; gap: 1rem;
    width: 100%; max-width: 400px;
    margin: 2.2rem 0;
    animation: fadeUp 0.7s ease 0.25s both;
  }
  .divider-line { flex: 1; height: 1px; background: var(--blush); }
  .divider-icon { font-size: 1.2rem; color: var(--peach); }

  /* ─── INTRO ─── */
  .intro {
    text-align: center;
    max-width: 500px;
    animation: fadeUp 0.7s ease 0.3s both;
  }
  .intro p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--mid);
    font-weight: 300;
  }
  .intro p strong {
    font-weight: 700;
    color: var(--rose);
  }

/* ─── INHALT ─── */
.inhalt {
    margin: 0.5rem;
    text-align: center;
    max-width: 500px;
    animation: fadeUp 0.7s ease 0.3s both;
}
.inhalt p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--mid);
    font-weight: 300;
}
.inhaltheader {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rose);
}

/* ─── IMPRESSUM ─── */
.impressum {
    text-align: start;
    max-width: 800px;
    animation: fadeUp 0.7s ease 0.3s both;
}
.impressum p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--mid);
    font-weight: 300;
}
.impressum p strong {
    font-weight: 700;
    color: var(--rose);
}
/* ─── DATENSCHUTZ ─── */
.datenschutz {
    text-align: start;
    max-width: 800px;
    animation: fadeUp 0.7s ease 0.3s both;
}
.datenschutz p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--mid);
    font-weight: 200;
}
.datenschutz p strong {
    font-weight: 500;
    color: var(--rose);
}
.datenschutzheader {
    font-weight: 700;
    font-size: 1rem;
    color: var(--rose);
}

  /* ─── ANGEBOTE PILLS ─── */
  .pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeUp 0.7s ease 0.4s both;
  }
  .pill {
    background: rgba(255,255,255,0.75);
    border: 1.5px solid var(--blush);
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--mid);
    display: flex; align-items: center; gap: 0.4rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(61,53,48,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .pill:hover { transform: translateY(-2px); box-shadow: 0 5px 14px rgba(61,53,48,0.12); }
  .pill-icon { font-size: 1rem; }
  .pill-emoji { font-size: 2rem; margin-bottom: 0.6rem; display: block; }
  .pill h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.25rem;
    color: var(--rose);
    margin-bottom: 0.4rem;
  }
  .pill p { font-size: 0.85rem; color: var(--light); line-height: 1.6; font-weight: 300; }

  .pill a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--mid);
    display: flex; align-items: center; gap: 0.4rem;
    transition: transform 0.2s, box-shadow 0.2s;
	  text-decoration: none;
  }

  /* ─── CARDS ─── */
  .cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    width: 100%;
    margin-top: 2.5rem;
    animation: fadeUp 0.7s ease 0.45s both;
  }
  @media(max-width:520px){ .cards { grid-template-columns: 1fr; } }
  @media(min-width:520px) and (max-width:800px){ .cards { grid-template-columns: 1fr 1fr; } }

  .card {
    background: rgba(255,255,255,0.65);
    border: 1.5px solid rgba(237,207,191,0.6);
    border-radius: 20px;
    padding: 1.4rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(61,53,48,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
	  text-decoration: none;
  }
  .card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(61,53,48,0.12); }
  .card-emoji { font-size: 2rem; margin-bottom: 0.6rem; display: block; }
  .card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.25rem;
    color: var(--rose);
    margin-bottom: 0.4rem;
  }
  .card p { font-size: 0.85rem; color: var(--light); line-height: 1.6; font-weight: 300; }
  
  .card-link a {
	text-decoration: none;
  }

  /* ─── QUOTE ─── */
  .quote-wrap {
    margin-top: 2.5rem;
    background: rgba(255,255,255,0.55);
    border-left: 4px solid var(--peach);
    border-radius: 0 16px 16px 0;
    padding: 1.2rem 1.6rem;
    max-width: 480px;
    backdrop-filter: blur(8px);
    animation: fadeUp 0.7s ease 0.5s both;
  }
  .quote-wrap p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.25rem;
    color: var(--mid);
    line-height: 1.6;
  }

  /* ─── ALTERSGRUPPEN ─── */
  .ages {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.2rem;
    animation: fadeUp 0.7s ease 0.55s both;
  }
  .age-badge {
    background: var(--warm);
    border: 1.5px solid var(--blush);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(61,53,48,0.06);
  }
  .age-badge .age-range {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: var(--rose);
    font-weight: 700;
  }
  .age-badge .age-label { font-size: 0.78rem; color: var(--light); font-weight: 300; letter-spacing: 0.05em; }

  /* ─── WHATSAPP BUTTON ─── */
  .wa-section {
    margin-top: 3rem;
    text-align: center;
    animation: fadeUp 0.7s ease 0.6s both;
    width: 100%;
  }
  .wa-hint {
    font-size: 0.9rem;
    color: var(--light);
    margin-bottom: 1.2rem;
    letter-spacing: 0.03em;
  }
  .wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    background: var(--whatsapp);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
  }
  .wa-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.2), transparent 60%);
  }
  .wa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.45);
    background: var(--wa-dark);
  }
  .wa-btn:active { transform: translateY(0); }

  .wa-icon {
    width: 26px; height: 26px;
    fill: white;
    flex-shrink: 0;
  }

  /* ─── WHATSAPP LINK ─── */

  .wa-contact {
    text-decoration: none;
    color: var(--wa-dark);
    font-weight: 300;
  }
  /* ─── EMAIL LINK ─── */

  .email-contact {
    text-decoration: none;
    color: var(--dark);
    font-weight: 300;
  }

  /* ─── FOOTER ─── */
  .footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--light);
    animation: fadeUp 0.7s ease 0.65s both;
    letter-spacing: 0.04em;
  }
  .footer a { color: var(--peach); text-decoration: none; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─── DECO ELEMENTS ─── */
  .deco {
    position: fixed;
    pointer-events: none;
    opacity: 0.06;
    font-size: 8rem;
    z-index: 0;
  }
  .deco-1 { top: 5%; right: -1rem; transform: rotate(15deg); }
  .deco-2 { bottom: 10%; left: -1rem; transform: rotate(-20deg); }
  
  /* ─── CAROUSEL ─── */
  .carousel-wrap {
	  width: 100%;
	  max-width: 860px;
	  user-select: none;
	}

	.carousel-title {
	  font-size: 13px;
	  color: #888;
	  text-align: center;
	  margin-top: 1.25rem;
	  margin-bottom: 1.25rem;
	  letter-spacing: 0.08em;
	  text-transform: uppercase;
	}

	.carousel-container {
	  position: relative;
	  overflow: hidden;
	  border-radius: 12px;
	  border: 1px solid #e0e0e0;
	  background: #eee;
	  aspect-ratio: 16 / 9;
	  width: 100%;
	  cursor: grab;
	  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
	}

	.carousel-container.dragging { cursor: grabbing; }

	.carousel-track {
	  display: flex;
	  height: 100%;
	  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	  will-change: transform;
	}

	.carousel-track.no-transition { transition: none; }

	.carousel-slide {
	  flex: 0 0 100%;
	  height: 100%;
	  position: relative;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  overflow: hidden;
	  background: rgba(255,255,255,0.65);
	}

	/* Bilder füllen die gesamte Folie aus */
	.carousel-slide img {
	  width: 100%;
	  height: 100%;
	  object-fit: contain;
	  display: block;
	  pointer-events: none;
	  border-radius: 20px;
	}

	/* Pfeil-Buttons */
	.carousel-arrow {
	  position: absolute;
	  top: 50%;
	  transform: translateY(-50%);
	  z-index: 10;
	  width: 40px;
	  height: 40px;
	  border-radius: 50%;
	  background: rgba(255,255,255,0.9);
	  border: 1px solid rgba(0,0,0,0.12);
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  cursor: pointer;
	  transition: background 0.15s, transform 0.15s;
	  backdrop-filter: blur(4px);
	}

	.carousel-arrow:hover {
	  background: #fff;
	  transform: translateY(-50%) scale(1.05);
	}

	.carousel-arrow.prev { left: 14px; }
	.carousel-arrow.next { right: 14px; }

	.arrow-icon {
	  width: 18px;
	  height: 18px;
	  stroke: #333;
	  fill: none;
	  stroke-width: 2;
	  stroke-linecap: round;
	  stroke-linejoin: round;
	}

	/* Punkte */
	.carousel-dots {
	  display: flex;
	  justify-content: center;
	  gap: 6px;
	  margin-top: 16px;
	}

	.dot {
	  width: 7px;
	  height: 7px;
	  border-radius: 50%;
	  background: #ccc;
	  cursor: pointer;
	  transition: all 0.25s ease;
	}

	.dot.active {
	  width: 22px;
	  border-radius: 4px;
	  background: #333;
	}

	/* Zähler & Hinweis */
	.counter {
	  font-size: 13px;
	  color: #999;
	  text-align: center;
	  margin-top: 10px;
	}

	.swipe-hint {
	  font-size: 12px;
	  color: #bbb;
	  text-align: center;
	  margin-top: 6px;
	}