/* ==================================================
   BELLA WILDHERZ – GEMEINSAME BASIS
   Ausgelagert aus /style.css. Die alte style.css bleibt als Backup erhalten.
================================================== */

:root {
  --ink:       #1a2416;
  --deep:      #243320;
  --forest:    #3b5e32;
  --sage:      #6b9e5e;
  --mint:      #a8d48a;
  --gold:      #d4921a;
  --amber:     #f0b840;
  --cream:     #faf4e8;
  --paper:     #f3ead6;
  --warm:      #fffdf7;
  --soft-line: rgba(59,94,50,.12);
  --shadow:    0 18px 48px rgba(26,36,22,.12);
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--warm);
  color: var(--ink);
  overflow-x: hidden;
}

img { max-width: 100%; }

/* HERO */
.page-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 480px;
  max-height: 720px;
  overflow: hidden;
  background: var(--deep);
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 36%, rgba(26,36,22,.28) 72%, rgba(26,36,22,.72) 100%);
  pointer-events: none;
}

/* Counter unten im Hero */
.hero-stats {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2;
  width: min(1080px, calc(100% - 48px));
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,244,232,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(59,94,50,.11);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  gap: 16px;
}

.nav-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  color: var(--deep);
  font-weight: 700;
  font-size: .86rem;
  padding: 6px 12px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}

nav a:hover,
nav a.active {
  background: rgba(59,94,50,.1);
  color: var(--forest);
}

.nav-cta {
  background: var(--forest) !important;
  color: #fff !important;
}

.nav-cta:hover {
  background: var(--deep) !important;
  color: #fff !important;
}

/* PAGE BASICS */
.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

section { margin-top: 72px; }

.sh { margin-bottom: 28px; }

.sh-label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

.sh-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
}

.sh-title em {
  color: var(--forest);
  font-style: italic;
}

.intro-text {
  max-width: 820px;
  color: #5a6a54;
  line-height: 1.8;
  font-size: 1rem;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 5;
}

.stat-card {
  background: rgba(250,244,232,.94);
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 10px 32px rgba(26,36,22,.18);
  backdrop-filter: blur(10px);
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: .78rem;
  font-weight: 800;
  color: #5a6a54;
  line-height: 1.35;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s, opacity .2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-youtube {
  background: #ffefef;
  color: #a32020;
  border-color: rgba(163,32,32,.14);
}

.btn-youtube:hover {
  background: #fff;
  box-shadow: 0 8px 22px rgba(163,32,32,.12);
}

.btn-song {
  background: #fff4d9;
  color: #8c5b00;
  border-color: rgba(212,146,26,.24);
}

.btn-song:hover {
  background: #fff;
  box-shadow: 0 8px 22px rgba(212,146,26,.16);
}

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

.btn-forest:hover {
  background: var(--deep);
  box-shadow: 0 8px 22px rgba(26,36,22,.16);
}

.btn-ghost {
  background: rgba(59,94,50,.07);
  color: var(--forest);
  border-color: rgba(59,94,50,.12);
}

.btn-ghost:hover {
  background: rgba(59,94,50,.13);
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.45);
  padding: 48px 24px 36px;
  text-align: center;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 14px 0;
}

.footer-links a {
  color: rgba(255,255,255,.38);
  text-decoration: none;
  font-size: .8rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--mint);
}

footer p {
  font-size: .77rem;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE: GEMEINSAME BASIS */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 18px;
  }

  nav ul {
    justify-content: flex-start;
  }

  nav a {
    padding: 5px 9px;
    font-size: .82rem;
  }

  .page-hero {
    min-height: 520px;
  }

  .hero-stats {
    bottom: 18px;
    width: calc(100% - 32px);
  }

  .stat-card {
    padding: 14px;
  }
}

@media (max-width: 540px) {
  .page {
    padding: 0 16px 80px;
  }

  section {
    margin-top: 58px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-num {
    font-size: 1.45rem;
  }

  .stat-label {
    font-size: .7rem;
  }
}
