1. Mechanisme — kopieer 1-op-1, geen styling-keuzes
// Mechanisme: nav-sticky-pill-minimal
import gsap from 'https://esm.sh/[email protected]';
// Pas toe op je eigen selector — geen stijlkeuzes hier.
import gsap from 'https://esm.sh/[email protected]';
if(window.matchMedia('(prefers-reduced-motion: reduce)').matches)return;
document.querySelectorAll('.magnetic').forEach((el,i)=>{gsap.from(el,{y:-8,autoAlpha:0,duration:0.9,delay:i*0.06,ease:'power2.out'});el.addEventListener('mouseenter',()=>gsap.to(el,{scale:1.04,duration:0.8,ease:'power2.out'}));el.addEventListener('mouseleave',()=>gsap.to(el,{scale:1,duration:0.9,ease:'power2.out'}));});