html {
    scroll-behavior: smooth;
}

body {
    background-color: #5f1629;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    padding: 0px;
    margin: 0px;
}

/* NAVIGACIJA */
.navigacija {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: #5f1629;
}

.booknownavigacija {
    background-color: #FF6B6B;
    font-weight: bold;
}

.navigacijalinkovi {
    display: flex;
}

.navigacijalinkovi a {
    text-decoration: none;
    padding: 10px;
    margin: 5px;
    font-weight: bold;
    color: white;
    border-radius: 10px;
    transition: all 0.2s ease-out;
}

.navigacijalinkovi a:hover {
    background-color: #FF6B6B;
    color: white;
}

.navigacijalinkovi a.booknownavigacija:hover {
    background-color: white;
    color: #5f1629;
}

.logo img {
    max-width: 100%;
    max-height: 70px;
    height: auto;
}

.navigacija .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
}

.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/*footer*/

.footer-separator {
    border: none;
    height: 1px;
    background-color: #fff;
    margin-left: 10%;
    width: 80%;
}

.site-footer {
    background-color: #5f1629;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-info a{
    text-decoration: none;
    color: white;
}

.footer-info a:hover{
    text-decoration: underline;
    color: #777777;
}

.footer-info h4 {
    margin-bottom: 10px;
}

.footer-bottom a{
    color: white;
    text-decoration: underline;
}

.footer-bottom a:hover{
    color: #777777;
}

.podaci{
    text-decoration: none;
}

.privacypolicy{
    text-align: right;
    padding-right: 20px;
    padding-bottom: 10px
}

.privacypolicy a{
    color: white;
    text-decoration: none;

}

.privacypolicy a:hover{
    text-decoration: underline;
    color: #777777;
}


/* Media query for mobile screens */
@media (max-width: 768px) {
    .navigacija .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding-left: 0;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 10px;
        top: 15px;
        z-index: 1001;
    }

    .navigacijalinkovi {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #5f1629;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .navigacijalinkovi.active {
        display: flex;
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo,
    .footer-info,
    .footer-bottom {
        width: 100%;
        margin-bottom: 15px;
    }

    .footer-info p,
    .footer-bottom p {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .footer-separator {
        margin-left: 5%;
        width: 90%;
    }

    .privacypolicy{
        text-align: center;
        padding: 0;
        padding-bottom: 10px
    }
}