| document.addEventListener('DOMContentLoaded', () => { |
| |
| const cards = document.querySelectorAll('.bg-white'); |
| |
| cards.forEach(card => { |
| card.addEventListener('mouseenter', () => { |
| card.querySelector('h3').classList.add('text-primary-600'); |
| }); |
| |
| card.addEventListener('mouseleave', () => { |
| card.querySelector('h3').classList.remove('text-primary-600'); |
| }); |
| }); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function (e) { |
| e.preventDefault(); |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ |
| behavior: 'smooth' |
| }); |
| }); |
| }); |
| }); |