.navbar{
    box-shadow:0 4px 6px rgba(0, 0, 0, 0.1);
    padding-left: 200px;  
    padding-right: 200px;
    opacity: 1;
    background-color: #ffffff;
}
.prijava{
    background-color: #f79525;
    border-radius: 50px;
}
.prijava:hover{
    background-color: #ffb157;
}
.nav-item:hover{
    background-color: #d3d3d3;
    border-radius: 50px;
}
.search-bar-container {
    margin-left: 200px;
    margin-right: 200px;
    margin-top: 150px;
    position: relative;
    /* background-image: url('https://via.placeholder.com/1600x400'); */
    background:linear-gradient(45deg,#f79525,#cacaca);
    background-size: cover;
    background-position: center;
    padding: 130px 150px; /* Večji padding */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Rahla senca */
    border-radius: 20px;
}
.search-bar {
    width: 60%; 
    padding: 20px; 
    font-size: 1.2rem; 
    border-radius: 10px; 
    border: none;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15); /* Dodatna senca */
    border-radius: 100px;
}
.search-bar::placeholder {
    color: #666; /* Barva za placeholder tekst */
}
.search-title {
    position: absolute;
    top: 40px; /* Postavi besedilo nad search bar */
    font-size: 2rem; /* Velikost pisave */
    color: #333; /* Barva besedila */
    text-align: center;
    width: 100%; /* Sredinsko poravna besedilo */
}


/* Okenca Styling */
.clickable-box {
    background-color: #333; /* Črna barva za okence */
    color: white; /* Bel tekst */
    border-radius: 10px;
    padding: 100px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
    height: 65vh;
}

/* Hover animacija */
.clickable-box:hover {
    transform: scale(1.05); /* Rahlo povečanje */
    background-color: #f79525; /* Sprememba na zeleno */
}

/* Postavitev velikih okenc */
.box-container {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
}
.clickable-box img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    
}

/* Manjša okenca */
.scroll-box-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    margin-top: 20px;
    
}
.scroll-box {
    flex: 0 0 auto; /* Prepreči raztezanje okenc */
    background-color: #444; /* Temno siva barva */
    color: white;
    width: 200px;
    height: 200px;
    margin: 10px;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    width: 220px;
}
.scroll-box img {
    width: 100px; /* Velikost slike/ikone */
    height: 100px;
    margin-bottom: 10px;
    transition: transform 0.5s ease-in-out;
}

/* Hover animacija za manjša okenca */
.scroll-box:hover {
    transform: scale(1.1) translateY(-5px); /* Povečanje in rahlo dvig */
    background-color: #f79525; /* Sprememba na zeleno */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2); /* Senca */
}

/* Leva in desna puščica */
.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: silver;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.scroll-button:hover {
    background-color: #f79525; 
} 
.left-button {
    left: -20px;
}
.right-button {
    right: -20px;
}
/* Footer Styling */
footer {
    background-color: #333;
    color: white;
}
footer a {
    color: #FFD700;
    text-decoration: none;
}
footer a:hover {
    color: #4CAF50; /* Change link color on hover */
}
footer h5 {
    margin-bottom: 15px;
}