
#footer {
    padding: 1rem;
    background-color: var(--color-background-2);
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    margin: 0 auto 0.75rem;
}

.footer-social-links a {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 2px;
    color: #ccc;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background-color: rgba(240, 98, 146, 0.08);
}

.footer-social-links i {
    font-size: 1.1rem;
}

.footer-legal-toggle {
    display: block;
    background: transparent;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    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;
    width: min(100%, 800px);
    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: 1000px;
    padding: 1rem 0;
}

/* Copyright RZU Informatique */
