/* =====================================================
    FOOTER
===================================================== */
#footer {
    padding: 1rem;
    background-color: var(--color-background-2);
}

.footer-legal-toggle {
    padding: 0.5rem 0;
    cursor: pointer;
    color: #ccc;
    font-size: 0.9em;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    width: fit-content;
}

.footer-legal-toggle:hover {
    color: white;
}

.footer-legal {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    text-align: left;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-legal p {
    margin: 0.5rem 0;
    font-size: 0.85em;
    line-height: 1.4;
    color: #ccc;
}

.footer-legal.active {
    max-height: 500px;
    padding: 1rem 0;
}
