body {
  font-family: Arial;
  margin: 0;
  background-color: #f5fce8;
}

/* HEADER */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: goldenrod;
  border-radius: 8px;
  padding: 10px;
}

.h1 {
  font-size: 25px;
  text-align: center;
}

/* NAV */
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 12px;
  height: 30px;
  background-color: #dff8ff;
  vertical-align: middle;
}

.link {
  text-decoration: none;
  color: black;
}

.link:hover {
  color: green;
}

.donate-button {
  background: green;
  border: none;
  padding: 6px 15px;
  border-radius: 6px;
  cursor: pointer;
}

.donate-button:hover {
  opacity: 0.7;
  border: solid 1px red;
}

.join-link {
  text-decoration: none;
  color: black;
}

/* IMAGE GRID */
.images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 6px;
  padding: 10px;
}

.photos {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* IMAGE MODAL */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 95%;
  max-height: 95%;
}

.modal img {
  width: auto;
  height: auto;
}

/* PARTNERSHIP BOXES */
.middle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  padding: 10px;
}

.visions {
  border: 1px solid gray;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}

.visions:hover {
  opacity: 0.9;
}

.vision-subheads {
  font-size: 13px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}



/* DONATE BUTTON */
.donate-btn {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 50px;
}


.donate-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #1e7e34, #145c2a);
}


/* MODAL BACKGROUND */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);


  justify-content: center;
  align-items: center;
}


/* SHOW MODAL */
.modal.show {
  display: flex;
}


/* MODAL BOX */
.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}


/* CLOSE BUTTON */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}


/* COPY BUTTON */
.modal-content button {
  margin-top: 10px;
  padding: 10px 15px;
  border: none;
  background: #28a745;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}


/* IMAGE MODAL FIX */
#imageModal img {
  max-width: 90%;
  max-height: 90%;
}





@media(max-width:600px) {
  .h1 {
    font-size: 22px;
  }

  .photos {
    height: 200px;
  }
}