/* ===== Schriften & Icons ===== */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cinzel:wght@400;600&family=Montserrat:wght@300;400;500;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* ===== Design-Tokens ===== */
:root {
  --purple: #522f75;
  --gold: #b78128;
  --bg-color: #fefefe;
  --text-gray: #333333;
  --purple-soft: #f4f0f8;
}
* { box-sizing: border-box; }
body {
  font-family: Montserrat, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-gray);
  margin: 0; padding: 0;
}

/* ===== Navigation ===== */
.site-nav {
  background: white;
  border-bottom: 1px solid #ece5f3;
  position: sticky; top: 0; z-index: 100;
}
.site-nav-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; justify-content: center; gap: 32px;
  padding: 16px 24px; flex-wrap: wrap;
}
.site-nav a {
  font-family: Cinzel, serif;
  font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--purple); text-decoration: none; font-weight: 600;
  padding-bottom: 4px; border-bottom: 2px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--gold); border-bottom-color: var(--gold);
}

/* ===== Page container (Startseite) ===== */
.container {
  max-width: 800px; width: 100%;
  padding: 48px 24px 64px;
  margin: 0 auto;
}

/* ===== Page container (Warteliste, Karten-Look) ===== */
.container.card-page {
  max-width: 720px;
  padding: 48px 32px;
  text-align: center;
  background: white;
  box-shadow: rgba(0,0,0,0.05) 0px 10px 30px;
  border-radius: 15px;
  margin: 24px auto;
}

/* ===== Header / Logo ===== */
header { text-align: center; margin-bottom: 20px; }
.logo-image { max-width: 150px; margin-bottom: 20px; }
.card-page .logo-image { max-width: 140px; }
h1 { margin: 0; font-weight: normal; }
.name-first { font-family: "Alex Brush", cursive; font-size: 4.5rem; color: var(--purple); line-height: 0.85; }
.card-page .name-first { font-size: 3.6rem; line-height: 0.9; }
.name-last { font-family: Cinzel, serif; font-size: 2rem; color: var(--purple); letter-spacing: 5px; margin-bottom: 12px; }
.card-page .name-last { font-size: 1.6rem; letter-spacing: 4px; margin-bottom: 8px; }
.subtitle { font-size: 1rem; letter-spacing: 3px; color: var(--purple); text-transform: uppercase; font-weight: 500; }

.divider { display: flex; align-items: center; justify-content: center; margin: 28px 0; }
.line { height: 1px; background-color: var(--gold); width: 90px; }
.heart-icon { color: var(--gold); margin: 0 14px; font-size: 1.1rem; }

.slogan { text-align: center; font-size: 1.35rem; color: var(--text-gray); margin-bottom: 8px; }
.card-page .slogan { font-size: 1.1rem; max-width: 44ch; margin: 0 auto 36px; line-height: 1.6; }
.slogan span { color: var(--gold); font-weight: 500; }

/* ===== Section shell ===== */
section { margin-top: 56px; }
.eyebrow {
  font-family: Cinzel, serif; font-size: 0.8rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
  text-align: center; margin-bottom: 10px;
}
h2 {
  font-family: Cinzel, serif; font-size: 1.6rem; color: var(--purple);
  font-weight: 600; text-align: center; margin: 0 0 22px;
}
h2.challenge-title { font-size: 1.9rem; margin-bottom: 18px; line-height: 1.3; }
p.lead { text-align: center; max-width: 56ch; margin: 0 auto 28px; line-height: 1.7; }

/* ===== Intro card ===== */
.intro-card {
  background: var(--purple-soft); border-radius: 15px;
  padding: 36px; text-align: center;
}
.intro-card p { line-height: 1.75; max-width: 60ch; margin: 0 auto 16px; }
.intro-card p:last-child { margin-bottom: 0; }

/* ===== Three-up: Mensch / Pferd / Hund ===== */
.trio { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.trio-item {
  flex: 1; min-width: 200px; text-align: center;
  padding: 28px 20px; border: 1px solid #ece5f3; border-radius: 15px;
}
.trio-item .icon-circle { margin: 0 auto 16px; }
.trio-item h3 { font-family: Cinzel, serif; font-size: 1.05rem; color: var(--purple); margin: 0 0 10px; font-weight: 600; }
.trio-item p { font-size: 0.92rem; line-height: 1.55; margin: 0 0 14px; }
.trio-item a { color: var(--gold); text-decoration: none; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; }
.trio-item a:hover { text-decoration: underline; }

.icon-circle {
  width: 50px; height: 50px;
  border: 2px solid var(--purple); border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
}
.icon-circle i { color: var(--purple); font-size: 1.2rem; }
.feature-row .icon-circle { width: 42px; height: 42px; min-width: 42px; }
.feature-row .icon-circle i { font-size: 1rem; }

/* ===== Angebot card with image (Startseite) ===== */
.angebot-card {
  border: 1px solid #ece5f3; border-radius: 15px; overflow: hidden;
  display: flex; flex-direction: column;
}
.angebot-card img { width: 100%; display: block; }
.angebot-body { padding: 28px; text-align: center; }
.angebot-body h3 { font-family: Cinzel, serif; color: var(--purple); font-size: 1.2rem; margin: 0 0 12px; }
.angebot-body p { line-height: 1.65; max-width: 50ch; margin: 0 auto 20px; }

.btn {
  display: inline-block; padding: 14px 32px;
  background: var(--purple); color: white; text-decoration: none;
  border-radius: 30px; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 1px; text-transform: uppercase;
  transition: background 0.3s;
}
.btn:hover { background: var(--gold); }
.btn-secondary { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-secondary:hover { background: var(--purple); color: white; }

.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Waitlist form card (nur Container, JotForm bringt eigenes Styling mit) ===== */
.formcard { max-width: 460px; margin: 0 auto; }
.microcopy { font-size: 0.85rem; color: #8a8a8a; margin-top: 14px; text-align: center; }

/* ===== Content sections (Warteliste feature lists) ===== */
.section { margin-top: 44px; text-align: left; }
.section h3 {
  font-family: Cinzel, serif; font-size: 1.15rem; color: var(--purple);
  text-align: center; margin-bottom: 22px; font-weight: 600;
}
.feature-row {
  display: flex; align-items: flex-start; gap: 18px;
  margin-bottom: 18px;
}
.feature-row p { margin: 0; font-size: 0.98rem; line-height: 1.5; padding-top: 8px; }

/* ===== About ===== */
.about-text { text-align: center; max-width: 58ch; margin: 0 auto; line-height: 1.75; }

/* ===== Contact ===== */
.contact-grid {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; max-width: 400px; margin: 0 auto;
}
.contact-item {
  display: flex; align-items: center; width: 100%;
  text-decoration: none; color: var(--purple); font-size: 1.05rem;
  transition: opacity 0.3s;
}
.contact-item:hover { opacity: 0.7; }
.contact-item .icon-circle { margin-right: 20px; width: 45px; height: 45px; flex-shrink: 0; }

/* ===== Footer ===== */
footer {
  margin-top: 56px; text-align: center; font-size: 0.78rem;
  color: #999; line-height: 1.6; border-top: 1px solid #eee; padding-top: 24px;
}
.card-page footer { text-align: left; }
footer a { color: var(--purple); text-decoration: none; }
footer a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .name-first { font-size: 3.6rem; }
  .name-last { font-size: 1.5rem; letter-spacing: 3px; }
  .slogan { font-size: 1.1rem; }
  h2 { font-size: 1.35rem; }
  .trio { flex-direction: column; }
  .site-nav-inner { gap: 18px; }
}
