/* Footer Genel Alanı */
.site-footer {
    background-color: #050505;
    border-top: 1px solid rgba(183, 138, 89, 0.2);
    color: #ccc;
    padding-top: 70px;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Sol Logo ve Hakkımızda */
.footer-logo img {
    height: 60px; /* Logo boyutunu buradan ayarlayabilirsin */
    width: auto;
    margin-bottom: 20px;
    display: block;
}
.footer-about p {
    font-size: 0.9rem; line-height: 1.8; color: #888; font-weight: 300;
}

/* Başlıklar */
.site-footer h4 {
    color: #fff; font-family: 'Playfair Display', serif; font-size: 1.2rem;
    letter-spacing: 1px; margin-bottom: 25px; font-weight: 400;
}

/* Orta Hızlı Linkler */
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #888; font-size: 0.9rem; text-decoration: none;
    transition: all 0.3s ease; display: inline-block;
}
.footer-links a:hover { color: #b78a59; transform: translateX(5px); }

/* Sağ İletişim Bilgileri */
.fc-list { list-style: none; padding: 0; margin: 0 0 25px 0; }
.fc-list li {
    display: flex; gap: 15px; align-items: flex-start;
    font-size: 0.9rem; color: #888; line-height: 1.6; margin-bottom: 15px;
}
.fc-list a { color: #888; transition: 0.3s; }
.fc-list a:hover { color: #b78a59; }

/* Premium Sosyal İkonlar */
.social-links { display: flex; gap: 15px; }
.social-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(183, 138, 89, 0.3);
    border-radius: 50%; color: #b78a59;
    transition: all 0.4s ease;
}
.social-icon:hover {
    background-color: #b78a59; color: #fff;
    box-shadow: 0 0 15px rgba(183, 138, 89, 0.6);
    transform: translateY(-3px);
}

/* Alt Telif Hakkı (Copyright) Barı */
.footer-bottom {
    background-color: #000; padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.fb-flex { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: #666; margin: 0; }
.footer-bottom span { color: #b78a59; }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    
    .footer-logo img { margin: 0 auto 20px auto; }
    .fc-list li { justify-content: center; }
    .social-links { justify-content: center; }
    .fb-flex { flex-direction: column; gap: 10px; text-align: center; }
}