*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.4s ease;;
}
/* ===== Colours ===== */
:root{
    --body-color: #eeeeee;
    --nav-color: #ffffff;
    --side-nav: #010718;
    --text-color: #FFF;
    --search-bar: #F2F2F2;
    --search-text: #010718;
}
body{
    /* height: 100vh; */
    background-color: #FFF;
}
body.dark{
    --body-color: #18191A;
    --nav-color: #242526;
    --side-nav: #242526;
    --text-color: #CCC;
    --search-bar: #242526;
}


/* siva #d0d0d0cf */
/* crna #18191A */



/* navbar */


.nav-bar img{
    height: 180px;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    height: 90px;
    width: 100%;
    background-color: var(--nav-color);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}
body.dark nav{
    border: 1px solid #393838;
}

.menu{
    width: 100%;
}

nav .nav-bar{
    position: relative;
    height: 100%;
    max-width: 1100px;
    width: 100%;
    background-color: var(--nav-color);
    /* background-color: #6e6969; */
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .nav-bar .sidebarOpen{
    color: #18191A;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    display: none;
}
nav .nav-bar .logo a{
    font-size: 25px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
}
.menu .logo-toggle{
    display: none;
}
.navlinks{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-bar .nav-links{
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-bar .nav-links li{
    margin-left: 15px;
    list-style: none;
}
.nav-links li a{
    position: relative;
    font-size: 17px;
    font-weight: 400;
    /* color: var(--text-color); */
    color: #18191A;
    text-decoration: none;
    padding: 10px;
}

body.dark .nav-links li a{
    color: #f7f3f3;
}

.nav-links li a::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: #010718;
    color: #000000;
    opacity: 0;
    transition: all 0.3s ease;
}

body.dark nav .nav-bar .sidebarOpen{
    color: #dfdfdf;
}

body.dark .nav-links li a::before{
    color: #c3c3c3;
    background-color: #fff;
}

.nav-links li:hover a::before{
    opacity: 1;
}
.nav-bar .darkLight-searchBox{
    display: flex;
    align-items: center;
}
.darkLight-searchBox .dark-light,
.darkLight-searchBox .searchToggle{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}
.dark-light i,
.searchToggle i{
    position: absolute;
    /* color: var(--text-color); */
    color: #18191A;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dark-light i.sun{
    opacity: 0;
    pointer-events: none;
}
.dark-light.active i.sun{
    opacity: 1;
    pointer-events: auto;
}
.dark-light.active i.moon{
    opacity: 0;
    pointer-events: none;
}
.searchToggle i.cancel{
    opacity: 0;
    pointer-events: none;
}
.searchToggle.active i.cancel{
    opacity: 1;
    pointer-events: auto;
}
.searchToggle.active i.search{
    opacity: 0;
    pointer-events: none;
}
.searchBox{
    position: relative;
}
.searchBox .search-field{
    position: absolute;
    bottom: -85px;
    right: 5px;
    height: 50px;
    width: 300px;
    display: flex;
    align-items: center;
    background-color: var(--nav-color);
    padding: 3px;
    border-radius: 6px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.searchToggle.active ~ .search-field{
    bottom: -74px;
    opacity: 1;
    pointer-events: auto;
}
.search-field::before{
    content: '';
    position: absolute;
    right: 14px;
    top: -4px;
    height: 12px;
    width: 12px;
    background-color: var(--nav-color);
    transform: rotate(-45deg);
    z-index: -1;
}
.search-field input{
    height: 100%;
    width: 100%;
    padding: 0 45px 0 15px;
    outline: none;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--search-text);
    background-color: var(--search-bar);
}
body.dark .search-field input{
    color: var(--text-color);
}
.search-field i{
    position: absolute;
    color: var(--nav-color);
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}
body.dark .search-field i{
    color: var(--text-color);
}


/*  */



.podaci{
    padding: 0px 110px;
    padding-top: 27px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    align-items: center;
}

.podatak{
    display: flex;
    flex-direction: column;
    height: 135px;
    width: 200px;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid #d0d0d0cf;
    text-align: center;
}

.podatak a{
    text-decoration: none;
}


body.dark i{
    color: #c3c3c3;
}


.podatak h3{
    font-size: 24.5px;
    color: var(--side-nav);
}

body.dark .podatak h3{
    color: var(--text-color);
}

.podatak p{
    margin-top: 5px;
    color: #3d3d3d;
}

body.dark .podatak p{
    color: var(--text-color);
}


.podatak i{
    width: auto;
    font-size: 35px;
    margin-bottom: 8px;
    color: #3d3d3d;
}

.podatak:hover{
    border-bottom: 3px solid #2082E8;
}


body.dark .podatak h3{
    color: rgb(224, 224, 224);
}

body.dark{
    background-color: #222020;
}

body.dark .podatak p{
    color: rgb(221, 221, 221);
}

body.dark i{
    color: #dbdbdb;
}

body.dark .podatak{
    border-bottom: 3px solid #fdfcfccf;
}

body.dark .podatak:hover{
    border-bottom: 3px solid #2082E8;
}

    
footer {
    background-color: #c9c9c91e;
    color: rgb(43, 41, 41);
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.068);
}

.footer-container {
    max-width: 870px;
    margin: 0 auto;
    padding: 20px;
}

.footer-image {
    width: 120px;
    margin-bottom: 10px;
}

.footer-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 14px;
    color: #555353;
    margin-bottom: 15px;
}

body.dark footer{
    background-color: #13121252;
    color: rgb(202, 202, 202);
}

body.dark .footer-copyright{
    color: #e0e0e0;
}






@media screen and (max-width: 480px) {
    .footer-container {
        padding: 10px;
    }

    .footer-image {
        max-width: 100px;
        margin-bottom: 10px;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-text {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .footer-copyright {
        font-size: 11px;
    }
}
















@media (max-width: 790px) {
    nav .nav-bar .sidebarOpen{
        display: block;
    }
    .menu{
        position: fixed;
        height: 100%;
        width: 320px;
        left: -100%;
        top: 0;
        padding: 20px;
        background-color: var(--side-nav);
        z-index: 100;
        transition: all 0.4s ease;
    }
    nav.active .menu{
        left: -0%;
    }
    nav.active .nav-bar .navLogo a{
        opacity: 0;
        transition: all 0.3s ease;
    }
    .menu .logo-toggle{
        display: block;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo-toggle .siderbarClose{
        color: #e4e4e4;
        font-size: 24px;
        cursor: pointer;
    }
    .nav-bar .nav-links{
        flex-direction: column;
        padding-top: 30px;
    }
    .nav-links li a{
        display: block;
        margin-top: 20px;
        color: var(--text-color);
    }
    .podaci{
        display: flex;
        flex-direction: column;
    }
    .podatak{
        margin-bottom: 10px;
        width: 100%;
        height: 150px;
    }
    .popisi{
        display: flex;
        flex-direction: column;
    }
    .popis{
        margin-bottom: 10px;
        width: 100%;
    }
    .footer-container {
        padding: 15px;
    }

    .footer-image {
        max-width: 120px;
        margin-bottom: 15px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-text {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}










header {
    margin-top: 90px;
    background-color: #2082E8; 
    padding: 20px; 
    text-align: center; 
    color: #ffffff; 
    font-family: Arial, sans-serif; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}


header h1 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 17px;
    }
}

header:hover {
    background-color: #226bb9;
    transition: background-color 0.3s ease;
}


body.dark header{
    background: #19191a;
    color: white;
}