/* Globalni stilovi */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #000;
    background-color: #fff;
    line-height: 1.6;
    box-sizing: border-box;
}

/* Navigacija */
header {
    background: #000;
    width: 100%;
    padding: 1rem 0;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    width: 30%;
    max-width: 120px;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #F37C20;
}

.call-button {
    background: #F37C20;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Hero sekcija */
#hero {
    position: relative;
    background-color: #F37C20;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    width: auto;
    left: 0;
    right: 0;
    up:0;

}

#hero h1 {
    margin-top: 2rem;
    font-size: 2.5rem;
}

#hero p {
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Sekcije */
section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem 2rem;
}

#services .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service {
    background: #F37C20;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 calc(33.333% - 2rem);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.service img {
    width: 225px; /* Povećano za 50% */
    height: auto;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .service {
        flex: 1 1 100%;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #000;
    color: white;
}

/* Mobilni prikaz */
@media (max-width: 768px) {
    .nav-links { /* Sakrij navigacijske stavke */
        display: none;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }

    .logo {
        display: block;
        width: 30%;
        max-width: 100px;
        height: auto;
    }

    .call-button {
        display: block;
        margin: 0;
        font-size: 1.2rem;
        color: white;
        text-decoration: none;
    }
}

.zupanija-financiranje {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.zupanija-slika {
    max-width: 160px;
    max-height: 160px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.zupanija-tekst {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: #333;
    max-width: 400px;
}

