/* Tapas — Color tokens
 * Source of truth: TAPAS-SAAS/app/globals.css (@theme block + :root).
 * Values are OKLCH, copied verbatim from the repo. Light mode is the shipping theme;
 * dark tokens are prepared but not fully rolled out in the product.
 */

:root {
  /* ---- Surfaces & text ---- */
  --background: oklch(0.985 0.002 247);
  --foreground: oklch(0.205 0.015 250);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.205 0.015 250);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.205 0.015 250);

  /* ---- Primary (Veterias Lime-Green — the brand accent) ---- */
  --primary: oklch(0.82 0.18 131);
  --primary-foreground: oklch(0.18 0.02 250);
  --primary-hover: color-mix(in oklch, var(--primary) 82%, var(--foreground));

  /* ---- Secondary / muted / accent ---- */
  --secondary: oklch(0.97 0.002 247);
  --secondary-foreground: oklch(0.205 0.015 250);
  --muted: oklch(0.96 0.003 247);
  --muted-foreground: oklch(0.45 0.01 250);
  --hint-foreground: oklch(0.64 0.006 250);
  --accent: oklch(0.82 0.18 131);
  --accent-foreground: oklch(0.18 0.02 250);

  /* ---- Semantic status ---- */
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.985 0 0);
  --warning: oklch(0.75 0.18 75);
  --warning-foreground: oklch(0.205 0.015 250);

  /* ---- Lines & inputs ---- */
  --border: oklch(0.91 0.003 247);
  --input: oklch(0.91 0.003 247);
  --ring: oklch(0.82 0.18 131);

  /* ---- Charts ---- */
  --chart-1: oklch(0.82 0.18 131);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.75 0.18 75);
  --chart-5: oklch(0.769 0.188 70.08);

  /* ---- Sidebar (always dark, a fixed design element even in light mode) ---- */
  --sidebar: oklch(0.22 0.015 250);
  --sidebar-foreground: oklch(0.95 0 0);
  --sidebar-primary: oklch(0.82 0.18 131);
  --sidebar-primary-foreground: oklch(0.18 0.02 250);
  --sidebar-accent: oklch(0.28 0.015 250);
  --sidebar-accent-foreground: oklch(0.95 0 0);
  --sidebar-border: oklch(0.32 0.012 250);
  --sidebar-ring: oklch(0.82 0.18 131);

  /* ---- Vetera integration brand (deep blue — used only for Vetera scoring/badges) ---- */
  --vetera-brand: #0019af;
  --vetera-brand-foreground: #ffffff;
}

/* ---- White-label presets ---- *
 * Practices may replace the lime-green --primary with a preset. Documented in readme.md.
 * Apply by setting --primary / --ring / --accent to one of these on a scope root.
 */
:root {
  --preset-veterias-green: #7ed957;
  --preset-ozeanblau: #3b82f6;
  --preset-lavendel: #8b5cf6;
  --preset-koralle: #f97316;
  --preset-pink: #ec4899;
  --preset-tuerkis: #14b8a6;
  --preset-bernstein: #f59e0b;
  --preset-schiefergrau: #64748b;
}
