/* Footer Component Styles */

.site-footer {
    padding: 2rem 1rem;
    margin-top: 3rem;
    background: transparent;
    border-top: 1px solid var(--overlay-white-10);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-nav,
.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal {
    font-size: 0.8rem;
}

.footer-nav a,
.footer-legal a {
    color: var(--text-secondary-color);
    text-decoration: none;
    transition: color var(--transition-slow);
    white-space: nowrap;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-separator {
    color: var(--text-secondary-color);
    opacity: 0.5;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-secondary-color);
    margin: 0;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        gap: 1rem;
    }
    
    .footer-nav,
    .footer-legal {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 1.5rem 1rem;
    }
    
    .footer-nav {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .footer-legal {
        font-size: 0.75rem;
        gap: 0.5rem;
    }
    
    .footer-separator {
        font-size: 0.7rem;
    }
    
    .footer-copyright {
        font-size: 0.7rem;
    }
}
