/* public/footer.css */

/* ---------------------------------------
   Footer Base Styles
---------------------------------------- */
.site-footer {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #444;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    text-align: center;
    margin-top: auto;
}

/* ---------------------------------------
   Dark Mode Overrides
---------------------------------------- */
body.dark-mode .site-footer {
    background-color: #1a1a1a;
    color: #ccc;
    border-top: 1px solid #333;
}

/* ---------------------------------------
   Footer Link Styles
---------------------------------------- */
.footer-link {
    color: inherit;
    text-decoration: underline;
}

.footer-link:hover {
    text-decoration: none;
}

/* ---------------------------------------
   Responsive Styles
---------------------------------------- */
@media (max-width: 768px) {
    .site-footer {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
}



