/**
 * Site Footer Styles
 * Location: /public_html/assets/css/footer.css
 */

.site-footer {
    background: rgba(10, 10, 26, 0.95);
    border-top: 1px solid rgba(102, 126, 234, 0.5);
    padding: 25px 20px;
    margin-top: 60px;
    text-align: center;
    width: 100%;
    position: relative;
    clear: both;
}

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

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    font-size: 0.95em;
}

.footer-links a {
    color: #c7d2fe;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #667eea;
    text-decoration: underline;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}