/**
 * Footer Styles
 * Bottom navigation bar with copyright and links
 */

/* Footer */
#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-sizing: border-box;
    color: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

#footer:hover {
    opacity: 1;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #999;
    letter-spacing: 0.5px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-link {
    font-size: 0.9rem;
    color: #a0d0ff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}
