/* =============================================
   AARMAN AUTOMATION - CSS VARIABLES
   ============================================= */

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

:root {
  /* ---- Brand Colors ---- */
  --color-primary: #0d2d6e;
  --color-primary-dark: #091e4a;
  --color-primary-light: #1a3f8f;
  --color-accent: #1a56db;
  --color-accent-hover: #1649c0;
  --color-orange: #e85d04;
  --color-orange-light: #f97316;

  /* ---- Backgrounds ---- */
  --bg-white: #ffffff;
  --bg-light: #f4f7fc;
  --bg-light-2: #edf2fb;
  --bg-dark: #0d2d6e;
  --bg-dark-2: #091e4a;
  --bg-dark-3: #0b2560;

  /* ---- Text ---- */
  --text-dark: #0d1b2a;
  --text-medium: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --text-white: #ffffff;
  --text-white-muted: rgba(255, 255, 255, 0.75);
  --text-white-dim: rgba(255, 255, 255, 0.55);

  /* ---- Borders ---- */
  --border-light: #e5e7eb;
  --border-medium: #d1d5db;
  --border-dark: rgba(255, 255, 255, 0.12);

  /* ---- Typography ---- */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;

  --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 */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */

  /* ---- Spacing ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ---- Layout ---- */
  --container-max: 1280px;
  --container-pad: 1.5rem;

  /* ---- Radius ---- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ---- Shadows ---- */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
  --shadow-blue: 0 4px 20px rgba(26, 86, 219, 0.25);
  --shadow-card: 0 2px 12px rgba(13, 45, 110, 0.08);

  /* ---- Transitions ---- */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* ---- Topbar Height ---- */
  --topbar-height: 40px;
  --navbar-height: 72px;
  --total-header: 112px;
}
