/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky:        #e8f4fa;
  --sky-deep:   #b8dff0;
  --gold:       #d4a843;
  --gold-light: #f5e6b8;
  --warm:       #fdf8f0;
  --text:       #2c3e50;
  --text-light: #5a6c7d;
  --white:      #ffffff;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }


/* ============ BUTTON ============ */
.btn {
  display: inline-block;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.12); text-decoration: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #c49530);
  color: var(--white);
}


/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(170deg, var(--sky) 0%, var(--sky-deep) 50%, var(--warm) 100%);
  padding: 4rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
}

.cover-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  transform: rotate(-2deg);
  transition: transform .3s;
}
.cover-img:hover { transform: rotate(0deg) scale(1.02); }

.hero-kicker {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: .75rem;
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Butterflies */
.hero-butterflies { position: absolute; inset: 0; pointer-events: none; }
.butterfly {
  position: absolute;
  font-size: 2rem;
  opacity: .25;
  animation: float 8s ease-in-out infinite;
}
.b1 { top: 10%; right: 8%; animation-delay: 0s; }
.b2 { top: 50%; right: 15%; font-size: 1.5rem; animation-delay: 2s; }
.b3 { bottom: 15%; left: 5%; font-size: 1.8rem; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-20px) rotate(8deg); }
}


/* ============ FÜR WEN ============ */
.for-whom {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.for-whom h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.card {
  background: var(--warm);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.card:hover { transform: translateY(-4px); }

.card-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.card h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.card p { font-size: .95rem; color: var(--text-light); }


/* ============ INHALT ============ */
.content-preview {
  padding: 5rem 1.5rem;
  background: var(--sky);
}

.content-preview h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.feature-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.feature-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.feature-icon { font-size: 2rem; flex-shrink: 0; }
.feature-list strong { display: block; font-size: 1.1rem; margin-bottom: .25rem; }
.feature-list p { font-size: .95rem; color: var(--text-light); margin: 0; }


/* ============ ÜBER SANDRA ============ */
.about {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.about-inner { max-width: 700px; }

.about h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.about p { margin-bottom: 1rem; color: var(--text-light); }
.about a { font-weight: 700; }


/* ============ DOWNLOAD / CTA ============ */
.download {
  padding: 5rem 1.5rem;
  background: linear-gradient(170deg, var(--warm) 0%, var(--gold-light) 100%);
}

.download-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
}

.download-box h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.download-box p { color: var(--text-light); margin-bottom: 1.5rem; }

.kit-embed-placeholder {
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--warm);
}
.kit-embed-placeholder em { color: var(--gold); font-size: 1.1rem; }
.kit-hint { font-size: .8rem; color: var(--text-light); margin-top: .5rem; }


/* ============ FOOTER ============ */
.footer {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--text);
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}
.footer a { color: rgba(255,255,255,.8); }
.footer a:hover { color: var(--white); }


/* ============ RESPONSIVE ============ */
@media (max-width: 700px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-cover { max-width: 220px; margin: 0 auto; }
  .cover-img { transform: none; }
  .btn { width: 100%; }
}
