/* Police personnalisée (utilise une police Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Playfair+Display:wght@700&display=swap');

/* Réinitialisation et styles de base */
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f9;
}

/* En-tête et menu */
header {
  background-color: #2c3e50;
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s;
}

nav a:hover {
  color: #e74c3c;
}

/* Contenu principal */
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #2c3e50;
}

h1 {
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 0.5rem;
}

/* Pied de page */
footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Lecteur audio */
audio {
  width: 100%;
  margin: 1rem 0;
}

/* Liens */
a {
  color: #e74c3c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
