/* footer.css - Global Footer Styles */

.global-footer {
    width: 100%;
    padding: 40px 0 20px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: transparent;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left p {
    font-size: 13px;
    color: #94A3B8; /* Light grey */
    margin: 0;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-nav a {
    font-size: 13px;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #3370FF; /* Theme primary blue */
}

.footer-divider {
    color: #E2E8F0;
    font-size: 12px;
    user-select: none;
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav {
        justify-content: center;
    }
}
