document.addEventListener("DOMContentLoaded", function () {
// Selecciona todos los enlaces en la grilla
document.querySelectorAll('.grid-item a').forEach(function (link) {
const href = link.getAttribute('href');
// Aplica sólo si es imagen o video Vimeo
if (href.match(/\.(jpg|jpeg|png|gif|webp)$/i) || href.includes('vimeo.com')) {
link.setAttribute('data-fancybox', 'gallery');
}
});
});