/* ========================================
   Footer Styles
   ======================================== */

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 0 0.5rem 0;
    text-align: center;
    color: white;
    position: relative;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: auto;
}

.footer-copyright {
    font-size: 0.85rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 1.5vh;
}

.footer-copyright > div {
    margin: 0;
    padding: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.7vh;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
    .footer-links {
        display: none;
    }

    .footer-copyright {
        margin-bottom: 0;
        font-size: 0.75rem;
    }

    footer {
        padding: 0.75rem 0 0.4rem 0;
        min-height: 50px;
    }
}

