/* =================================
    footer.css
================================= */

.site-footer {
    background-color: #1e1e1e; /* Skoro crna pozadina */
    color: #cccccc; /* Svjetlija siva za tekst */
    padding-top: 70px;
    font-size: 15px;
}

.footer-widgets {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 70px;
}

.footer-widget-area {
    flex-basis: 22%;
    min-width: 250px;
}

.footer-widget-area .widget-title {
    color: #ffffff;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.footer-widget-area .widget-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 20px;
    width: 5px;
    background-color: #FFC107;
    border-radius: 2px;
}

.footer-widget-area p {
    line-height: 1.8;
}

.footer-widget-area ul {
    margin: 0;
    padding: 0px 10px;
    list-style: none;
}

.footer-widget-area li {
    padding-bottom: 5px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    color: #FFC107;
    font-size: 16px;
    width: 30px;
    text-align: center;
    margin-right: 10px;
}

.contact-info a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-social-icons {
    margin-top: 25px;
}

.footer-social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-color: #333333;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: #FFC107;
    transform: translateY(-3px);
}

.google-maps-container iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 0px;
}

.footer-bottom-bar {
    background-color: #000000;
    padding: 10px 0;
    text-align: center;
}

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