/* static/css/footer.css */

.site-footer {
    background-color: #0d0d0d; /* Очень темный, почти черный */
    color: #666;
    padding: 40px 0 20px;
    text-align: center;
    border-top: 1px solid #1f1f1f;
    margin-top: auto;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ff8128 !important; /* Оранжевый при наведении */
    text-decoration: none;
}