body{
    font-family: "Roboto Slab", serif;
}

.navbar{
    background-color:rgb(233, 233, 233) !important;
}

.upper-nav{
    background-color:rgb(208, 208, 208) !important;
    width:100%;
}
.navbar{
    padding:0 !important;
}

.dropdown-menu {
    border-radius: 10px;
}

.dropdown-item:hover {
    background-color: green;
    color: white;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.nav-link{
    color: green !important;
    transition: 
        color 0.2s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.nav-link:hover{
    color: white !important;
    background-color: green;
    transform: translateY(-3px);
}

section img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
html, body {
    overflow-x: hidden;
}


section img:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.kultura-card img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.kultura-card img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}