/*
Theme Name: GratisRekenmachine Theme
Theme URI: https://gratisrekenmachine.com
Author: GratisRekenmachine Team
Description: Custom WordPress theme matching the exact header, footer, styling, dark mode, and 8-language support of GratisRekenmachine.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: gratisrekenmachine
*/

/* Core Theme Styles & Tailwind Variables */
:root {
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;
  --muted: 215 20% 96%;
  --muted-foreground: 215 16% 40%;
  --border: 214 20% 90%;
}

@media (prefers-color-scheme: dark) {
  :root:not(.light) {
    --background: 222 47% 7%;
    --foreground: 210 40% 98%;
    --muted: 217 33% 14%;
    --muted-foreground: 215 20% 72%;
    --border: 217 33% 20%;
  }
}

:root.dark {
  --background: 222 47% 7%;
  --foreground: 210 40% 98%;
  --muted: 217 33% 14%;
  --muted-foreground: 215 20% 72%;
  --border: 217 33% 20%;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.text-muted { color: hsl(var(--muted-foreground)); }
.bg-muted { background-color: hsl(var(--muted)); }
.surface { background-color: hsl(var(--background)); border: 1px solid hsl(var(--border)); }
