We’re always on the lookout for exciting collaborations! As passionate adventurers and explorers of Croatia, we’ve worked with awesome brands like Merrell, Fjällräven, and Alpine Nation, and we love teaming up with those who share our love for the outdoors and travel.
Whether you’re a brand with cool gear, a tourism board looking to highlight stunning spots or someone with a unique project idea—let’s chat! We believe the best partnerships come from genuine connections and shared adventures. Together, we can create fun, inspiring content that gets people excited to explore the beauty of Croatia and beyond. Drop us a message, and let’s see what we can create together!
Ova web stranica koristi kolačiće kako bi osigurala pravilan rad, analizirala promet i omogućila povezane usluge, uključujući affiliate linkove. Možete prihvatiti sve kolačiće ili odbiti one koji nisu nužni. Politika kolačića
// Funkcija za postavljanje kolačića
function setCookie(name, value, days) {
let expires = "";
if (days) {
let date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + "; path=/" + expires;
}
// Kada korisnik prihvati sve kolačiće
function acceptCookies() {
setCookie("cookiesAccepted", "true", 365);
document.querySelector(".elementor-popup-modal").style.display = "none";
}
// Kada korisnik odbije sve osim nužnih
function declineCookies() {
setCookie("cookiesAccepted", "false", 365);
document.querySelector(".elementor-popup-modal").style.display = "none";
}
// Provjeri je li korisnik već dao pristanak
window.onload = function() {
if (document.cookie.indexOf("cookiesAccepted") !== -1) {
document.querySelector(".elementor-popup-modal").style.display = "none";
}
};