html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #ffffff;
    color: #000000;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #000000;
    color: rgb(0, 0, 0);
}

.logo {
    display: block;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;

}

.nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s;
}

.nav a:hover {
    background: #6c6f81;
}

.hero {
    text-align: center;
    padding: 60px 20px;

    color: white;
    display: block;
    background-image: url('/img/pozadi1.webp');
    background-color: #0a58ca;
    background-repeat: no-repeat;
}