/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: rgba(138, 43, 226, 0.08);
    backdrop-filter: blur(10px);
    color: #4a148c;
    padding: 2rem;
    width: 100%;
    font-size: 0.9rem;
    border-top: 1px solid rgba(138, 43, 226, 0.15);
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: start;
}

.footer-social-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5B2C91;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(138, 43, 226, 0.3));
}

.social-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-center {
    text-align: center;
    justify-self: center;
}

.footer-center p {
    margin: 0;
    font-weight: 500;
    color: #4a148c;
}

.footer-right {
    text-align: right;
    justify-self: end;
}

.footer-right p {
    margin: 0;
    font-weight: 500;
    color: #4a148c;
}

.developer-link {
    color: #5B2C91;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.developer-link:hover {
    color: #8B3A9C;
    border-bottom: 2px solid #8B3A9C;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        justify-self: center;
    }

    .footer-center,
    .footer-right {
        justify-self: center;
        text-align: center;
    }
}