:root {
    --bs-primary: #F9E25B;
    --bg-dark: #121214;
    --txt: #FFFFFF;
    --txt-dark: #121214;
}

/* === Base === */
html, body {
    background: var(--bg-dark);
    color: var(--txt);
    font-family: Arial Black, Impact, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}

/* === Sections === */
.section-dark {
    background-color: var(--bg-dark);
    color: var(--txt);
    padding: 3rem 0;
}

/* === Titres === */
.section-title {
    font-weight: 900;
    border-bottom: 4px solid var(--bs-primary);
    padding-bottom: 0.3rem;
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
}

.subtitle {
    color: var(--bs-primary);
    font-weight: 600;
    text-align: center;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

h2, h3, h4 {
    font-weight: 900;
}

/* === Slogans === */
.slogan-general {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--bs-primary);
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
}

.slogan-sub {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--txt);
    text-align: center;
}

/* === Intro / article === */
.intro, article {
    max-width: 800px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.intro p,
article p {
    margin-bottom: 1.2rem;
}

/* === Liste des revendications === */
.claims-list {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    list-style: none;
}

.claims-list li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.claims-list li::before {
    content: "✊";
    position: absolute;
    left: 0;
    color: var(--bs-primary);
    font-weight: bold;
}

/* === Village image === */
.village-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* === Boutons jaunes === */
.btn-primary {
    background-color: var(--bs-primary);
    border: 0;
    color: var(--txt-dark);
    font-weight: 900;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #e7d558;
    color: var(--txt-dark);
}

/* === Documents / cartes jaunes === */
#docs .card {
    background: var(--bs-primary);
    color: var(--txt-dark);
    border: 0;
    box-shadow: 0 8px 0 #000;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

#docs .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 0 #000;
}

#docs .card .card-header {
    background: var(--bs-primary);
    color: var(--txt-dark);
    font-weight: 900;
    text-align: center;
}

.card-img-top {
    max-height: 250px;
    width: 100%;
    object-fit: contain;
    background: #fff;
    padding: 10px;
}

/* === Accessibilité liens === */
a {
    color: var(--bs-primary);
}

a:hover {
    color: #ffe676;
}

/* === Image A4 (événement) === */
.text-center img {
    max-width: 600px;
    width: 100%;
    height: auto;
    aspect-ratio: 210/297;
    object-fit: contain;
    border: 2px solid #000;
}
