* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #f4f4f4;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(0, 0, 0, 0.6);
}

/* LOGO (SLIKA) */
.nav .logo {
    display: flex;
    align-items: center;
}

.nav .logo img {
    height: 48px;
    width: auto;
    display: block;
}

/* MENI */
.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav ul li a:hover {
    text-decoration: underline;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.75)
    ),
    url("images/hero.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 20px;
    max-width: 800px;
    margin-bottom: 30px;
}

.btn {
    background: #1e6bd6;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #154fa3;
}

.btn.dark {
    background: #222;
}

.btn.dark:hover {
    background: #000;
}
.section {
    padding: 70px 15%;
    background: #fff;
}

.section.light {
    background: #f0f0f0;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.section p {
    font-size: 18px;
    max-width: 900px;
}

/* SEZNAMI */
.list {
    margin-top: 20px;
    padding-left: 20px;
}

.list li {
    margin-bottom: 10px;
    font-size: 18px;
}

.hero.small {
    min-height: 50vh;
    background: linear-gradient(
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.8)
    ),
    url("images/o-podjetju.jpg") center/cover no-repeat;
}

.hero.storitve {
    min-height: 50vh;
    background: linear-gradient(
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.8)
    ),
    url("images/storitve.jpg") center/cover no-repeat;
}

.hero.reference {
    min-height: 50vh;
    background: linear-gradient(
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.8)
    ),
    url("images/reference.jpg") center/cover no-repeat;
}
.footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 25px;
    font-size: 14px;
}

@media (max-width: 900px) {
    .nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .nav .logo img {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .section {
        padding: 50px 8%;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
    }

    .nav .logo img {
        height: 32px; /* idealno za telefon */
    }
}