/* ================================================================
   Gemeinsame Basis für alle Seiten:
   Schrift (selbst gehostet, DSGVO-konform), Design-Tokens,
   Reset & Icon-Grundregeln.
   ================================================================ */

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-var.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #233C63;
    --navy-light: #2d4d7e;
    --slate: #475569;
    --light-slate: #94a3b8;
    --white: #ffffff;
    --accent: #059669;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--navy);
    -webkit-font-smoothing: antialiased;
}

/* --- LUCIDE ICONS --- */
.lucide { width: 1em; height: 1em; flex-shrink: 0; }
[data-icon] { display: inline-flex; width: 1.2em; height: 1.2em; vertical-align: -0.22em; }
[data-icon] .lucide { width: 100%; height: 100%; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
