/* Footer Styles */
footer {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-text {
    color: #94a3b8;
    transition: all 0.3s ease;
}

.footer-text:hover {
    color: #fbbf24;
}

.footer-link {
    color: #fbbf24;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #f59e0b;
    transform: translateY(-1px);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-icon {
    color: #fbbf24;
    transition: all 0.3s ease;
}

.footer-icon:hover {
    color: #f59e0b;
    transform: scale(1.1);
}

/* Footer responsive */
@media (max-width: 768px) {
    footer {
        padding: 1.5rem 0;
        /* Ensure footer is always visible on mobile */
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .footer-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 1rem 0;
        /* Ensure footer is always visible on mobile */
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .footer-text {
        font-size: 0.8rem;
    }
}
