Skip to content
document.addEventListener('DOMContentLoaded', function() {
const video = document.querySelector('.heroVideo video');
const button = document.getElementById('hero-volume');
const icon = button.querySelector('i');
if (!video || !button || !icon) return;
video.muted = true;
icon.className = 'fas fa-volume-mute';
button.addEventListener('click', function() {
video.muted = !video.muted;
if (video.muted) {
icon.className = 'fas fa-volume-mute';
} else {
icon.className = 'fas fa-volume-up';
video.volume = 1;
}
});
});