/* footer.css - Footer styles */

.main-footer {
    margin-top: auto;
    padding: 3rem 1rem 2rem;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
}

.footer-separator {
    color: var(--glass-border);
    font-size: 0.8rem;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-credits {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-org-link {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-org-link:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px currentColor;
}

/* Mobile adjustments */

/* Page-specific footer styling */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
