/* footer.css - Footer styles extracted from inline <style> block */

.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 25px rgba(102, 126, 234, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer .nav-link {
    color: rgba(255,255,255,0.85) !important;
    padding: 0.7rem 1.2rem !important;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.footer .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.footer .nav-link:hover::before {
    left: 100%;
}

.footer .nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 2rem;
    margin-top: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer .nav-item {
        width: auto;
        text-align: center;
    }
}
