/* ai_futer.css */

.ai-footer-wrapper {
    background-color: #333; /* Profesionalna tamna siva */
    color: #eee;
    padding: 40px 0;
    margin-top: 50px;
    font-family: 'PT Sans', sans-serif;
    width: 100%;
    clear: both;
}

.ai-footer-container {
    max-width: 1200px; /* Standardna širina za tvoj sajt */
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
    gap: 40px;
}

.ai-footer-col {
    flex: 1;
}

.ai-footer-title {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--bg-mk); /* MK Crvena linija */
    padding-bottom: 8px;
    display: inline-block;
}

.ai-footer-text, 
.ai-footer-list {
    font-size: 14px;
    line-height: 1.8;
}

.ai-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Stilovi za linkove u futeru */
.ai-footer-list li a, 
.ai-footer-text a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.ai-footer-list li a:hover, 
.ai-footer-text a:hover {
    color: var(--bg-mk); /* Prelazak u crvenu na hover */
}

.ai-footer-copy {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
}

/* Responzivnost za mobilne uređaje */
@media (max-width: 800px) {
    .ai-footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .ai-footer-title {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}