/* ===========================================================
   Haladás VSE — Vasi Sportegyesület
   Base styles. Component styling lives inline (rendered by
   app.js) to match the original design 1:1; hover/focus states
   are applied at runtime via data-hover / data-focus attributes.
   =========================================================== */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Barlow', system-ui, sans-serif;
  color: #1a201c;
  background: #ffffff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

::selection { background: #04421f; color: #fff; }

.hvse-scroll::-webkit-scrollbar { height: 8px; width: 8px; }
.hvse-scroll::-webkit-scrollbar-thumb { background: #cfd6d0; border-radius: 8px; }

@keyframes hvseFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
