﻿/* ------------------------------------------------------------------
   FOOTER (Slim Frosted)
------------------------------------------------------------------ */
footer.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(33, 37, 41, 0.75);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.25);
    color: #fff;
    z-index: 1030;
    padding: 8px 0;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

footer .footer-links a {
    color: #dee2e6;
    margin-right: 15px;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

    footer .footer-links a:hover {
        color: #fff;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
    }

    footer .footer-links a::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -3px;
        width: 0;
        height: 1px;
        background: #fff;
        transition: all 0.3s ease;
        transform: translateX(-50%);
        opacity: 0;
    }

    footer .footer-links a:hover::after {
        width: 100%;
        opacity: 1;
    }

footer .copyright {
    opacity: 0.85;
    font-size: 0.9rem;
    text-align: right;
}
