/* Footer Styles */

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--neon-yellow);
    border-top: var(--border);
    padding: 0.5rem 1rem;
    z-index: 9999999;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    max-height: 1.5rem;
    overflow: hidden;
}

.footer:hover .footer-content {
    max-height: 8rem;
}

.footer-credit {
    color: var(--color-black);
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
}

.footer:hover .footer-links {
    opacity: 1;
}

.footer-links a {
    color: var(--color-black);
    text-decoration: underline;
}

.footer-links a {
    border-radius: var(--radius);
}

.footer-links a:hover {
    text-decoration: none;
}

.footer-developer {
    color: var(--color-dark-gray);
    text-align: center;
    opacity: 0;
}

.footer:hover .footer-developer {
    opacity: 1;
}
