@charset "UTF-8";

/* ==========================================================================
   KASSEL KLARHAUS – Basis (Design-Tokens, Reset, Typografie, Scrollbar)
   ========================================================================== */

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font-sans);

  --color-primary: #0f172a;
  --color-brand: #006c49;
  --color-brand-light: #6cf8bb;
  --color-brand-dark: #004d34;
  --color-surface: #f8fafc;
  --color-surface-card: #ffffff;
  --color-text-main: #0f172a;
  --color-text-muted: #475569;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background-color: var(--color-surface);
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
}

/* Scrollbar Tweaks */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
