/* ==========================================================================
   Balkan Candidate — Design tokens
   Boje inspirisane zastavom BiH, ali corporate B2B, ne institucionalno.
   ========================================================================== */

:root {
  /* --- Brand blues --- */
  --color-navy: #102a56;
  --color-navy-dark: #091b39;
  --color-blue: #1f4e9a;
  --color-blue-bright: #2864c7;
  --color-blue-soft: #eaf1fc;

  /* --- Accent yellow (koristiti štedljivo, ~5%) --- */
  --color-yellow: #f7c948;
  --color-yellow-hover: #e7b62f;
  --color-yellow-soft: #fff6d8;

  /* --- Surfaces --- */
  --color-white: #ffffff;
  --color-background: #f7f9fc;
  --color-surface: #ffffff;
  --color-surface-blue: #f1f5fb;

  /* --- Text --- */
  --color-text: #1d2735;
  --color-text-muted: #68778c;
  --color-text-light: #eef4ff;

  /* --- Lines --- */
  --color-border: #e0e7f0;
  --color-border-dark: rgba(255, 255, 255, 0.16);

  /* --- Status --- */
  --color-success: #25865f;
  --color-error: #b94242;

  /* --- Gradients --- */
  --gradient-primary: linear-gradient(
    135deg,
    #102a56 0%,
    #1f4e9a 58%,
    #2864c7 100%
  );

  --gradient-soft: linear-gradient(
    135deg,
    #f7f9fc 0%,
    #eef4fd 100%
  );

  /* --- Shadows --- */
  --shadow-card: 0 10px 30px rgba(16, 42, 86, 0.08), 0 2px 7px rgba(16, 42, 86, 0.04);
  --shadow-card-hover: 0 22px 52px rgba(16, 42, 86, 0.15), 0 6px 16px rgba(16, 42, 86, 0.06);
  --shadow-header: 0 1px 0 rgba(16, 42, 86, 0.08);
  --shadow-menu: 0 28px 70px rgba(16, 42, 86, 0.18);
  --shadow-button: 0 10px 22px rgba(16, 42, 86, 0.16);

  /* --- Typography --- */
  --font-heading: "Manrope", "Inter", Arial, Helvetica, sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;

  --fs-xs: 0.8125rem;   /* 13px */
  --fs-sm: 0.9375rem;   /* 15px */
  --fs-base: 1.0625rem; /* 17px */
  --fs-md: 1.1875rem;   /* 19px */
  --fs-lg: 1.375rem;    /* 22px */
  --fs-xl: 1.75rem;     /* 28px */
  --fs-2xl: 2.125rem;   /* 34px */
  --fs-3xl: 2.75rem;    /* 44px */
  --fs-4xl: 3.25rem;    /* 52px */

  --lh-tight: 1.15;
  --lh-heading: 1.22;
  --lh-body: 1.68;

  /* --- Spacing scale --- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 5rem;
  --space-11: 6.5rem;

  /* --- Layout --- */
  --container: 1220px;
  --container-narrow: 880px;
  --header-height: 76px;

  /* --- Radii --- */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* --- Motion --- */
  --transition: 180ms ease;
  --transition-slow: 320ms ease;

  /* --- Z layers --- */
  --z-header: 100;
  --z-menu: 110;
  --z-drawer: 120;
  --z-consent: 130;
}
