/* ============================================
   Root Palette – Hybrid (modern + warm)
   ============================================ */
:root {
  /* Grundfarben */
  --site-bg: #f9fafb;          /* globaler Hintergrund */
  --site-color: #111827;       /* globaler Text */

  /* Akzentfarben */
  --primary: #0d6efd;          /* Bootstrap Blau */
  --primary-hover: #0a58ca;
  --accent: #6610f2;           /* Violett */
  --accent-warm: #ff6b35;      /* warmes Orange */

  /* Inhaltsbereiche */
  --paper-bg: #faf7f5;         /* warmes Papier */
  --card-bg: #ffffff;          /* neutrale Karten */
  --soft-bg: #f3f4f6;          /* leichtes Grau */

  /* Typografie */
  --base-font-size: 1rem;
  --scale-ratio: 1.2;

  /* Schatten & Radius */
  --card-radius: 1rem;
  --card-shadow: 0 10px 30px rgba(0,0,0,0.06);
  --btn-shadow: 0 6px 18px rgba(13,110,253,0.18);

  /* Verläufe */
  --cta-gradient: linear-gradient(90deg, var(--primary), var(--accent));
  --pill-gradient: linear-gradient(90deg, #ffefba, #fff1c4);
}

/* ============================================
   Global Defaults
   ============================================ */
html {
  font-size: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background: var(--site-bg);
  color: var(--site-color);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.45;
  font-size: var(--base-font-size);
}

/* ============================================
   Navigation & Header (modern)
   ============================================ */
.site-header {
  background: #ffffff;
  color: #000;
  padding: 20px 0;
  font-size: 1rem;
}

.site-header a {
  color: #001f54;
  font-weight: 600;
  text-decoration: none;
}

.site-header a:hover {
  color: #003366;
}

/* ============================================
   Hero Section (modern)
   ============================================ */
.hero-section {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ddd;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 10px 0;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 80%;
}

.btn:hover {
  background-color: #003f87;
  color: #fff;
}

.btn-primary {
  background-color: var(--accent-warm);
  color: #fff;
}

.btn-primary:hover {
  background-color: #e85c2d;
}

.btn-ghost {
  background: transparent;
  color: var(--accent-warm);
  border: 2px solid var(--accent-warm);
}

.btn-ghost:hover {
  background: var(--accent-warm);
  color: #fff;
}

/* CTA Button */
.btn-cta {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  font-weight: 700;
  color: #fff;
  background: var(--cta-gradient);
  border-radius: 0.5rem;
  box-shadow: var(--btn-shadow);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13,110,253,0.22);
}

/* ============================================
   Inhaltsbereiche (warm)
   ============================================ */

/* Snippet */
.snippet {
  max-width: 700px;
  margin: 2em auto;
  padding: 1.5em;
  background: var(--paper-bg);
  border-left: 4px solid #4CAF50;
  border-radius: 6px;
  font-family: "Georgia", serif;
  line-height: 1.6;
  color: #333;
}

.snippet h2 {
  margin-top: 0;
  color: #2e7d32;
  font-size: 1.4em;
}

/* Zettel */
.zettel-container {
  max-width: 800px;
  margin: 0 auto;
}

.zettel {
  background: #fffdf5;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #e2decf;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: rotate(-1deg);
  font-family: "Georgia", serif;
}

.zettel:nth-child(2) { transform: rotate(1deg); }
.zettel:nth-child(3) { transform: rotate(-0.5deg); }

/* Zitate */
.quote-block {
  background-color: #fff8f8;
  border-left: 4px solid #a94442;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
  font-family: "Georgia", serif;
}

/* Bewusstes Leben Box */
.bewusstes-leben {
  background: var(--paper-bg);
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  font-family: "Georgia", serif;
  line-height: 1.6;
  color: #333;
}

.bewusstes-leben a {
  color: #006699;
  font-weight: bold;
}

/* ============================================
   Listen, Pills, Badges
   ============================================ */
.domain-pill {
  font-family: "Courier New", monospace;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--pill-gradient);
  padding: 0.35rem 0.6rem;
  border-radius: 0.5rem;
  color: #111;
}

.badge-plain {
  background: transparent;
  color: inherit;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
}

/* ============================================
   Footer
   ============================================ */
footer {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 2rem 1rem;
  margin-top: 3rem;
  background: transparent;
}
