/**
 * Design Tokens for Cien Lucas
 *
 * This file defines all design tokens using CSS custom properties.
 * These tokens provide a single source of truth for colors, typography,
 * spacing, and other design values throughout the application.
 */

:root {
  /* ========================================
     PRIMARY COLORS (Green Brand)
     ======================================== */
  --color-primary-50: #f4ffe7;
  --color-primary-100: #e5ffcb;
  --color-primary-200: #ceff9d;
  --color-primary-300: #b4ff9a;
  --color-primary-400: #92e27a;  /* Main brand color */
  --color-primary-500: #6ec653;
  --color-primary-600: #59a944;
  --color-primary-700: #4a8939;
  --color-primary-800: #3a6b2d;
  --color-primary-900: #2a4d1f;
  --color-primary-950: #152a10;

  /* ========================================
     NEUTRAL COLORS (Warm Palette)
     ======================================== */
  --color-neutral-50: #fbfbf7;   /* Body background */
  --color-neutral-100: #f6f6ee;  /* Panel background */
  --color-neutral-200: #f0f0e6;
  --color-neutral-300: #e0e0d6;
  --color-neutral-400: #c8c8b9;
  --color-neutral-500: #a0a08c;
  --color-neutral-600: #787866;
  --color-neutral-700: #5a5a4d;
  --color-neutral-800: #3d3d33;
  --color-neutral-900: #1f1f19;

  /* ========================================
     AI COLORS (Purple)
     ======================================== */
  --color-ai-50: #f5f3ff;
  --color-ai-100: #ede9fe;
  --color-ai-200: #ddd6fe;
  --color-ai-300: #c4b5fd;
  --color-ai-400: #a78bfa;
  --color-ai-500: #8b5cf6;
  --color-ai-600: #7c3aed;
  --color-ai-700: #6d28d9;
  --color-ai-800: #5b21b6;
  --color-ai-900: #4c1d95;

  /* ========================================
     SEMANTIC COLORS
     ======================================== */
  --color-success: #36d399;
  --color-warning: #fbbd23;
  --color-error: #f87272;
  --color-info: #3abff8;

  /* ========================================
     BLACK & WHITE
     ======================================== */
  --color-black: #000000;
  --color-white: #ffffff;

  /* ========================================
     TYPOGRAPHY - FONT FAMILIES
     ======================================== */
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;

  /* ========================================
     TYPOGRAPHY - FONT SIZES
     ======================================== */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */

  /* ========================================
     TYPOGRAPHY - FONT WEIGHTS
     ======================================== */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* ========================================
     TYPOGRAPHY - LINE HEIGHTS
     ======================================== */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  /* ========================================
     SPACING SCALE
     ======================================== */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */

  /* ========================================
     BORDER RADIUS
     ======================================== */
  --radius-sm: 0.125rem;   /* 2px */
  --radius-base: 0.25rem;  /* 4px */
  --radius-md: 0.375rem;   /* 6px */
  --radius-lg: 0.5rem;     /* 8px */
  --radius-xl: 0.75rem;    /* 12px */
  --radius-2xl: 1rem;      /* 16px */
  --radius-3xl: 1.5rem;    /* 24px */
  --radius-full: 9999px;

  /* ========================================
     SHADOWS
     ======================================== */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-base: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
