/* ============================================
   NEW CAMBODIA — Design Tokens
   Extracted from sample/assets/css/main.css
   Single source of truth for all styling
   ============================================ */

:root {
  /* --- Color Palette --- */
  --color-primary: #000000;
  --color-primary-light: #1a2a4a;
  --color-primary-mid: #253a5e;
  --color-accent: #c8a45e;
  --color-accent-light: #e0c07d;
  --color-accent-dark: #a8883e;
  --color-accent-glow: rgba(200, 164, 94, 0.3);

  /* Text */
  --color-text-primary: #000000;
  --color-text-secondary: #1a1a1a;
  --color-text-muted: #555555;
  --color-text-inverse: #ffffff;
  --color-text-inverse-muted: rgba(255, 255, 255, 0.75);

  /* Surfaces */
  --color-bg: #ffffff;
  --color-bg-alt: #f6f5f2;
  --color-bg-warm: #faf9f6;
  --color-bg-dark: #0c1628;
  --color-bg-card: #ffffff;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-light: rgba(0, 0, 0, 0.04);

  /* Status */
  --color-success: #16a34a;
  --color-error: #dc2626;

  /* --- Typography --- */
  --font-body: 'El Messiri', 'PT Sans Caption', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'El Messiri', 'PT Sans Caption', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;

  /* --- Spacing Scale --- */
  --space-2xs: 0.125rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* --- Layout --- */
  --container-max: 1400px;
  --container-padding: 1rem;

  /* --- Border Radius --- */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 4px rgba(12, 22, 40, 0.07);
  --shadow-md: 0 4px 18px rgba(12, 22, 40, 0.09);
  --shadow-lg: 0 8px 36px rgba(12, 22, 40, 0.11);
  --shadow-xl: 0 16px 54px rgba(12, 22, 40, 0.15);
  --shadow-glow: 0 0 28px rgba(200, 164, 94, 0.22);

  /* --- Transitions --- */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
