/* ===== FOOTER ===== */
.footer {
    background: var(--container-color);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

.footer__container {
    text-align: center;
}

.footer__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer__description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-color);
    color: var(--text-color);
    border-radius: 50%;
    transition: var(--transition);
}

.footer__link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.footer__copy {
    color: var(--text-light);
    font-size: 0.9rem;
}