body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('URA-bG.png'); /* Le chemin vers votre image */
  background-size: cover; /* Couvre toute la page */
  background-attachment: fixed; /* Arrière-plan fixe lors du défilement */
  background-position: center center; /* Centrer l'image horizontalement et verticalement */
  background-repeat: no-repeat; /* Empêche la répétition de l'image */
  color: #333;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay noir avec opacité pour lisibilité */
  z-index: -1; /* Assure que l'overlay est derrière le contenu */
}

/* Style de l'en-tête (header) */
header {
  background-color: rgba(0, 0, 0, 0.7); /* Couleur avec opacité pour le contraste */
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

/* Navigation dans l'en-tête */
nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

nav ul li {
  display: inline-block;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

nav ul li a:hover {
  color: #f0f0f0;
}

/* Section d'accueil (hero) */
#hero {
  text-align: center;
  color: white;
  padding: 150px 20px;
}

#hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #007bff;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* Style pour les sections */
section {
  background-color: rgba(255, 255, 255, 0.85); /* Légère opacité pour la lisibilité */
  padding: 50px 20px;
  margin: 20px auto;
  width: 90%;
  max-width: 1200px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 10px;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 1rem;
}

/* Style responsive pour les petits écrans */
@media (max-width: 768px) {
  #hero {
    padding: 100px 20px;
  }

  #hero h2 {
    font-size: 2rem;
  }

  section {
    width: 95%;
  }

  .member {
    width: 90%;
    margin: 10px auto;
  }
}
