/* assets/css/variables.css */
:root {
  /* Colors - Sleek Warm Monochrome Palette */
  --color-bg-main: #F4F3F0; /* Warm off-white / Stone */
  --color-bg-card: #FFFFFF;
  --color-bg-alt: #EBEAE6;
  
  --color-text-main: #1A1A18; /* Deep rich black */
  --color-text-muted: #666663; /* Medium grey */
  --color-text-light: #A3A3A0; /* Light grey */
  
  --color-primary: #1A1A18; /* Black as accent */
  --color-primary-hover: #333330; 
  
  --color-border: #DCDCD8;
  
  /* Typography */
  --font-primary: 'Outfit', system-ui, -apple-system, sans-serif;
  
  /* Layout constraints */
  --max-width: 1400px;
  --header-height: 100px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --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-glass: 0 20px 40px -10px rgb(0 0 0 / 0.15);
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}
