/* Footer styles */
.main-footer {
    background: var(--dark-primary);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 0 2rem;
}

.footer-content {
    text-align: center;
}

.footer-navigation {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin-bottom: 2rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem;
}

.footer-link:hover {
    color: var(--primary-gold);
}

.footer-text, .footer-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-red);
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
