* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5fce8;
  color: #333;
  line-height: 1.6;
}


/* HEADER */

.header {
  background: goldenrod;
  padding: 20px;
  text-align: center;
}

.logo-area img {
  height: 80px;
  border-radius: 50%;
}

.logo-area h1 {
  margin-top: 10px;
  font-size: 28px;
}


/* NAVIGATION */

.nav {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.nav a:hover,
.githu:hover {
  color: green;
}

.donate-btn {
  background: green;
  border-radius: 6px;
  border: none;
  width: 120px;
  height: 40px;
}

.donate-btn:hover {
  opacity: 0.7;
  border: solid 1px red;
}


/* ANNOUNCEMENT */

.announcement {
  background: #dff8ff;
  padding: 12px;
  text-align: center;
  font-weight: bold;
}


/* CONTACT BAR */

.contact-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 15px;
  background: #eee;
}

.contact-bar a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

/* CONTACT SECTION */
.contact-section {
  text-align: center;
  padding: 50px 20px;
  background: #f4f4f4;
}

.contact-section h2 {
  margin-bottom: 20px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-buttons a {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 30px;
  color: white;
}

.email-btn {
  background: #007BFF;
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #ff9800;
}

/* CONTACT SECTION */
.contact-section {
  text-align: center;
  padding: 50px 20px;
  background: #f4f4f4;
}

.contact-section h2 {
  margin-bottom: 25px;
  font-size: 28px;
}

/* BUTTONS */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-buttons a {
  text-decoration: none;
  padding: 14px 25px;
  border-radius: 30px;
  font-size: 16px;
  color: white;
  transition: 0.3s;
}

/* INDIVIDUAL BUTTON COLORS */
.email-btn {
  background: goldenrod;
}

.email-btn:hover {
  background: #cfa10b;
}

.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  background: #1ebe5b;
}

.call-btn {
  background: #4CAF50;
}

/* green */
.call-btn:hover {
  background: #3e8e41;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-buttons a {
    width: 80%;
    text-align: center;
  }
}


/* HERO */

.hero {
  padding: 50px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.join-btn {
  display: inline-block;
  margin-top: 20px;
  background: #95bbdb;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
}

.join-btn:hover {
  text-decoration: none;
  border: solid 1px red;
}




/* VISION */

.vision {
  padding: 50px 20px;
  text-align: center;
}

.vision-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.vision-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.vision-box img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 10px;
}


/* SCRIPTURE */

.scripture {
  padding: 40px;
  text-align: center;
}


/* LOCATION */

.location {
  padding: 40px;
  text-align: center;
}

.githu {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}


/* FOOTER */

.footer {
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

/* 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;
}


/* MOBILE */

@media(max-width:768px) {

  .logo-area h1 {
    font-size: 22px;
  }

  .hero h2 {
    font-size: 26px;
  }

}