/* === Navbar kao na slici === */


.navbar-custom {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
}

.navbar-custom .navbar-brand img {
    max-height: 100px;
    max-width: 200px;
}



.navbar-custom .nav-link {
    color: #fff;
    margin-right: 2rem;
    /* umesto samo desne margine */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.6rem;
    /* veće */
    letter-spacing: 0.5px;
    /* malo više prostora među slovima */
    padding: 0.8rem 0;
    /* više visine */
}

.navbar-custom .nav-link:hover {
    color: #ddd;
}



.dropdown-auswash {
    background-color: rgba(0, 0, 0, 0.3);
    /* Crna providna pozadina */
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    backdrop-filter: blur(4px);
    /* Nežno zamućenje pozadine */
    min-width: 220px;
    animation: fadeDown 0.3s ease-in-out;
}

.dropdown-auswash .dropdown-item {
    color: #dc3545;
    /* Bootstrap danger boja */
    padding: 10px 20px;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-auswash .dropdown-item:hover {
    background-color: #dc3545;
    /* Danger crvena pozadina */
    color: #fff;
    /* Beli tekst na hover */
    border-radius: 0;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Samo za mobilne uređaje */
@media (max-width: 991.98px) {
    .mobile-rounded-menu {
        background-color: rgba(23, 23, 23, 0.85);
        border-radius: 25px;
        margin: 0.5rem auto 1rem auto;
        padding: 1.5rem 1rem;
        width: 90%;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mobile-rounded-menu .nav-item {
        width: 100%;
    }

    .mobile-rounded-menu .nav-link {
        color: #fff;
        font-size: 1.2rem;
        margin: 0.3rem 0;
        font-weight: 600;
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .mobile-rounded-menu .nav-link:hover {
        color: #dc3545;
    }

    .mobile-rounded-menu .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.95);
        border-radius: 10px;
        text-align: center;
        width: 100%;
        padding: 0.5rem 0;
    }

    .mobile-rounded-menu .dropdown-item {
        color: #dc3545;
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }

    .mobile-rounded-menu .dropdown-item:hover {
        background-color: #dc3545;
        color: white;
    }

    .navbar-custom {
        background-color: transparent !important;
        box-shadow: none !important;
    }
}












.about-section {
    background-color: #0d0d0d;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 5px);
    color: #fff;
    height: 100vh;
    /* cela visina ekrana */
    padding: 0;
    /* bootstrap padding ide na container-fluid/col */
}

.about-section h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 700;
    margin-top: 100px;
}

.about-section p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6; }























/* === Linija iznad === */


.footer-section i {
    display: block;
}

.footer-line-wrapper {
    background-color: #0d0d0d;
    /* isto kao footer pozadina */
    display: flex;
    justify-content: center;
}

.footer-line {
    height: 6px;
    width: 80%;
    background-color: #DC3545;
    border-radius: 5px;
    max-width: 1000px;
}

.footer-section {
    background-color: #242323;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 5px);
    color: #fff;

    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0 0px 0;
    /* top 60px, right/left 0, bottom 20px   crvena boja:#E60012*/
}

.text-custom-red {
    color: #DC3545;
}

.copyright-overlay-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;

}

.overlay-bg {
    position: absolute;
    inset: 0;
    background-color: rgba(49, 48, 48, 0.2);
    /* providna siva */
    z-index: 0;
}









.go-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-align: center;
    z-index: 999;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

.go-top img {
    width: 100px;
    /* VEĆA slika */
    transition: transform 0.3s ease;
}

.go-top:hover img {
    transform: scale(1.1);
}

.go-top-text {
    font-size: 0.55rem;
    /* MANJI tekst */
    letter-spacing: 0.5px;
    margin-top: 1px;
    opacity: 0.8;
    font-weight: 700;
}