/* Footer Stil Tanımlamaları */
/* Footer Tasarımı - Son Yorumlar Bölümü Güncellendi */
.site-footer {
    background-color: #0b1d2e; /* Koyu mavi - temaya uyumlu */
    color: #b4c1d0;
    position: relative;
    margin-top: 60px;
    margin-bottom: 0; /* Alt boşluğu kaldır */
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #0088cc, #00b4db, #0088cc);
}

.footer-top {
    padding: 60px 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    margin-bottom: 20px;
    position: relative;
}

.widget-title h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
    display: inline-block;
    position: relative;
    margin: 0;
}

.widget-title h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background: #0088cc;
}

.about-us p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #b4c1d0;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #0088cc;
    transform: translateY(-3px);
}

/* Ortak liste stileri */
.quick-links li, 
.footer-categories li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.quick-links li::before,
.footer-categories li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #0088cc;
    border-radius: 50%;
}

.quick-links a, 
.footer-categories a {
    color: #b4c1d0;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.quick-links a:hover, 
.footer-categories a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Son Yorumlar Bölümü - Kullanıcı adları kaldırıldı */
.recent-comments {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-comments li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    margin-bottom: 8px;
    display: block; /* Göster */
}

.recent-comments li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-post {
    color: #b4c1d0;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-decoration: none;
}

.comment-post:hover {
    color: #0088cc;
}

/* Yorum yapan kişi adı için yeni stil */
.comment-author {
    font-size: 12px;
    color: #0088cc;
    display: block;
    margin-bottom: 3px;
}

/* Yorum tarihi için stil */
.comment-date {
    font-size: 11px;
    color: #8a9eb0;
    display: block;
    margin-top: 2px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    margin-bottom: 0; /* Alt boşluğu kaldır */
}

.copyright {
    color: #8a9eb0;
    font-size: 14px;
}

.copyright a {
    color: #b4c1d0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.copyright a:hover {
    color: #ffffff;
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        padding: 40px 0 20px;
    }
}
