/* -------------------------------------------------------------------------- */
/* FOOTER CSS                                */
/* -------------------------------------------------------------------------- */

/* Genel Footer Kapsayıcısı */
.main-footer {
    background-color: #2c3e50; /* Koyu Mavi/Gri Arkaplan */
    color: #ecf0f1; /* Açık Gri Metin Rengi */
    padding-top: 50px; /* Üstten boşluk */
    font-family: 'Inter', sans-serif;
}

/* İçerik Sarıcısı (3 Kolonlu Yapı) */
.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Her Bir Kolon */
.footer-kolon {
    flex: 1; /* Eşit genişlik dağılımı */
    padding: 0 15px;
    min-width: 150px;
}

/* Logo ve Bilgi Kolonu */
.footer-bilgi {
    flex: 1.5; /* İlk kolonu biraz daha geniş yaptık */
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.footer-logo .logo-yazi {
    font-size: 1.5rem;
    font-weight: 700;
    color: #20b2aa; /* Açık Mavi/Yeşil Vurgu Rengi */
}

.slogan-metin {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

/* Başlıklar */
.kolon-baslik {
    font-size: 1.1rem;
    color: #ffd700; /* Sarı Vurgu Rengi */
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3); /* Başlık altına ince çizgi */
    padding-bottom: 5px;
}

/* Link Listeleri */
.footer-kolon ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-kolon ul li {
    margin-bottom: 10px;
}

.footer-kolon ul li a,
.footer-kolon ul li {
    text-decoration: none;
    color: #bdc3c7;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-kolon ul li a:hover {
    color: #ffd700; /* Hover rengi */
}

.footer-kolon ul li a i,
.footer-kolon ul li i {
    margin-right: 10px;
    color: #20b2aa;
}


/* Telif Hakkı Çubuğu */
.copyright-bar {
    background-color: #243340; /* Footer'dan biraz daha koyu */
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-bar p {
    margin: 0;
    font-size: 0.8rem;
    color: #bdc3c7;
}

/* Gizleme Sınıfları */
.mobile-only { display: none; }
.desktop-only { display: block; }

/* -------------------------------------------------------------------------- */
/* Mobil Uyumlu Tasarım                            */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .footer-content-wrapper {
        flex-direction: column;
        gap: 30px;
        padding-top: 20px;
    }
    
    .footer-kolon {
        padding: 0 10px;
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .footer-bilgi {
        order: 1; /* Mobil görünümde bilgiyi en üste taşı */
    }
    
    .footer-hizli-baglanti {
        order: 2;
    }
    
    .footer-iletisim {
        order: 3;
    }
    
    .footer-kolon ul {
        text-align: left;
        max-width: 250px;
        margin: 0 auto;
    }

    .footer-kolon ul li a,
    .footer-kolon ul li {
        justify-content: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .slogan-metin {
        text-align: center;
        padding: 0 10px;
    }
    
    .mobile-only { 
        display: block; 
        font-size: 0.8rem;
        color: #bdc3c7;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 15px;
    }
    .desktop-only { display: none; }

    /* Mobil Görünümde Telif Hakkını Footer Bilgi Sütununa Taşıdık */
    .copyright-bar {
        display: none;
    }
}
