/* ================================ FOOTER ================================ */

footer {
    background: linear-gradient(135deg, #0a0e27, #0f1724);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.35);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}

footer article {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

footer section {
    margin: 0.25rem;
    font-size: 0.85rem;
}

footer p {
    color: #d0d0d0;
    margin: 0.25rem 0;
    font-size: 0.85rem;
}

footer a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px #d4af37;
}