/* ==========================================================================
   Pokret: minimalne tranzicije i blagi ulaz sekcija
   Sve je iskljuceno kod prefers-reduced-motion.
   ========================================================================== */
/* Glatko skrolovanje do sidra na istoj stranici (npr. pločice brzog izbora na Usluge).
   Cilj ostaje 24 px ispod vrha; ND stranice imaju svojih 48 px (.nd-weishaupt [id]). */
[id] {
	scroll-margin-top: 24px;
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}

	a,
	button,
	.nd-btn,
	.nh-button {
		transition: color .18s ease, background-color .18s ease, border-color .18s ease,
			text-decoration-color .18s ease, box-shadow .18s ease;
	}

	.te-rv {
		opacity: 0;
		transform: translateY(12px);
		transition: opacity .5s ease-out, transform .5s ease-out;
	}

	.te-rv.te-in {
		opacity: 1;
		transform: none;
	}
}

@media print {
	.te-rv {
		opacity: 1 !important;
		transform: none !important;
	}
}
