/* ============================================
   FOOTER — Centered + Consistent Small Font Size
   ============================================ */

.site-footer {
    background-color: var(--color-primary-dark);
    color: white !important;
    padding: 2.5rem 1.5rem 1.75rem;
    font-family: var(--font-body);
    width: 100% !important;
    max-width: 100% !important;
    margin-top:3em !important;
}

/* Title - Keep slightly bigger */
.footer-brand .footer-title {
    font-family: var(--font-elegant);
    font-size: 1.4rem;
    margin: 0 0 0.35rem;
    color: white !important;
    text-align: center;
}

/* Tagline + Links - Same small size as copyright */
.footer-brand .footer-tagline,
.footer-links li,
.footer-bottom {
    font-size: 0.8rem;
    color: white !important;
    text-align: center;
}

/* Container */
.footer-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
}

/* Main content - Stacked and centered */
.footer-brand,
.footer-links {
    margin-bottom: 1.25rem;
    text-align: center;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.35rem;
}

.footer-links a,
.footer-bottom a {
    color: white !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--color-secondary) !important;
}

/* Bottom section */
.footer-bottom {
    border-top: 1px solid var(--color-border-light);
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.footer-legal {
    display: flex;
    gap: 0.75rem;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
}