﻿/* ======== FOOTER STILOVI ======== */

footer {
    background-color: #1e1e1e;
    color: #ccc;
    padding: 1.2rem 0;
    text-align: center;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer a {
    color: #0d6efd;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon-link:hover {
    transform: scale(1.1);
    opacity: 0.9;
    text-decoration: none;
    /* Ukloni underline za ikonice */
}

@media (min-width: 1200px) {
    footer {
        font-size: 1rem;
    }
}

/* Footer alignment and mobile styles */
.footer-copyright {
    margin-bottom: 0.5rem;
}

footer>div:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

footer>div:last-child a {
    display: inline-flex;
    align-items: center;
}

/* Mobile: wrap rights text to new line */
@media (max-width: 767.98px) {
    footer {
        padding: 1rem 0.5rem;
        font-size: 0.85rem;
    }

    .rights-text {
        display: block;
    }

    footer>div:last-child {
        gap: 0.4rem;
    }
}