/* ============================================================
   Fellinora Creator Hub - Design System
   Angelehnt an fellinora.de: verspielte Pastellfarben,
   große Anton-Headlines, Source-Serif-4-Fließtext,
   durchgängig abgerundete Formen & Pill-Buttons.
   ============================================================ */

:root {
  /* Fellinora-Palette */
  --bg-lavender: #f0e1fa;
  --nav-lilac: #eadcff;
  --ink: #1a1028;
  --ink-soft: #4a3f5c;
  --pink: #f9d6e8;
  --pink-deep: #e8639f;
  --sky: #bfe3f5;
  --yellow: #f5f296;
  --mint: #d9f0de;
  --peach: #ffddc4;
  --white: #ffffff;
  --border-soft: rgba(26, 16, 40, 0.1);
  --shadow-soft: 0 12px 28px rgba(26, 16, 40, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-display: "Anton", sans-serif;
  --font-body: "Source Serif 4", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-lavender);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  padding-left: 1.2em;
}

li + li {
  margin-top: 0.5em;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

