/* Footer Styles */
footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.footer-links a {
    color: var(--text-color-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.footer-links a:hover {
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    transition: width 0.3s ease;
    opacity: 0;
}

.footer-links a:hover:after {
    width: 100%;
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg,
            rgba(252, 244, 201, 0.1) 0%,
            rgba(254, 227, 226, 0.1) 20%,
            rgba(251, 205, 242, 0.1) 40%,
            rgba(232, 190, 250, 0.1) 60%,
            rgba(171, 191, 255, 0.1) 80%,
            rgba(187, 243, 192, 0.1) 100%);
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(232, 190, 250, 0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icons a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icons a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 16px rgba(232, 190, 250, 0.4);
    -webkit-text-fill-color: var(--text-color-invert);
    background-clip: border-box;
    border-color: transparent;
}

.social-icons a:hover:before {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-color-light);
    font-size: 0.875rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .social-icons {
        justify-content: center;
    }
}