* {
    box-sizing: border-box;
}

/* BODY */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f1f5f9;
    color: #0f172a;
    padding-top: 100px;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
}

/* LOGO */
.logo {
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.logo span {
    color: #f97316;
}

/* NAV */
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('slepa.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 40px;
}

.hero p {
    opacity: 0.9;
}

/* BUTTON */
.btn {
    background-color: #f97316;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
}

/* USLUGE */
.usluge {
    text-align: center;
    padding: 50px 20px;
}

.usluge-lista {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.usluga {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 220px;
}

/* ZASTO MI */
.zasto-mi {
    background: #1e293b;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.zasto-lista {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.zasto-lista div {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    width: 220px;
}

/* KONTAKT */
#kontakt-sekcija {
    padding: 50px 20px;
    text-align: center;
    background: white;
}

.mapa-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

/* FIXED BUTTONS */
.call-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f97316;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
}

.viber-fixed {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
}

/* RECENZIJE */
.recenzije {
    padding: 50px 20px;
    text-align: center;
}

.recenzije-lista {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.recenzija {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
}

/* GALERIJA */
.galerija {
    padding: 50px 20px;
    text-align: center;
}

.slike {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.slike img {
    width: 300px;
    border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {

    .header {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .usluge-lista,
    .zasto-lista {
        flex-direction: column;
        align-items: center;
    }

    .usluga,
    .zasto-lista div {
        width: 90%;
    }
}

.seo-tekst {
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    margin: auto;
}
.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: #1e293b;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    nav ul.active {
        display: flex;
    }
}
@media (max-width: 768px) {

    .header {
        flex-direction: row;
        justify-content: space-between;
    }

    nav {
        width: 100%;
    }
}
.galerija h2 {
    margin-bottom: 20px;
}

.galerija:nth-child(even) {
    background-color: #f8fafc;
}
.google {
    background-color: #4285F4;
    margin-top: 15px;
}
