/*
 * footer.css - Стили для футера
 */

/* ===== ФУТЕР ===== */
.site-footer__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.site-footer__left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer__copyright {
    font-weight: 500;
    color: #393E46;
    font-size: 15px;
}

.site-footer__email a {
    color: #1EAD82;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 15px;
}

.site-footer__email a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.site-footer__right {
    display: flex;
    justify-content: center;
}

.site-footer__links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.site-footer__link {
    color: #393E46;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    cursor: pointer;
}

.site-footer__link:hover {
    color: #1EAD82;
    text-decoration: none;
}

.site-footer__separator {
    color: rgba(57, 62, 70, 0.4);
}

/* Адаптивность */
@media (max-width: 768px) {
    .site-footer__links {
        gap: 10px;
    }
    
    .site-footer__separator {
        display: none;
    }
    
    .site-footer__links {
        flex-direction: column;
        gap: 10px;
    }
    
    .site-footer__copyright,
    .site-footer__email a {
        font-size: 14px;
    }
}