/**
 * Footer Styles
 * Used with footer.html and footer_loader.js
 */

.footer {
    background: #212121;
    color: white;
    padding: 48px 24px;
    text-align: center;
}

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

.footer-link {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 1;
}

/* Legal links section (Privacy & Terms) */
.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-link-legal {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link-legal:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Footer info section */
.footer-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-info a,
.footer-link-brand {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-info a:hover,
.footer-link-brand:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 32px 16px;
    }

    .footer-links {
        gap: 16px;
    }

    .footer-legal {
        gap: 12px;
    }

    .footer-link-legal {
        font-size: 13px;
    }
}
