/* ============================================
   STYLE-PANNEAU.CSS — Pages panneaux P1, P4
   ============================================ */

/* TITRE PANNEAU */
.panneau-titre {
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--gold);
  padding-left: 1.2rem;
}

.panneau-titre h2 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.sous-titre {
  color: var(--cream);
  font-style: italic;
  font-size: 0.95rem;
  font-family: sans-serif;
}

/* AUDIO */
.audio-bloc {
  background: var(--forest);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
}

.audio-label {
  color: var(--gold);
  font-family: sans-serif;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

audio {
  width: 100%;
  margin-top: 0.4rem;
}

/* CONTENU TEXTE */
.contenu-texte {
  margin: 1.2rem 0;
  line-height: 1.8;
}

.contenu-texte p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ESPECES */
.especes-bloc {
  background: var(--forest);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
}

.especes-bloc h3 {
  color: var(--gold);
  font-family: sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.especes-bloc ul {
  padding-left: 1.2rem;
  font-size: 0.9rem;
  line-height: 2;
}

.especes-bloc li {
  color: var(--cream);
}

.especes-bloc em {
  color: var(--muted);
  font-size: 0.85rem;
}

/* MISSION SCOLAIRE */
.mission-bloc {
  background: var(--forest);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
}

.mission-bloc h3 {
  color: var(--gold);
  font-family: sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.mission-bloc ol {
  padding-left: 1.4rem;
  font-size: 0.9rem;
  line-height: 2.2;
  color: var(--cream);
}

/* QUIZ */
.quiz-bloc {
  background: #0d2318;
  border: 1px solid var(--mint);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
}

.quiz-bloc h3 {
  color: var(--gold);
  font-family: sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.quiz-bloc p {
  color: var(--cream);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.indice {
  color: var(--mint) !important;
  font-style: italic;
}

.btn-quiz {
  background: var(--mint);
  color: var(--dark);
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-family: sans-serif;
  font-weight: bold;
  cursor: pointer;
  margin-top: 0.8rem;
  min-height: 48px;
}

.btn-quiz:hover {
  background: var(--gold);
}

.quiz-question {
  margin-bottom: 1.2rem;
}

.quiz-question p {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.btn-reponse {
  display: block;
  width: 100%;
  background: var(--forest);
  color: var(--cream);
  border: 1px solid var(--mint);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-family: sans-serif;
  cursor: pointer;
  text-align: left;
  min-height: 48px;
  transition: background 0.15s;
}

.btn-reponse:hover:not(:disabled) {
  background: var(--mint);
  color: var(--dark);
}

/* NAVIGATION ENTRE PANNEAUX */
.nav-panneaux {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--forest);
}

.nav-panneaux a {
  color: var(--gold);
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.9rem;
}

.nav-panneaux a:hover {
  color: var(--cream);
}

/* BOUTON CHANGER PROFIL — position page panneau */
.btn-changer {
  display: block;
  margin-bottom: 1.5rem;
}
/* CHIFFRE CLÉ */
.chiffre-cle {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--forest);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 1.2rem;
  margin: 1.2rem 0;
  text-align: center;
}

.chiffre {
  color: var(--gold);
  font-size: 2.5rem;
  font-family: sans-serif;
  font-weight: bold;
  line-height: 1;
}

.chiffre-label {
  color: var(--muted);
  font-size: 0.85rem;
  font-family: sans-serif;
  margin-top: 0.4rem;
}