/* Muziboard – modern warm palette & design tokens */
:root {
  /* Colors – warm, readable, one clear accent */
  --color-bg: #faf9f7;
  --color-bg-subtle: #f5f3f0;
  --color-surface: #ffffff;
  --color-surface-hover: #fcfbf9;
  --color-border: #e8e5e0;
  --color-border-strong: #d4cfc7;
  --color-text: #1c1b1f;
  --color-text-muted: #5c5a62;
  --color-text-faint: #8c8994;
  --color-primary: #7c4d80;
  --color-primary-hover: #6a416d;
  --color-primary-muted: rgba(124, 77, 128, 0.12);
  --color-accent: #c9a86c;
  --color-accent-muted: rgba(201, 168, 108, 0.15);
  --color-success: #2d6a4f;
  --color-error: #b91c1c;

  /* Typography */
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(28, 27, 31, 0.06);
  --shadow-md: 0 4px 12px rgba(28, 27, 31, 0.08);
  --shadow-lg: 0 8px 24px rgba(28, 27, 31, 0.1);
  --shadow-card: 0 2px 8px rgba(28, 27, 31, 0.06), 0 1px 2px rgba(28, 27, 31, 0.04);
  --shadow-card-hover: 0 12px 28px rgba(28, 27, 31, 0.12), 0 2px 6px rgba(28, 27, 31, 0.06);
}
