/**
 * Footer — sade modern tasarım.
 * Tüm footer CSS kuralları yalnız bu dosyada.
 */

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    margin: 80px 0 0;
    padding: 56px 0 20px;
    font-size: 14px;
    line-height: 1.6;
}

/* Footer altında beyaz strip çıkmasın — html zeminini footer rengine eşle */
html { background: #0f172a; }
html, body { margin-bottom: 0 !important; }
.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Üst blok: brand + nav kolonları ---------- */
.site-footer .footer-main {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-footer .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.site-footer .sl-brand--footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}
.site-footer .sl-brand--footer .sl-brand-text {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}
.site-footer .sl-brand--footer .sl-brand-mark {
    width: 36px;
    height: 36px;
}
.site-footer .footer-brand p {
    color: #94a3b8;
    max-width: 320px;
    margin: 0;
}

/* ---------- Nav kolonları ---------- */
.site-footer .footer-nav-section h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #ffffff;
    margin: 0 0 16px;
}
.site-footer .footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer .footer-nav li {
    margin: 0;
    padding: 0;
}
.site-footer .footer-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease;
}
.site-footer .footer-nav a:hover {
    color: #ffffff;
}

/* ---------- Alt blok ---------- */
.site-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
}
.site-footer .footer-copyright p {
    margin: 0;
    color: #94a3b8;
    font-size: 13px;
}

.site-footer .footer-legal-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer .footer-legal-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: color .2s ease;
}
.site-footer .footer-legal-nav a:hover {
    color: #ffffff;
}

.site-footer .footer-dmca {
    display: inline-flex;
    align-items: center;
}
.site-footer .footer-dmca img {
    height: 24px;
    width: auto;
    opacity: .75;
    transition: opacity .2s ease;
}
.site-footer .footer-dmca:hover img {
    opacity: 1;
}

.site-footer .footer-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.site-footer .footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    color: #cbd5e1;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.site-footer .footer-social .social-icon:hover {
    background: #dc2626;
    color: #ffffff;
    transform: translateY(-2px);
}
.site-footer .footer-social .social-icon svg {
    width: 16px;
    height: 16px;
}

/* ---------- Tablet ---------- */
@media (max-width: 992px) {
    .site-footer .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .site-footer .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ---------- Mobil ---------- */
@media (max-width: 600px) {
    .site-footer {
        padding: 48px 0 20px;
        margin-top: 56px;
    }
    .site-footer .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 32px;
    }
    .site-footer .footer-bottom {
        justify-content: center;
        text-align: center;
        gap: 16px;
    }
    .site-footer .footer-legal-nav ul {
        justify-content: center;
    }
}
