/* Core stylesheet — extracted verbatim from themes/technoit/base.html.twig.
   Loaded through theme_assets() for themes that list "footer-default" in theme.json core_assets.
   Contract: docs/site-tasarim-kiti-plani.md §3.6. */
/* ── Footer ── */
.site-footer {
    background: var(--dark);
    color: var(--footer-custom-text, rgba(255,255,255,0.65));
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(var(--footer-col-count, 3), minmax(0, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--footer-custom-text, #fff);
    margin-bottom: 0.75rem;
}
.footer-logo-text span { color: var(--accent); }
.footer-desc { font-size: 0.875rem; line-height: 1.75; max-width: 300px; }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: var(--footer-custom-text, rgba(255,255,255,0.6));
    font-size: 0.813rem;
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.08);
}
.social-icon:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--footer-custom-text, #fff);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link {
    font-size: 0.875rem;
    color: var(--footer-custom-text, rgba(255,255,255,0.6));
    transition: color 0.2s;
}
.footer-link:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.813rem;
    color: var(--footer-custom-text, rgba(255,255,255,0.35));
}
.footer-powered {
    margin-top: 0.4rem;
    font-size: 0.75rem;
    opacity: 0.8;
}
.footer-powered a { color: inherit; text-decoration: none; border-bottom: 1px solid currentColor; }
.footer-powered a:hover { opacity: 1; }
