class CourseExplorer extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

Explore Our Courses

From beginner to expert, we offer comprehensive RYA training programs to master the sea

Day Skipper Course

Day Skipper

Perfect for beginners wanting to gain confidence in coastal sailing

£495 5 Days
Learn More
Coastal Skipper Course

Coastal Skipper

Advanced navigation and yacht handling in challenging conditions

£695 5 Days
Learn More
Yachtmaster Course

Yachtmaster Coastal

Professional qualification for experienced sailors

£895 5 Days
Learn More
`; // Initialize feather icons import('https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js').then(() => { feather.replace({ icons: this.shadowRoot.querySelectorAll('[data-feather]') }); }); // Add filter functionality this.shadowRoot.querySelectorAll('.filter-btn').forEach(button => { button.addEventListener('click', () => { // Remove active class from all buttons this.shadowRoot.querySelectorAll('.filter-btn').forEach(btn => { btn.classList.remove('active'); }); // Add active class to clicked button button.classList.add('active'); // In a real implementation, you would filter courses here }); }); } } customElements.define('course-explorer', CourseExplorer);