/* RESET DE BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #1a2a6c;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 960px;
  margin: auto;
  padding: 20px;
}

/* HEADER */
header {
  background: #1a2a6c;
  color: white;
  padding: 15px 0;
}
header .brand {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.nav a:hover {
  text-decoration: underline;
}

/* CARDS & FORMULAIRES */
.card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
}

h1, h2, h3 {
  color: #1a2a6c;
}
.label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.input, textarea, select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.input:focus, textarea:focus {
  outline: none;
  border-color: #ffd700;
}

/* BOUTONS */
.btn {
  background-color: #ffd700;
  color: #1a2a6c;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn:hover {
  background-color: #e6c200;
}

/* MESSAGES & ALERTES */
.alert {
  padding: 10px;
  background-color: #ff6b6b;
  color: white;
  border-radius: 8px;
  margin: 10px 0;
}
.success {
  background-color: #a8d5a2;
  color: #1a2a6c;
}

/* AUDIO PLAYER */
audio {
  width: 100%;
  margin-top: 10px;
}

/* FOOTER (si ajouté) */
footer {
  background: #1a2a6c;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 30px;
}
