/**
 * Cathedral DHO - App Footer Component
 * Minimal legal footer for application pages
 */

/* App Footer - for use inside main content areas */
.app-footer {
    padding: 24px 0;
    margin-top: auto;
    border-top: 1px solid var(--border-color, #e5e5e5);
    text-align: center;
}

.app-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 24px;
    font-size: 13px;
    color: var(--text-tertiary, #999);
}

.app-footer-content a {
    color: var(--text-secondary, #666);
    text-decoration: none;
    transition: color 0.2s;
}

.app-footer-content a:hover {
    color: var(--text-primary, #1a1a1a);
}

.app-footer-divider {
    color: var(--border-color, #e5e5e5);
}

/* Auth Footer - for login, signup, and similar pages */
.auth-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: rgba(248, 248, 246, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border-color, #e5e5e5);
    z-index: 100;
}

.auth-footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-tertiary, #999);
}

.auth-footer-content a {
    color: var(--text-secondary, #666);
    text-decoration: none;
    transition: color 0.2s;
}

.auth-footer-content a:hover {
    color: var(--text-primary, #1a1a1a);
}

/* Responsive */
@media (max-width: 600px) {
    .app-footer-content,
    .auth-footer-content {
        flex-direction: column;
        gap: 8px;
    }

    .app-footer-divider {
        display: none;
    }
}
