/* legal.css */

/* Structure générale */
body {
    font-family: 'Geologica', sans-serif;
    background: #FFFFFF;
    color: #0B180B;
    line-height: 1.6;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* En-tête */
header {
    border-bottom: 1px solid #E0E0E0;
    padding: 20px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo img {
    height: 40px;
    width: auto;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}
nav a {
    text-decoration: none;
    font-weight: 600;
    color: #0B180B;
}
nav a:hover {
    text-decoration: underline;
}

/* Contenu principal */
main.legal-page {
    padding: 40px 0;
}
h1 {
    font-family: 'Krona One', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
}
section p {
    margin-bottom: 16px;
}

/* Pied de page */
footer {
    border-top: 1px solid #E0E0E0;
    padding: 20px 0;
    margin-top: 40px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-col {
    min-width: 150px;
    margin-bottom: 20px;
}
.footer-logo {
    font-family: 'Dongle', sans-serif;
    font-size: 28px;
    color: #0B180B;
    margin-bottom: 10px;
}
footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer ul li {
    margin-bottom: 6px;
}
footer ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #0B180B;
    opacity: 0.8;
}
footer ul li a:hover {
    opacity: 1;
}
