.navigacija {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #0d3b66;
    padding: 15px;
    text-align: center;
}

.navigacija a {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    margin: 0 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.navigacija a:hover {
    background: #145da0;
}

.navigacija a:visited {
    color: #d0e8ff;
}

.navigacija a:active {
    transform: scale(0.95);
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #d0d9e2;
}

.hero {
    background-image: url("../images/hotell.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero > * {
    position: relative;
}

#pocetna {
    text-align: center;
    margin-top: 30px;
    font-size: 40px;
}

h2 {
    text-align: center;
    margin: 40px 0 10px 0;
}

p {
    text-align: center;
    max-width: 700px;
    margin: 10px auto;
}

.scroll {
    margin: 20px;
    padding: 15px;
    background: white;
    border: 2px solid #ddd;
    max-height: 150px;
    overflow-y: auto;
}

.scroll ul {
    list-style-type: square;
    padding-left: 20px;
}

.scroll li {
    margin: 8px 0;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #0d3b66;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.btn:hover {
    background: #145da0;
}

.top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0d3b66;
    color: white;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
}

footer {
    background-color: #d9f0ff;
    padding: 15px;
    text-align: center;
    margin-top: 30px;
}

footer p {
    font-size: 12px;
    color: gray;
    margin: 0;
}