@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/poppins-v24-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


body {
    font-family: 'Poppins', sans-serif;
}

:root {
    --background: #f2f3f5;
    --foreground: #222;
    --muted: #e2e3e5;
    --muted-foreground: #737373;
    --accent: #f5a910;
    /* NOVA akcentna boja */
    --swiper-theme-color: var(--accent);
    /* Swiper koristi ovo */
}

/* Utility klase */
.bg-accent {
    background-color: var(--accent);
}

.text-accent {
    color: var(--accent);
}

.hover-accent {
    transition: color 0.25s ease;
}

.hover-accent:hover {
    color: var(--accent);
}


/* Hover za linkove */
.nav-link {
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--accent);
}

/* Hover fill (za SVG ikone) */
.hover-fill-accent:hover {
    fill: var(--accent);
}

/* Swiper strelice */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent) !important;
}

@media (max-width: 640px) {
    .floating-icons {
        right: 12px !important;
        bottom: 12px !important;
    }

    .floating-icons img {
        width: 35px !important;
        height: 35px !important;
    }
}