/* 
   Color Tokens and CSS Variables for Dark and Light Mode 
   Style: Liquid Glass (Cyan/Blue)
*/

:root {
  /* Light Mode (Default) */
  --color-primary: #0284c7;
  --color-primary-hover: #0369a1;
  --color-on-primary: #ffffff;
  
  --color-secondary: #06b6d4;
  --color-accent: #0891b2;
  
  --color-background: #f0f9ff;
  --color-surface: rgba(255, 255, 255, 0.7);
  --color-surface-hover: rgba(255, 255, 255, 0.9);
  
  --color-foreground: #0f172a;
  --color-foreground-muted: #475569;
  
  --color-muted: #e2e8f0;
  --color-border: rgba(14, 165, 233, 0.2);
  --color-ring: rgba(2, 132, 199, 0.5);
  
  --color-destructive: #dc2626;

  /* Glassmorphism settings */
  --glass-blur: 12px;
  --glass-border: 1px solid rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;

  /* Typography */
  --font-family: 'Vazirmatn', sans-serif;
  
  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  /* Dark Mode */
  --color-primary: #38bdf8;
  --color-primary-hover: #7dd3fc;
  --color-on-primary: #0f172a;
  
  --color-secondary: #22d3ee;
  --color-accent: #67e8f9;
  
  --color-background: #082f49; /* Deep water dark */
  --color-surface: rgba(15, 23, 42, 0.6);
  --color-surface-hover: rgba(15, 23, 42, 0.8);
  
  --color-foreground: #f8fafc;
  --color-foreground-muted: #cbd5e1;
  
  --color-muted: #1e293b;
  --color-border: rgba(56, 189, 248, 0.2);
  --color-ring: rgba(56, 189, 248, 0.5);
  
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
