/* ===== BODY ===== */
body { 
  margin: 0; 
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

/* Fond fixe sur toutes les pages */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/pdp.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #d5ceced2;
  z-index: -1;
}

/* ===== BANDEROLE ===== */
.banderole {
  background-color: pink;
  padding: 10px 0;
}

.flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 10px;
}

.banderole a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

.souligne {
  text-decoration: underline;
}

.banderole img {
  width: 60px;
  height: 70px;
  object-fit: cover;
}

/* ===== MAIN ===== */
main {
  background-color: rgba(229, 143, 189, 0.57);
  margin: 10px;
  padding: 20px;
  border-radius: 20px;
}

.intro {
  text-align: center;
  font-size: 18px;
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 20px;
  background-color: transparent;
  border-radius: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.tout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
  background-color: rgba(143, 137, 140, 0.144);
  padding: 20px;
  border-radius: 20px;
  text-align: center;
}

.container {
  width: 180px;
  height: 180px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.coucou img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.description {
  max-width: 300px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .flex {
    flex-direction: column;
    gap: 10px;
  }

  footer {
    padding: 40px 10px;
  }

  .tout { 
    flex-direction: column;
    gap: 20px;
  }
}