/*
 * Footer Components — footer.css
 *
 * @package Necox
 * @since   1.8.0
 */

/* ── Footer Genel ── */
.necox-footer { margin-top: 40px; }
.necox-footer a { color: inherit; text-decoration: none; }
.necox-footer a:hover { opacity: 0.8; }

/* ── Widget Alani ── */
.necox-footer__widgets { padding: 40px 0; }
.necox-footer__widgets-grid { display: grid; gap: 30px; }
.necox-footer__col .widget { background: transparent; padding: 0; margin-bottom: 20px; }
.necox-footer__col .widget-title { font-size: 15px; font-weight: 600; color: var(--necox-footer-text); border-bottom: 2px solid rgba(255,255,255,0.15); padding-bottom: 10px; margin-bottom: 14px; }

/* ── Alt Satir ── */
.necox-footer__bottom { padding: 16px 0; }
.necox-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.necox-footer__bottom-left,
.necox-footer__bottom-center,
.necox-footer__bottom-right { display: flex; align-items: center; gap: 12px; }
.necox-footer__bottom-center { justify-content: center; flex: 1; }
.necox-footer__bottom-right { margin-left: auto; }

/* Footer Nav */
.necox-hf-footer-nav { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; }
.necox-hf-footer-nav a { font-size: 13px; color: inherit; }
.necox-hf-footer-nav a:hover { color: #ffffff; }

/* ── Footer Logo ── */
.necox-footer .necox-hf-logo__dark { display: none; }
html.dark-mode .necox-footer .necox-hf-logo__light { display: none; }
html.dark-mode .necox-footer .necox-hf-logo__dark { display: inline-block; }

/* Transparent + Glass footer — koyu arka plan, acik logo (dark) goster */
.necox-footer.is-transparent .necox-hf-logo__light,
.necox-footer.is-glass .necox-hf-logo__light { display: none; }
.necox-footer.is-transparent .necox-hf-logo__dark,
.necox-footer.is-glass .necox-hf-logo__dark { display: inline-block; }

/* Transparent/Glass + dark mode — ters cevir */
html.dark-mode .necox-footer.is-transparent .necox-hf-logo__light,
html.dark-mode .necox-footer.is-glass .necox-hf-logo__light { display: inline-block; }
html.dark-mode .necox-footer.is-transparent .necox-hf-logo__dark,
html.dark-mode .necox-footer.is-glass .necox-hf-logo__dark { display: none; }

/* Koyu arka planli footer — acik logo goster */
.necox-footer.is-dark-bg .necox-hf-logo__light { display: none; }
.necox-footer.is-dark-bg .necox-hf-logo__dark { display: inline-block; }
/* Koyu arka plan + dark mode — ters cevir */
html.dark-mode .necox-footer.is-dark-bg .necox-hf-logo__light { display: inline-block; }
html.dark-mode .necox-footer.is-dark-bg .necox-hf-logo__dark { display: none; }

/* Copyright */
.necox-hf-copyright {
    font-size: var(--necox-copyright-size, 13px);
    font-family: var(--necox-copyright-font, inherit);
    font-weight: var(--necox-copyright-weight, 400);
    color: var(--necox-copyright-color, inherit);
}
.necox-hf-copyright a { color: var(--necox-copyright-link, inherit); text-decoration: none; }
.necox-hf-copyright a:hover { color: var(--necox-copyright-link-hover, var(--necox-primary, #00a591)); }

/* Sayfa basi butonu */
.necox-to-top { position: fixed; bottom: 24px; right: 24px; width: 40px; height: 40px; background: var(--necox-primary, var(--necox-primary)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; text-decoration: none; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 99; }
.necox-to-top.is-visible { opacity: 1; visibility: visible; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .necox-footer__widgets-grid { grid-template-columns: 1fr 1fr !important; }
    .necox-footer__bottom-inner { flex-direction: column; text-align: center; }
    .necox-footer__bottom-right { margin-left: 0; }
    .necox-hf-footer-nav { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .necox-footer__widgets-grid { grid-template-columns: 1fr !important; }
}
