/**
 * Footer Component Styles
 * Public site footer with links and copyright
 */

.public-footer {
    margin-top: 4rem;
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-easter-egg {
    font-family: 'Courier New', monospace !important;
    color: #0f0 !important;
    opacity: 0.3;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5) !important;
}

.footer-easter-egg:hover {
    opacity: 1 !important;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8) !important;
}
