/* =============================================================
   Hyf — Design Tokens
   Brand: LEAF #66b434 · NAVY #243062 · DEEP #0f1430
          MID #3a4683 · SUN #F2A900 (logo only)
   ============================================================= */

:root {

  /* --- Brand kleuren --- */
  --sun:      #F2A900;   /* logo/solar highlight only */
  --sand:     #FFE264;
  --leaf:     #66b434;   /* primary accent — website green */
  --sky:      #3a4683;   /* mid purple-navy */
  --ocean:    #243062;   /* dark navy */
  --midnight: #0f1430;   /* deepest navy */
  --sidebar-accent-end: #4a7a28;  /* laatste stop in de sidebar-gradient */

  /* --- Pagina achtergrond --- */
  --color-bg-page:    #f3efe5;
  --color-bg-surface: #FFFFFF;
  --color-bg-subtle:  #ece8de;
  --color-bg-card:    #FFFFFF;
  --color-bg-overlay: rgba(15, 20, 48, 0.5);

  /* --- Accent (LEAF) --- */
  --color-accent:       #66b434;
  --color-accent-hover: #57a02b;
  --color-accent-light: rgba(102, 180, 52, 0.12);
  --color-accent-text:  #0f1430;

  /* --- Tekst --- */
  --color-text-primary:   #0f1430;
  --color-text-secondary: #475569;
  --color-text-tertiary:  #94A3B8;
  --color-text-inverse:   #FFFFFF;
  --color-text-accent:    #243062;

  /* --- Randen --- */
  --color-border:        #ddd8cc;
  --color-border-strong: #c9c4b6;

  /* --- Semantische kleuren --- */
  --color-primary:  #243062;
  --color-success:  #16A34A;
  --color-warning:  #D97706;
  --color-error:    #DC2626;
  --color-info:     #3a4683;

  /* --- Status badges --- */
  --color-status-active-bg:     rgba(22, 163, 74, 0.1);
  --color-status-active-text:   #16A34A;
  --color-status-warn-bg:       rgba(217, 119, 6, 0.1);
  --color-status-warn-text:     #D97706;
  --color-status-error-bg:      rgba(220, 38, 38, 0.1);
  --color-status-error-text:    #DC2626;
  --color-status-inactive-bg:   rgba(148, 163, 184, 0.15);
  --color-status-inactive-text: #64748B;
  --color-status-info-bg:       rgba(58, 70, 131, 0.1);
  --color-status-info-text:     #3a4683;

  /* --- Typografie --- */
  --font-sans: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", ui-monospace, monospace;

  --text-xs:   11px;
  --text-sm:   12px;
  --text-base: 13px;
  --text-md:   14px;
  --text-lg:   16px;
  --text-xl:   20px;
  --text-2xl:  26px;

  --font-normal: 400;
  --font-medium: 500;

  --line-height-tight:  1.25;
  --line-height-normal: 1.6;

  /* --- Spacing --- */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;

  /* --- Border radius --- */
  --radius-sm:   4px;
  --radius-md:   6px;
  --radius-lg:   8px;
  --radius-xl:   12px;
  --radius-full: 9999px;

  /* --- Layout --- */
  --sidebar-width:     220px;
  --topbar-height:     52px;
  --content-max-width: 1200px;

  /* --- Schaduwen --- */
  --shadow-xs: 0 1px 2px rgba(15,20,48,0.06);
  --shadow-sm: 0 1px 3px rgba(15,20,48,0.08), 0 1px 2px rgba(15,20,48,0.04);
  --shadow-md: 0 4px 12px rgba(15,20,48,0.10), 0 2px 4px rgba(15,20,48,0.06);

  /* --- Transitie --- */
  --transition-fast: 100ms ease;
  --transition-base: 150ms ease;

  /* --- Z-index --- */
  --z-base:    0;
  --z-raised:  10;
  --z-overlay: 100;
  --z-modal:   200;
  --z-toast:   300;

  /* --- Backward-compat aliases --- */
  --accent:         #66b434;
  --accent-hover:   #57a02b;
  --accent-faint:   rgba(102, 180, 52, 0.12);
  --border:         #ddd8cc;
  --fg:             #0f1430;
  --fg-soft:        #475569;
  --fg-faint:       #94A3B8;
  --surface:        #FFFFFF;
  --surface-alt:    #f3efe5;
  --bg:             #f3efe5;
  --radius:         6px;
  --radius-pill:    9999px;
  --highlight:      #66b434;
  --highlight-text: #0f1430;

  /* Alias gebruikt in portal templates */
  --color-surface:     #FFFFFF;
  --color-surface-alt: #f3efe5;
  --color-surface-2:   #ece8de;
}
