/* ============================================================
   KALT & DUNKEL — Base
   CSS-Variablen, Reset, Basis-Elemente
   ============================================================ */

/* === Variablen === */
:root {
    --color-bg: #0e0e11;
    --color-bg-mid: #18181b;
    --color-surface: #1e1e22;
    --color-surface-2: #26262c;
    --color-accent: #f0c419;
    --color-accent-dim: rgba(240, 196, 25, 0.15);
    --color-text: #e8e8ea;
    --color-text-muted: #7c7c8a;
    --color-border: #2a2a32;
    --color-deep: #0a0a14;
    --color-water: rgba(60, 100, 180, 0.06);
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Rubik', system-ui, sans-serif;
    --radius: 3px;
    --radius-md: 4px;
    --radius-lg: 6px;
    --max-width: 1100px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --grid-gap: 2rem;
    --grid-gap-sm: 1.25rem;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    font-size: 1rem;
    background-image:
        radial-gradient(ellipse 120% 60% at 50% -10%, rgba(60, 100, 200, 0.07) 0%, transparent 60%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* === Typografie-Hierarchie === */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text);
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: 0.03em; }
h2 { font-size: 1.8rem; letter-spacing: 0.04em; color: var(--color-accent); }
h3 { font-size: 1.3rem; letter-spacing: 0.04em; }
h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); }
p  { color: var(--color-text-muted); line-height: 1.75; margin-bottom: 1rem; }
ul, ol { margin: 0 0 1rem 1.5rem; color: var(--color-text-muted); }

/* === Tabellen-Basis === */
th {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    text-align: left;
}
td { color: var(--color-text); vertical-align: top; }

/* === Utilities === */
.text-muted  { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }
