/* footer.css - Footer component
   Used by ALL pages on WebsiteBuilderReport.com */

/* ---- SITE DISCLOSURE (subtle, above footer) ---- */
.site-disclosure {
    padding: 1.75rem 2rem 1.25rem;
    max-width: var(--max-width);
    margin: 0 auto;
}
.site-disclosure-inner {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.85;
}
.site-disclosure-inner a {
    color: var(--text-secondary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.site-disclosure-inner a:hover { color: var(--text); }

/* ===== FOOTER (dark editorial endplate) ===== */
.site-footer {
    background: #0a0a0a;
    color: #e5e7eb;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border);
}
.site-footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* --- Grid --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand column */
.footer-brand { max-width: 420px; }
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
}
.footer-logo-icon { width: 36px; height: 28px; flex-shrink: 0; }
.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}
.footer-logo-text .w2 { color: #60a5fa; }
.footer-tagline {
    font-size: 0.92rem;
    color: rgba(229,231,235,0.72);
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

/* Author card inside footer brand */
.footer-author {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1rem 1.1rem;
}
.footer-author-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}
.footer-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #1e3a8a);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-author-meta { min-width: 0; }
.footer-author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1px;
}
.footer-author-name a { color: #fff; text-decoration: none; }
.footer-author-name a:hover { color: #60a5fa; }
.footer-author-role {
    font-size: 0.74rem;
    color: rgba(229,231,235,0.55);
    line-height: 1.3;
}
.footer-author-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.76rem;
    color: rgba(229,231,235,0.6);
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}
.footer-author-stats strong {
    color: #fff;
    font-weight: 700;
}
.footer-author-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(229,231,235,0.8);
    text-decoration: none;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    transition: background 0.15s, color 0.15s;
}
.footer-author-link:hover {
    background: rgba(96,165,250,0.15);
    color: #60a5fa;
}

/* Link columns */
.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.footer-col a {
    display: block;
    color: rgba(229,231,235,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.65rem;
    transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-col-all {
    margin-top: 0.35rem;
    color: #60a5fa !important;
    font-weight: 600;
}
.footer-col-all:hover { color: #93c5fd !important; }

/* Bottom strip */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(229,231,235,0.55);
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-copy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.footer-copy .sep { color: rgba(229,231,235,0.3); }
.footer-bottom-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    color: rgba(229,231,235,0.55);
    text-decoration: none;
    transition: color 0.15s;
}
.footer-bottom-links a:hover { color: #fff; }

/* Responsive */
@media (max-width: 1000px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 600px) {
    .site-footer { padding: 3rem 1.25rem 1.75rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .footer-author-stats { gap: 0.75rem; }
}
