Skip to content
document.addEventListener("DOMContentLoaded", function () {
var texts = ["Priroda.", "Nauka.", "Ravnoteža.", "Snaga lista masline."];
var el = document.querySelector(".hero-text-slider-desktop");
if (!el) return;
var index = 0;
el.textContent = texts[0];
el.style.opacity = "0.75";
setInterval(function () {
el.style.opacity = "0";
setTimeout(function () {
index = (index + 1) % texts.length;
el.textContent = texts[index];
el.style.opacity = "0.75";
}, 500);
}, 3000);
});