/* Layout Styles for MoneyTalkie Website */

/* Accessibility Improvements */
.toc a, 
.background-alt a,
[class*="background-alt"] a,
.bg-alt a,
div[style*="background-color: var(--background-alt)"] a {
    color: var(--primary-dark);
}

/* Footer Styles */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 1rem;
    /* Using typography classes from generated_typography.css */
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--background);
    text-decoration: none;
    transition: color 0.3s ease;
    /* No need to specify font-family as it's inherited from body */
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: white;
    /* Using typography classes from generated_typography.css */
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
    }
}
