/* ✅ Layout.css : Header, footer et structure principale */
header {
    background-color: #007bff;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 1.2rem 0;
    background-color: #007bff;
    color: white;
    margin-top: 2.5rem;
}

footer .legal-footer-links {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-top: 0.35rem;
}

footer .legal-footer-links a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

footer .legal-footer-links a:hover,
footer .legal-footer-links a:focus-visible {
    color: #ffdc32;
}
