/* Footer Styles */
footer {
    background-color: var(--color-footer-background);
    color: var(--color-text);
    padding: 10px 0;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000; /* Make sure footer stays on top */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 5px 0;
    display: flex;
    gap: 10px;
}

.footer-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: normal;
    font-size: 0.9em;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-container p {
    margin: 5px 0;
    font-size: 0.9em;
}

/* On mobile, make the footer static (not fixed) */
@media (max-width: 768px) {
    footer {
        position: static;
        bottom: auto;
        left: auto;
        z-index: auto;
    }
}
