/* --------- Style général --------- */
body {
  background-color: #6a0dad; /* fond violet pour toute la page */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: hsl(0, 0%, 99%); /* texte noir par défaut */
}

/* --------- Conteneur principal --------- */
.container {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  font-weight: bold;
}

/* Paragraphes (très important pour toi) */
p {
  color: #ffffff !important; /* Texte blanc visible sur fond violet foncé */
  line-height: 1.6;
}


/* Liens dans les paragraphes */
a {
  color: #3407ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Boutons */
.btn {
  font-weight: bold;
  border-radius: 8px;
}

/* Bouton clair */
.btn-light {
  background-color: #049bf3;
  color: #e9e3e3;
  border: 1px solid #3605fb;
}
.btn-light:hover {
  background-color: #2c03fa;
}

/* Bouton jaune */
.btn-warning {
  background-color: #4907ff;
  color: #fcf7f7;
}
.btn-warning:hover {
  background-color: #4300e0;
}

/* /*Section blanche spéciale (ex: How to receive...) */
.white-section {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: #343a40;
  color: #ffffff;
  font-size: 0.9rem;
}

/* Images */
img.rounded-circle {
  max-width: 100%;
  height: auto;
}

/* Spécifiquement pour les textes dans la white-section */
.white-section h1,
.white-section h2,
.white-section h3,
.white-section h4,
.white-section h5,
.white-section h6 {
  color: #000000; 
}

/* */
.white-section p {
  color: #000000 !important;  
}


/* Responsive */
@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  h1 {
    font-size: 1.8rem;
  }
}

