@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,300;1,8..60,400&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  /* Farben */
  --color-primary:      #1e3a1e;
  --color-secondary:    #2d6a4f;
  --color-accent:       #8ab83a;
  --color-accent-dark:  #6a9428;
  --color-bg:           #fdfdf8;
  --color-bg-alt:       #f0f4eb;
  --color-bg-dark:      #1e3a1e;
  --color-text:         #1a1a1a;
  --color-text-muted:   #5c6b5c;
  --color-text-light:   #ffffff;
  --color-border:       #d8e4d0;

  /* Typografie */
  --font-heading: 'Source Serif 4', Georgia, serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;

  --size-xs:   clamp(0.75rem,  0.7rem  + 0.2vw, 0.875rem);
  --size-sm:   clamp(0.875rem, 0.85rem + 0.2vw, 1rem);
  --size-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --size-md:   clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --size-lg:   clamp(1.25rem,  1.1rem  + 0.6vw,  1.5rem);
  --size-xl:   clamp(1.5rem,   1.2rem  + 1.2vw,  2rem);
  --size-2xl:  clamp(2rem,     1.5rem  + 2vw,    3rem);
  --size-3xl:  clamp(2.5rem,   1.8rem  + 3vw,    4rem);
  --size-4xl:  clamp(3rem,     2rem    + 4vw,    5.5rem);

  /* Abstände */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-2xl:  10rem;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Übergänge */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Schatten */
  --shadow-sm: 0 2px 8px rgba(30,58,30,0.08);
  --shadow-md: 0 8px 32px rgba(30,58,30,0.12);
  --shadow-lg: 0 20px 60px rgba(30,58,30,0.18);
}
