/*--Site Footer - Moderna 4-kolona struktura-----------------------*/

.site-footer {
    background: #f8f8f8;
    border-top: 2px solid #e0e0e0;
    margin-top: 80px;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/*--Footer Column---------------------------------------------------*/
.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000022;
    margin: 0 0 20px 0;
}

/* Column 1: Logo i opis */
.footer-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.footer-desc {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e28413;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #c66f0f;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(226, 132, 19, 0.3);
}

/* Column 2: Kontakt */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666666;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: #e28413;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Column 3: Brzi linkovi */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666666;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #e28413;
    padding-left: 5px;
}

/* Column 4: Mapa */
.footer-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.footer-map iframe {
    display: block;
    width: 100%;
}

/*--Footer Bottom (Copyright)---------------------------------------*/
.footer-bottom {
    background: #000022;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
}

/*--Responsive------------------------------------------------------*/
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-column:nth-child(4) {
        grid-column: 1 / -1;
    }

    .footer-map iframe {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column:nth-child(4) {
        grid-column: auto;
    }

    .footer-logo {
        max-width: 180px;
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-map iframe {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 0 20px;
    }

    .footer-logo {
        max-width: 75px;
    }

    .footer-desc {
        font-size: 13px;
    }

    .footer-contact li,
    .footer-links a {
        font-size: 13px;
    }

    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}
