/* ═══════════════════════════════════════════
   SafePlate - Footer Styles
   Full footer + Minimal (privacy) footer
   ═══════════════════════════════════════════ */

/* ─── Full Footer ────────────────── */
footer {
    border-top: 1px solid var(--border);
    padding: 64px 24px 48px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.footer-brand-text {
    font-size: 15px;
    font-weight: 700;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--primary); }

.footer-copy {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 32px;
}

.footer-copy a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-copy a:hover { color: var(--primary); }

/* ─── Minimal Footer (privacy page) ─ */
.footer--minimal {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    /* Override the full footer's border-top + padding */
    border-bottom: none;
    padding-bottom: 0;
}

.footer--minimal .footer-logo {
    width: 24px;
    height: 24px;
    border-radius: 5px;
}

.footer--minimal .footer-brand-text {
    font-size: 14px;
    color: var(--text);
}

.footer--minimal p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-home {
    display: inline-block;
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 13px;
    text-decoration: none;
}
.footer-home:hover { color: var(--primary); }
