/* ============================================================
   STRPLJENJE — EFFECTS TOKENS
   Brutalist / samizdat leaflet: hard borders, HARD offset
   shadows (no blur), small radii. Nothing soft or glossy.
   ============================================================ */

:root {
  /* ---- Borders ---- */
  --border-width:      2px;
  --border-width-bold: 4px;   /* hero cards, emphasis frames */
  --border-hairline:   1px;   /* internal dividers, inner cells */
  --border-solid:  var(--border-width) solid var(--border-color);
  --border-dashed: var(--border-width) dashed var(--border-color);

  /* ---- Radii (kept tight — this is print, not glass) ---- */
  --radius-xs: 2px;   /* stamps / badges */
  --radius-sm: 4px;   /* buttons, chips, cells */
  --radius-md: 6px;   /* nav / pipeline blocks */
  --radius-lg: 8px;   /* leaflets, tables */

  /* ---- Hard offset shadows (the signature move) ---- */
  --shadow-leaflet:     0 4px 0 var(--border-color);      /* resting card lip */
  --shadow-stamp:       6px 6px 0 var(--accent);          /* small offset */
  --shadow-hero:        10px 10px 0 var(--accent);        /* hero card */
  --shadow-hero-hover:  12px 12px 0 var(--accent);        /* lift on hover */

  /* ---- Motion ---- */
  --ease-out-expo: cubic-bezier(0.23, 1, 0.32, 1); /* @kind other */  /* reveals / slides */
  --ease-snap:     ease-out; /* @kind other */  /* press / hover */
  --dur-fast:  0.15s; /* @kind other */
  --dur-base:  0.25s; /* @kind other */
  --dur-slow:  0.8s;  /* @kind other */
}
