html, body {
    height: 100%;
}

.page-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1; /* raste da popuni prostor */
}

@media (max-width: 991px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    .copyright {
        flex-direction: column;
        align-items: center;
    }
}
.navbar-toggler {
    border: none;
    outline: none;
}
.navbar-toggler .icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s;
}

.navbar-toggler.active .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler.active .icon-bar:nth-child(2) {
    opacity: 0;
}
.navbar-toggler.active .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* footer  */
.footer {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.footer-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.europen-logo {
    top: 50px; /* podesite po potrebi */
    left: 50%;
    transform: translateX(-50%);
}

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

/* Footer bottom */
.footer-bottom {
    padding: 10px 0;
    color: #24408F;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    position: relative;
    z-index: 2;
}

/* Responsivnost */
.europen-logo {
    position: absolute;
    top: 50px; /* ili koliko ti treba vertikalno */
    left: 30%; /* pomeri levo/desno po potrebi */
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .europen-logo {
        top: 0px;
        left: 40%; /* na mobilnom centriraj više ako je potrebno */
        transform: translateX(-50%);
    }
}
