/* css/footer.css */

.site-footer {
    width: 100%;
    margin-top: 60px;
    padding: 50px 40px 40px;
    border-top: 1px solid var(--border); /* Sadece en üstteki ana ayrım çizgisi kalsın */
    background-color: var(--bg-content);
    display: flex;
    flex-direction: column;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px; /* Alttaki metinle mesafeyi buradan ayarlarız */
}

/* Footer Logo */
.footer-logo-text {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
}

.footer-logo-text span {
    color: var(--accent);
}

/* Sosyal Medya */
.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: var(--bg-input);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
    border: 1px solid var(--border);
}

.social-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Alt Yazı Alanı (Artık çizgisiz, daha ferah) */
.footer-text {
    max-width: 1000px;
    font-size: 12px;
    color: #5b606a;
    line-height: 1.8;
}

.footer-text b {
    color: var(--text-muted);
}

.footer-copyright {
    margin-top: 15px;
    font-size: 11px;
    color: #3b414d;
}