| // Smooth scrolling for anchor links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function(e) { | |
| e.preventDefault(); | |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
| behavior: 'smooth' | |
| }); | |
| }); | |
| }); | |
| // Form submission handler | |
| document.querySelector('form')?.addEventListener('submit', function(e) { | |
| e.preventDefault(); | |
| alert('Thank you for your interest! We will contact you shortly to schedule your free class.'); | |
| this.reset(); | |
| }); | |
| // Initialize Feather Icons | |
| document.addEventListener('DOMContentLoaded', function() { | |
| feather.replace(); | |
| }); | |
| // Mobile menu toggle (will be implemented in navbar component) |