@font-face {
  font-family: "Poppins";

  src: url("../font/Poppins/Poppins-Bold.ttf") format("truetype");

  font-weight: normal;

  font-style: normal;
}

@font-face {
  font-family: "Avenir";

  src: url("../font/Avenir.ttc") format("truetype");

  font-weight: normal;

  font-style: normal;
}

body {
  background-color: var(--bg-light);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
:root {
  --blue: #002798;
  --orange: #ff7f00;
  --bg-light: #f1f8ff;
}

#rappel {
  /* Garde tes mesures mais ajoute le responsive */
  width: 90%;
  max-width: 800px;
  margin: 20px auto;
  border: 3px solid var(--orange); /* Ta couleur */
  border-radius: 10px;
  padding: 20px;

  /* Flexbox magique */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#rappel img {
  width: 100px; /* Ta taille initiale */
  height: auto;
}

.hor {
  flex: 1;
}

#rappel p {
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: var(--blue); /* Ou ta variable de texte */
}

#rappel button {
  /* Ton bouton exact avec correction de l'alignement */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 15px 25px;
  background-color: var(--orange);
  color: var(--bg-light);
  font-family: "Poppins", sans-serif;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
}

#rappel button:hover {
  filter: brightness(1.1); /* Brille un peu au survol sans changer la couleur */
}

/* --- LE FIX POUR MOBILE --- */
@media (max-width: 768px) {
  #rappel {
    flex-direction: column; /* Aligne verticalement */
    text-align: center; /* Centre le texte pour le look mobile */
    width: 95%;
  }

  #rappel img {
    margin-right: 0;
    margin-bottom: 10px;
  }

  #rappel button {
    width: 100%; /* Le bouton prend toute la place sur téléphone */
  }
}
span {
  color: var(--orange);
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 100px;
  color: var(--blue);
  align-items: center;
  text-align: center;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 20px;
}

p {
  font-size: 20px;
  font-family: "Avenir", sans-serif;
}
#camps {
  display: flex;
  margin: 10px;
  flex-wrap: wrap;
}

.camp {
  display: flex;
  flex-direction: column;
  margin: 25px;
  border: 3px solid var(--blue);
  border-radius: 10px;
  padding: 10px;
}

#info {
  height: 900px;
}

#campsbb {
}
