body {
    background-size: cover;
    background-color: #788f46; /* si jamais l'image ne charge pas */
}

/* main/presentation styles (utilitaires d'accessibilité déplacés vers header.css) */

.main-presentation {
	margin-bottom: 40px;
}

/* Pour que le texte reste lisible sur un fond texturé */
.main-globale {
    background-color: rgba(255, 255, 255, 0.85); /* léger voile blanc */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    margin: 20px 10vw;
}

/* Harmonisation des titres */
h1, h3 {
    color: #5A381E; /* couleur bois foncé */
    font-family: 'Poppins', sans-serif; /* plus moderne */
}

h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 0.8rem 0;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.6rem;
    }

    .main-globale {
        margin: 20px 20px;
    }

    p {
        text-justify: auto;
    }
}

button {
	margin-top: 10px;
	background: #0071e3;
	color: white;
	cursor: pointer;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 7px;
	padding-bottom: 7px;
	border: 1px solid #0071e3;
	border-radius: 400px;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.more-links {
	Display: flex;
	margin-top: 20px;
}

.more-links a {
	background: none;
	color: white;
	cursor: pointer;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
    padding: 7px 12px;
    border: 1px solid #0071e3;
	border-radius: 400px;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

/* Petits ajustements boutons pour matcher le style bois */
button, .more-links a {
    background: #8B5E3C; /* couleur bois */
    border-color: #8B5E3C;
}

button:hover, .more-links a:hover {
    background: #5A381E;
    border-color: #5A381E;
}

p {
	color: #6e6e73;
	font-family: "SF Pro Display","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
	font-weight: 600;
}

/* Règles globales pour blocs affichables/masquables (utilisées par toggleTexte) */
.dropdown-child {
    display: none;
    margin-top: 0.5rem;
}
.dropdown-child.show {
    display: block;
}

/* Utilitaires réutilisables */
.text-center {
    text-align: center; /* centre le texte à l'intérieur de l'élément */
}

.center-block {
    display: block;      /* utile pour images ou éléments inline-block */
    margin-left: auto;
    margin-right: auto;   /* centre horizontalement le bloc */
}
