/* Import de la police Cinzel depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

/* Police générale */
body {
  font-family: 'Cinzel', serif;
  background-color: #FFFFFF;
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  color: #000000;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Liens */
a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #E91E63; /* rose sélection */
}

/* Boutons */
button, .btn, input[type="submit"] {
  background-color: #E91E63;
  color: #FFFFFF;
  font-family: 'Cinzel', serif;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  font-weight: 600;
  transition: background 0.3s ease;
}

button:hover, .btn:hover, input[type="submit"]:hover {
  background-color: #000000;
  color: #FFFFFF;
}

/* Sélection du texte */
::selection {
  background: #E91E63;
  color: #FFFFFF;
}
