/* AFAT - Agence Foncière pour l'Aménagement des Terrains */

:root {
    --afat-primary: #876a28;
    --afat-primary-dark: #5e4a1a;
    --afat-primary-light: #fefce8;
}

/* Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--afat-primary) #f1f1f1;
}
*::-webkit-scrollbar { width: 6px; }
*::-webkit-scrollbar-track { background: #f1f1f1; }
*::-webkit-scrollbar-thumb { background-color: var(--afat-primary); border-radius: 3px; }

/* Transitions globales */
a, button { transition: all 0.2s ease; }

/* Focus visible */
:focus-visible { outline: 2px solid var(--afat-primary); outline-offset: 2px; }

/* Prose content (conditions) */
.prose p { margin-bottom: 0.75rem; line-height: 1.7; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.75rem; }
.prose li { margin-bottom: 0.25rem; }

/* Print */
@media print {
    header, footer, nav, .no-print { display: none !important; }
    body { background: white; }
}
