/* 
  MyAssetsHub Design System - Variables
  Using colors inspired by the original logo and modern PropTech standards.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Colors (Vibrant & Bright) */
  --mah-primary: #0062FF;       /* Bright Electric Blue */
  --mah-secondary: #FF5A00;     /* Vibrant Orange */
  --mah-accent: #00C853;        /* Bright Green */
  
  /* Neutral Palette */
  --mah-bg-color: #F8FAFC;      /* Ghost White Background */
  --mah-surface: #FFFFFF;       /* White Cards/Surfaces */
  --mah-text-dark: #0f172a;     /* Near Black for headings */
  --mah-text-body: #475569;     /* Slate for body copy */
  --mah-border: #e2e8f0;        /* Light borders */
  
  /* Functional Colors */
  --mah-success: #10b981;
  --mah-warning: #f59e0b;
  --mah-danger: #ef4444;
  --mah-info: #3b82f6;

  /* Typography */
  --mah-font-heading: 'Outfit', sans-serif;
  --mah-font-body: 'Inter', sans-serif;
  
  /* Shadows (Modern soft drop shadows) */
  --mah-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --mah-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --mah-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --mah-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --mah-shadow-hover: 0 20px 25px -5px rgba(66, 133, 244, 0.15), 0 10px 10px -5px rgba(66, 133, 244, 0.04);
  
  /* Border Radius */
  --mah-radius-sm: 0.375rem;
  --mah-radius-md: 0.5rem;
  --mah-radius-lg: 0.75rem;
  --mah-radius-xl: 1rem;
  --mah-radius-pill: 9999px;

  /* Transitions */
  --mah-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --mah-transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
