/*
 * WingsNFT — Shared FRONT (public) header + footer styles
 * ============================================================
 * Loaded by every public page (homepage + legal + products)
 * so the navbar and footer look identical everywhere.
 * Relies on the gold theme CSS variables defined per page.
 * ============================================================
 */

 *, button, input, textarea {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── NAVBAR ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 70px; background: rgba(8,8,15,.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Cinzel', serif; font-size: 20px; font-weight: 700; color: var(--gold); }
.nav-logo-img { width: 34px; height: 34px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-ghost { background: none; border: 1px solid var(--border); color: var(--text); padding: 8px 20px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold { background: linear-gradient(135deg,var(--gold),var(--gold-lt)); color: #08080f; padding: 8px 20px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; border: none; transition: opacity .2s; display: inline-flex; align-items: center; }
.btn-gold:hover { opacity: .88; }
.nav-hamburger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* ── FOOTER ── */
.site-footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 56px 5% 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; max-width: 1200px; margin: 0 auto 36px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--muted); font-size: 13px; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { color: var(--muted); font-size: 13px; line-height: 1.7; margin-bottom: 11px; }
.f-logo { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 700; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.f-logo img { width: 34px; height: 34px; border-radius: 8px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 13px; margin-bottom: 11px; line-height: 1.6; }
.footer-contact-row i { color: var(--gold); width: 16px; margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 15px; transition: all .2s; margin: 0; }
.footer-social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { color: var(--muted); font-size: 12.5px; line-height: 1.7; }
.footer-disclaimer { font-size: 11.5px; color: #555; max-width: 760px; margin: 12px auto 0; line-height: 1.6; }

@media (max-width: 860px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .nav-links { display: none; }
}
@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; gap: 26px; text-align: left; }
    .nav-actions { display: none; }
    .nav-hamburger { display: inline-flex; align-items: center; }
}
