/* Footer styles */

.footer {
    margin-top: auto;
    padding: 2rem 1rem 1rem 1rem;
    border-top: 1px solid rgba(128, 128, 128, 0.3);
    background-color: var(--bg-color);
    color: var(--text-color);
    text-align: center;
}

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

.footer-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-link {
    color: var(--text-color);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.copyright {
    padding: 2rem;
    text-align: center;
    background-color: var(--bg-color);
    border-top: 1px solid rgba(128, 128, 128, 0.2);
    color: var(--text-color);
    font-size: 1rem;
}
