/* Fond général vert */
body {
    background-color: #98d8a7;
}

/* Correction du header */
.bg-bluedark1 {
    background-color: #0e43d3 !important; /* bleu foncé */
    color: #ffffff !important;
}

/* S'assurer que le texte reste bien blanc */
.jumbotron.bg-bluedark1 h1,
.jumbotron.bg-bluedark1 p {
    color: #ffffff;
}
.jumbotron {
    margin-bottom: 0;
}



.bg-bluedark { background-color: #0e43d3; }
.bg-rouge { background-color: blueviolet; }
.bg-blanc { color: #ffffff; }
.conseils { font-family: Arial, sans-serif; font-weight: bold; }
.citations-section {
    background-color: rgb(226, 43, 180); /* fond violet */
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding: 20px;
    border-radius: 10px;
    color: #ffffff; /* texte blanc par défaut */
}

.citations-section h1 {
    color: #ffffff;
    margin-bottom: 20px;
}

.citations-section blockquote {
    background-color: rgba(255, 255, 255, 0.1); /* léger fond pour chaque citation */
    padding: 10px 15px;
    margin-bottom: 15px;
    border-left: 5px solid #ffffff;
    border-radius: 5px;
}

.citations-section .citation-author {
    font-weight: bold;
    display: block;
    margin-top: 5px;
    color: #ffffff;
}
/* ========================= */
/* 🌼 SECTION CONSEILS */
/* ========================= */
.section-conseils {
    background-color: #fff9c4; /* jaune pastel doux */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ========================= */
/* 📚 SECTION CULTURE */
/* ========================= */

/* Style général des cartes */
#accordion .card {
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

/* En-têtes */
#accordion .card-header {
    font-weight: bold;
    font-size: 18px;
}

/* 🎨 Couleurs pastel différentes */

/* Histoire */
#accordion .card:nth-child(1) .card-header {
    background-color: #d0ebff; /* bleu pastel */
}

/* Économie */
#accordion .card:nth-child(2) .card-header {
    background-color: #d3f9d8; /* vert pastel */
}

/* Alimentation */
#accordion .card:nth-child(3) .card-header {
    background-color: #dd21b4; /* orange pastel */
}

/* Sport */
#accordion .card:nth-child(4) .card-header {
    background-color: #04ddb9; /* violet pastel */
}

/* Loisirs */
#accordion .card:nth-child(5) .card-header {
    background-color: #9332ac; /* rose pastel */
}

/* Corps des rubriques */
#accordion .card-body {
    background-color: #ffffff;
}
/* ========================= */
/* 📚 COULEURS DES LISTES (CARD-BODY) */
/* ========================= */

/* Histoire → bleu pastel */
#accordion .card:nth-child(1) .card-body {
    background-color: #d0ebff;
}

/* Économie → vert pastel (même que le bouton) */
#accordion .card:nth-child(2) .card-body {
    background-color: #d3f9d8; /* vert pastel */
}

/* Alimentation → jaune pastel */
#accordion .card:nth-child(3) .card-body {
    background-color:  #dd21b4;
}

/* Sport → orange pastel */
#accordion .card:nth-child(4) .card-body {
    background-color: #04ddb9;
}

/* Loisirs → violet pastel */
#accordion .card:nth-child(5) .card-body {
    background-color: #9332ac;
}
/* ========================= */
/* 🔵 TEXTE BLEU FONCÉ */
/* ========================= */

/* Histoire */
#accordion .card:nth-child(1) .card-body,
#accordion .card:nth-child(1) .card-body li {
    color: #0e43d3; /* blue-dark */
}

/* Économie & Société */
#accordion .card:nth-child(2) .card-body,
#accordion .card:nth-child(2) .card-body li {
    color: #0e43d3; /* blue-dark */
}

/* ========================= */
/* 🔵 TEXTE BLEU FONCÉ - SPORT */
/* ========================= */

#accordion .card:nth-child(4) .card-body,
#accordion .card:nth-child(4) .card-body li {
    color: #0e43d3; /* blue-dark */
}
/* ========================= */
/* 🌟 TITRE JAUNE */
/* ========================= */

.section-culture h1 {
    color: #ffc107; /* jaune (Bootstrap warning) */
    font-weight: bold;
    text-align: center;
}