/* ═══════════════════════════════════════════════════════════════════
   INSERT — legal.css
   Page : /legal.php
   ═══════════════════════════════════════════════════════════════════ */

/* ── Conteneur principal ── */
.legal-main {
    padding: 3rem 1.5rem 5rem;
    max-width: 860px;
}

/* ── Navigation ancres ── */
.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--couleur-bordure, #e0e0e0);
}

.legal-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--couleur-primaire, #2d6a4f);
    text-decoration: none;
}

.legal-nav a:hover {
    text-decoration: underline;
}

/* ── Sections ── */
.legal-section {
    margin-bottom: 4rem;
    scroll-margin-top: 80px; /* compense la hauteur du header fixe */
}

.legal-titre {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--couleur-titre, #1a1a2e);
    margin-bottom: 0.25rem;
}

.legal-maj {
    font-size: 0.8rem;
    color: var(--couleur-texte-leger, #888);
    margin-bottom: 1.5rem;
}

.legal-section h2 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--couleur-titre, #1a1a2e);
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.legal-section p,
.legal-section ul {
    font-size: 0.925rem;
    line-height: 1.7;
    color: var(--couleur-texte, #333);
    margin-bottom: 0.75rem;
}

.legal-section ul {
    padding-left: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.35rem;
}

.legal-section a {
    color: var(--couleur-primaire, #2d6a4f);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* ── Tableau tarifs ── */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.25rem;
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    text-align: left;
    padding: 0.6rem 1rem;
    border: 1px solid var(--couleur-bordure, #e0e0e0);
}

.legal-table th {
    background: var(--couleur-fond-leger, #f5f5f5);
    font-weight: 600;
    color: var(--couleur-titre, #1a1a2e);
}

.legal-table tr:nth-child(even) td {
    background: var(--couleur-fond-zebre, #fafafa);
}

/* ── Lien mailto contact ── */
.legal-mailto {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--couleur-primaire, #2d6a4f);
    margin: 0.5rem 0 1rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .legal-main {
        padding: 2rem 1rem 4rem;
    }

    .legal-titre {
        font-size: 1.3rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }
}
