body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}
 .slim-slideshow {
  position: relative;
  width: 100%;
  height: 200px; /* Header height */
  overflow: hidden; background: #006400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide-item.active {
  opacity: 1;
}

/* Chithunzi chioneka chonse, osadulidwa */
.slide-item img {
  max-height: 160%;
  max-width: 300%;
  object-fit: contain; /* Sikudula, koma kusunga chithunzi chonse */
  display: block;
  margin: 0 auto;
}

.slide-caption {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  font-size: 0.9em;
  text-shadow: 1px 1px 3px black;
  padding: 0 10px;
  max-width: 90%;
}
#menuToggle {
  position: fixed;
  top: 10px;
  left: 340px;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.2s ease;
}

#menuToggle:hover {
  transform: scale(1.05);
}

#menuList {
  max-height: 70vh;
  overflow-y: auto;
  position: fixed;
  top: 60px;
  left: 20px;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 999;
}

#menuList ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#menuList li {
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

#menuList li:hover {
  background: #424242;
}

main {
  padding: 20px;
}

.hidden {
  display: none;
}

.content-section {
  margin-top: 20px;
  background: none;
  box-shadow: none;
  border: none;
}

#iframeViewer {
  width: 100%;
  height: 100vh;
  border: none;
}

/* CONTACTS styling */
#contacts {
  background: linear-gradient(to right, #f0f8ff, #e6f7ff);
  padding: 20px;
  border-radius: 10px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.contact-buttons button {
  background: #0077cc;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background 0.3s ease;
}

.contact-buttons button:hover {
  background: #005fa3;
}

.contact-buttons img {
  width: 24px;
  height: 24px;
}
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  height: 80vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 0 15px black;
  overflow: hidden;
}

.close-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ccc;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 2;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  padding-bottom: 80px; /* space for fixed button */
}

.modal-image {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 10px;
}

.modal-text {
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
}

.donate-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 10px 18px;
  background-color: #28a745;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.donate-btn:hover {
  background-color: #218838;
}
 /* copyright */
   #copyright-message {
  font-size: 0.75em;            /* 🔧 Uchepetsa size ya mawu */
  font-weight: 400;             /* 🔧 Mawu asakhale a bold (400 = normal) */
  font-style: italic;           /* 🔧 Mawu apange style ya italic (kapenanso onjezere ngati mukufuna) */
  color: #666;                  /* 🔧 Mtundu wa mawu — osakhala wakuda kwambiri */
  text-align: center;
  margin-top: 60px;
  padding: 10px 14px;
  background-color: #f3f3f3;
  border-top: 1px solid #ccc;
  border-radius: 6px;
  font-family: "Segoe UI", sans-serif;  /* 🔧 Font yokongola ya UI */
 }
 /* Logo Above Menu */
 .logoAboveMenu {
  display: flex;
  justify-content: left; /* left the logo */
  align-items: left;
  margin-top: 5px;
  padding-left: 20px;
  background-color: transparent;
  }
  .logoAboveMenu img {
     height: 60px; /* Small logo */
 }
