/* Стили подвала */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-2);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Колонки подвала */
.footer-column h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-light);
}

.footer-about p {
    color: #B0B8C0;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #B0B8C0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 8px;
    color: var(--accent-light);
    font-size: 0.9rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--accent-light);
    margin-right: 10px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.footer-contact a {
    color: #B0B8C0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-light);
}

/* Нижняя часть подвала */
.footer-bottom {
    border-top: 1px solid rgba(176, 184, 192, 0.2);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: #8A949E;
    font-size: 0.9rem;
}

/* Социальные иконки */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
}

/* Адаптивность подвала */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column h3 {
        font-size: 1.2rem;
    }
}