/* footer.css - GlowVision Site Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 30px;
    text-align: center;
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 24px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copyright {
    color: #808080;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 600px) {
    .site-footer { padding: 14px 16px; }
    .footer-links { gap: 4px 14px; }
}
