/* GENERAL */

body {
  font-family: Arial;
  margin: 0;
  background: #f5fce8;
}


/* HEADER */

.header {
  background: goldenrod;
  text-align: center;
  padding: 25px;
  font-size: 8px;
}


/* NAVIGATION */

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 15px;
  background: #dff8ff;
}

.link {
  text-decoration: none;
  color: black;
}

.link:hover {
  color: green;
}


/* DONATE BUTTON */

.donate-btn {
  background: green;
  border: none;
  padding: 6px 15px;
  border-radius: 6px;
  cursor: pointer;
}

.donate-btn:hover {
  opacity: 0.7;
  border: solid 1px red;
}

.join-link {
  text-decoration: none;
  color: black;
}


/* IMAGE GALLERY */

.images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  padding: 10px;
}

.photos {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
}


/* VISION SECTION */

.middle {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 25px;
}

.vision-box {
  padding: 20px;
  border-radius: 8px;
  max-width: 350px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.vision-box h2 {
  color: rgb(245, 94, 94);
}


/* FOOTER */

.footer {
  text-align: center;
  padding: 20px;
}

/* MODAL BACKGROUND */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

/* MODAL BOX */
.modal-content {
  background: white;
  margin: 15% auto;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

/* CLOSE BUTTON */
.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

/* BUTTON STYLE */
.modal-content button {
  margin-top: 10px;
  padding: 10px 15px;
  border: none;
  background: green;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 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;
}