/* Unified footer positioning and theming */
footer, .footer {
    width: 100%;
    text-align: center;
    padding: 4px 24px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    margin-top: 0;
    font-family: 'Libre Baskerville', serif;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

footer a, .footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-left: 16px;
}

footer a:hover, .footer a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.footer .footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer .footer-left {
    display: flex;
    align-items: center;
}

.footer .footer-left p {
    margin: 0;
    display: flex;
    align-items: center;
}

.footer .footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer, .footer {
        padding: 4px 12px;
        font-size: 0.75rem;
        position: fixed;
        z-index: 100;
    }
    
    .footer .footer-container {
        flex-direction: column;
        gap: 2px;
    }
}
