/* --- FOOTER.CSS (GÜNCELLENMİŞ) --- */

/* --- FOOTER GENEL --- */
.main-footer {
    background-color: var(--bg-card); /* Tema uyumluluğu için değişken */
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
    margin-top: 5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Kolon Başlıkları ve Marka */
.footer-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    display: inline-block;
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Link Listeleri */
.footer-links, .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px); /* Biraz daha belirgin kayma */
}

/* İletişim Listesi */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px; /* İkonu metinle hizala */
    flex-shrink: 0;
}

.contact-list a {
    color: var(--text-muted);
    transition: color 0.2s ease;
    text-decoration: none;
}

.contact-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Sosyal Medya İkonları */
.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    font-size: 1.1rem;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.2);
}

/* Alt Footer (Telif Hakkı) */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- MOBİL RESPONSIVE --- */
@media (max-width: 768px) {
    .main-footer {
        padding-top: 3rem;
        margin-top: 3rem;
        text-align: center;
    }

    .footer-content {
        gap: 2.5rem;
    }

    .footer-brand {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-text {
        margin-left: auto;
        margin-right: auto;
    }

    /* İletişim listesini de ortala */
    .contact-list li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
    
    /* Mobilde kayma efektini kapat, sadece renk değişsin */
    .footer-links a:hover {
        transform: none; 
    }
}