/* IjsKroon – animations.css */
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.6} }
@keyframes spin  { to{transform:rotate(360deg)} }
@keyframes bounce { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }
.animate-pulse  { animation: pulse 2s ease infinite; }
.animate-spin   { animation: spin 1s linear infinite; }
.animate-bounce { animation: bounce 1s ease infinite; }
