/*
Theme Name: Avalex Fit
Theme URI: https://agestop.hr/test/
Author: Tvoje Ime
Description: Premium Fitness Coaching Tema
Version: 1.0
Text Domain: avalexfit
*/

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: #00171a; /* bg-zinc-950 */
}
::-webkit-scrollbar-thumb {
  background-color: #27272a; /* bg-zinc-800 */
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #3f3f46; /* bg-zinc-700 */
}

/* Hide scrollbar for forms/tabs */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Marquee Animation */
.animate-marquee {
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Vanilla JS Animations (Zamena za Framer Motion) */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.fade-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s ease-out; }
.fade-right { opacity: 0; transform: translateX(50px); transition: all 0.8s ease-out; }
.fade-in { opacity: 0; transition: all 0.8s ease-out; }

.is-visible { opacity: 1; transform: translate(0, 0); }