document.querySelectorAll('nav a').forEach(link => { link.addEventListener('click', function(e) { e.preventDefault(); const target = this.getAttribute('href'); document.querySelector(target).scrollIntoView({ behavior: 'smooth' }); }); }); document.querySelector('.scroll-down').addEventListener('click', function() { document.querySelector('#apropos').scrollIntoView({ behavior: 'smooth' }); });