/* ----- Général ----- */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #f7f8f5;
  color: #333;
  line-height: 1.7;
}

/* ----- En-tête ----- */
header {
  background-color: #004d40;
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
}

header h1 {
  margin: 0;
  font-size: 28px;
}

.btn-retour {
  position: absolute;
  left: 20px;
  top: 20px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  background-color: #00796b;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-retour:hover {
  background-color: #00695c;
}

/* ----- Slogan ----- */
body > p {
  text-align: center;
  font-style: italic;
  font-size: 18px;
  margin: 20px 10px;
  color: #555;
}

/* ----- Section principale ----- */
main.fiche-divinite {
  max-width: 900px;
  background: white;
  margin: 30px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* ----- Image de la divinité ----- */
.divinite-image {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ----- Article : texte explicatif ----- */
article {
  font-size: 17px;
  color: #333;
  text-align: justify;
}

/* ----- Titres dans l’article ----- */
article h2, article h3 {
  color: #00695c;
  margin-top: 30px;
  border-left: 4px solid #009688;
  padding-left: 10px;
}

/* ----- Paragraphes dans l’article ----- */
article p {
  margin-bottom: 18px;
}

/* ----- Responsive ----- */
@media (max-width: 600px) {
  main.fiche-divinite {
    padding: 20px;
    margin: 15px;
  }

  header h1 {
    font-size: 22px;
  }

  .btn-retour {
    font-size: 14px;
    padding: 6px 10px;
    top: 15px;
    left: 10px;
  }
}

.fâ-card {
  background-color: #fff5e0;
  padding: 20px;
  border-left: 6px solid #7c3b0e;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(124, 59, 14, 0.2);
}

.fâ-card button {
  margin-top: 15px;
  background-color: #7c3b0e;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.fâ-card button:hover {
  background-color: #5e2a09;                               }                                                          
footer, p:last-child {                                       margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #666;
}
