/*Codé par Melissa PALACIOS*/

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #EAEAEA; /* Gris clair */
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.header {
  background-color: #1A1A2E; /* Bleu foncé */
  color: #FFD700; /* Jaune vif */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.logo img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

h1 {
  margin: 0;
}

.welcome {
  text-align: center;
  padding: 50px 0;
}

.welcome .img_maraudes img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

a:hoover {
  text-decoration: underline;
}

a.faire-un-don {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700;
  color: #1A1A2E;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

a.faire-un-don:hoover {
  background-color: #FFB000;
  transform: scale(1.1);  
}

.img_maraudes img,
.img_orphelins img,
.img_famille img {
  width: 33%;
  height: auto;
}

.actions {
  text-align: center;
  margin: 2.5%;
}

.maraudes,
.operations,
.dons {
  margin-left: 3%;
  margin-right: 3%;
}

.actions h2 {
  color: #1A1A2E; /* Bleu foncé */
  text-align: center;
}

.MOD_textes {
  display: block;
  justify-content: space-between;
}

.MOD_images {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.MOD_images img {
  width: 33%;
  height: auto;
}

.MOD_images img:last-child {
  margin-right: 0;
}

.MOD_images .img_maraudes img,
.MOD_images .img_orphelins img,
.MOD_images .img_famille img {
  width: 100%;
}

.maraudes,
.operations,
.dons {
  width: 100;
  align-items: center;
  justify-content: center;
}

.maraudes h3,
.operations h3,
.dons h3 {
    color: #1A1A2E; /* Bleu foncé */
}

.maraudes p,
.operations p,
.dons p {
    color: #1A1A2E; /* Bleu foncé */
}

.objectif-image {
  display: flex;
  flex-direction: row;
  margin-bottom: 7.5%;
  justify-content: center;
  align-items: center;
}

.objectif {
  width: 45%;
  text-align: center;
  padding: 5%;
}

.objectif p {
  width: 90%
}      

.image_objectif img {
  width: 90%;
  margin-left: auto;
}

.a_propos {
  background-color: #FFD700; /* Jaune vif */
  text-align: center;
  padding: 1.5%;
}

.objectif_CTA {
  text-align: center;
  padding: 50px 0;
}

.vision-mission {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.vision,
.mission {
  display: inline-block;
  width: 40%;
  text-align: center;
}

.vision h2,
.mission h2 {
  color: #1A1A2E; /* Bleu foncé */
}

.oeuvres {
  display: none;
  text-align: center;
  padding: 50px 0;
}

.images_oeuvres img {
  width: 30%;
  margin: 10px;
}

.contact {
  background-color: #1A1A2E; /* Bleu foncé */
  color: #EAEAEA; /* Gris clair */
  margin-top: 7.5%;
  padding: 2%;
  display: flex;
  justify-content: space-around;
}

.contact_text,
.don_CTA {
  flex: 1;
}

.contact-CTA,
.formulaire {
  width: 50%;
}

.contact h3 {
  color: #EAEAEA; /* Gris clair */
}

.formulaire {
  margin-left: 2%;
  margin-right: 2%;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  font-family: 'Quicksand', sans-serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #1A1A2E;
}

button {
  background-color: #FFD700; /* Jaune vif */
  color: #1A1A2E; /* Bleu foncé */
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
}

button:hover {
  background-color: #FFB000; /* Légère variation pour le survol */
}

textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  font-family: 'Quicksand', sans-serif;
}

.footer {
  background-color: #1A1A2E; /* Bleu foncé */
  color: #EAEAEA; /* Gris clair */
  text-align: center;
  justify-content: center;
  padding: 20px;
}

.footer img {
  width: 30px;
}

/* Media queries pour les écrans de taille moyenne */
@media screen and (max-width: 768px) {
  
  .welcome {
    padding: 10px;
  }
  
  .welcome img {
    max-width: 100%;
    height: auto;
  }
  
  .objectif {
    width: 90%;
    padding: 0 5%;
    margin-bottom: 5%;
  }

  .objectif-image {
    flex-direction: column;
  }

  .objectif p,
  .image_objectif img {
    padding: 0 5%;
  }
  
  .vision-mission {
    margin: 4%;
    flex-direction: column;
    align-items: center;
  }
  
  .objectif_CTA {
    padding: 0 5%;
  }
  
  .contact-CTA,
  .formulaire {
    width: 75%;
  }
  
  .don_CTA {
    margin-bottom: 5%;
  }
  
  .formulaire form {
    max-width: 97%;
  }

}

/* Media queries pour les écrans de petite taille */
@media screen and (max-width: 576px) {
 
  .header h1 {
    font-size: 1.5rem;
  }
  
  .welcome {
    padding: 10px;
  }
  .welcome img {
    max-width: 90%;
    height: auto;
  }
  
  .objectif {
    width: 90%;
    padding: 0 5%;
    margin-bottom: 5%;
  }
  .a_propos {
    padding: 30px;
  }

  .actions {
    padding: 5%;  
  }
  
  .vision,
  .mission {
    width: 100%;
    margin-bottom: 5%;
  }
  
  .objectif_CTA {
    padding: 0 5%;
  }
  
  .contact-CTA,
  .formulaire {
    width: 75%;
  }
  
  .contact,
  .don_CTA {
    flex-direction: column;
    align-items: center;
  }
  
  .don_CTA {
    margin-bottom: 3%;
  }
  
  .formulaire {
    margin: 1em;
  }
  
  .footer img {
    margin: 10px;
  }
  
  .don_CTA {
    margin-bottom: 3%;
  }

  .footer img {
    margin: 10px;
  }

}    margin: 10px;
  }

}bottom: 3%;
  }

  .footer img {
    margin: 10px;
  }

}  }

  .footer img {
    margin: 10px;
  }

} }

  .footer img {
    margin: 10px;
  }

}

  .footer img {
    margin: 10px;
  }

}3%;
  }

  .footer img {
    margin: 10px;
  }

}
  }

  .footer img {
    margin: 10px;
  }

}TA {
    margin-bottom: 3%;
  }

  .footer img {
    margin: 10px;
  }

}
}bottom: 3%;
  }

  .footer img {
    margin: 10px;
  }

}
  }

  .footer img {
    margin: 10px;
  }

}   margin: 10px;
  }

}  margin-bottom: 3%;
  }

  .footer img {
    margin: 10px;
  }

}    margin-bottom: 3%;
  }

  .footer img {
    margin: 10px;
  }

} .footer img {
    margin: 10px;
  }

}
    margin-bottom: 3%;
  }

  .footer img {
    margin: 10px;
  }

} margin: 10px;
  }

}  max-width: 95%;
  }

  .footer img {
    margin: 10px;
  }

}
n: 10px;
  }

}
argin: 10px;
  }

}
   max-width: 95%;
  }

  .footer img {
    margin: 10px;
  }

}
95%;
  }

  .footer img {
    margin: 10px;
  }

}
}
{
    margin: 10px;
  }

}
;
  }

}
er img {
    margin: 10px;
  }

}
