/* ============================================
   SOPHIE DASHBOARD - DESIGN SYSTEM
   Navy & White Theme
   ============================================ */

:root {
  /* ==========================================
     COLOR PALETTE - Navy & White
     ========================================== */

  /* Primary Colors */
  --color-navy: #1a365d;
  --color-navy-light: #2d4a7c;
  --color-navy-dark: #0f2744;

  --color-blue: #3182ce;
  --color-blue-light: #4299e1;
  --color-blue-dark: #2c5aa0;

  --color-white: #ffffff;
  --color-gray-50: #f7fafc;
  --color-gray-100: #edf2f7;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e0;
  --color-gray-400: #a0aec0;
  --color-gray-500: #718096;
  --color-gray-600: #4a5568;
  --color-gray-700: #2d3748;
  --color-gray-800: #1a202c;

  /* Accent Colors */
  --color-green: #48bb78;
  --color-red: #f56565;
  --color-yellow: #ecc94b;
  --color-orange: #ed8936;

  /* ==========================================
     TYPOGRAPHY
     ========================================== */

  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px */
  --font-size-lg: 1.125rem;     /* 18px */
  --font-size-xl: 1.25rem;      /* 20px */
  --font-size-2xl: 1.5rem;      /* 24px */
  --font-size-3xl: 1.875rem;    /* 30px */
  --font-size-4xl: 2.25rem;     /* 36px */

  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Line Heights */
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* ==========================================
     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 */
  --space-16: 4rem;     /* 64px */

  /* ==========================================
     LAYOUT
     ========================================== */

  --sidebar-width: 280px;
  --header-height: 80px;
  --container-max-width: 1400px;

  /* ==========================================
     BORDERS
     ========================================== */

  --border-width: 1px;
  --border-color: var(--color-gray-200);
  --border-radius-sm: 0.375rem;   /* 6px */
  --border-radius-md: 0.5rem;     /* 8px */
  --border-radius-lg: 0.75rem;    /* 12px */
  --border-radius-xl: 1rem;       /* 16px */

  /* ==========================================
     SHADOWS
     ========================================== */

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* ==========================================
     TRANSITIONS
     ========================================== */

  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  /* ==========================================
     Z-INDEX SCALE
     ========================================== */

  --z-index-dropdown: 1000;
  --z-index-modal: 2000;
  --z-index-overlay: 1500;
  --z-index-sidebar: 100;
}
