/* static/css/partials/footer.css */

.footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.footer .brand-footer {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.footer .love {
    display: inline-block;
    animation: heartBeat 1.8s infinite;
    color: var(--secondary);
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer .developer {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.2rem 1rem;
    background: rgba(139, 92, 246, 0.02);
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.02);
    font-size: 0.7rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.footer .developer:hover {
    background: rgba(139, 92, 246, 0.04);
    border-color: rgba(139, 92, 246, 0.04);
}

.footer .developer i {
    color: var(--primary-light);
}

.footer .developer a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer .developer a:hover {
    color: white;
}

[data-theme="light"] .footer .developer a:hover {
    color: var(--primary);
}