/* Подвал */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4.footer-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.footer-section h4.footer-title i {
    font-size: 1.2rem;
    color: #f4d03f;
}

.footer-description {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #d4af37;
    color: #0f0f0f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.social-link i {
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid rgba(51, 51, 51, 0.5);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #999999;
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #d4af37;
    margin: 0 0.3rem;
}

/* Адаптивные стили для подвала */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer {
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }

    .footer-section h4.footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-links {
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link i {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .footer-content {
        gap: 1rem;
    }

    .footer-section h4.footer-title {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-description {
        font-size: 0.85rem;
    }
}
