/* Footer Styles */

footer {
    background: var(--dark-gray);
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    z-index: 1;
}

footer p {
    color: var(--off-white);
    font-size: 0.9rem;
    margin: 0;
}

footer a {
    color: var(--lightning-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white);
    text-shadow: 0 0 10px var(--glow-blue);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--off-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
