/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  background-repeat: no-repeat;
  background-size: cover;
}

.btn-donate {
  background-color: #ffc107;
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
}


/* Gallery Section */
.gallery-section {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.gallery-section {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9; /* Optional */
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
  gap: 16px; /* Space between grid items */
  margin: 20px auto;
  max-width: 1200px; /* Optional, to limit gallery width */
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px; /* Optional, for rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional, for shadow effect */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintain aspect ratio and fill container */
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 24px;
  z-index: 1001;
}

.prev-button {
  left: 20px;
}

.next-button {
  right: 20px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  z-index: 1001;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.video-gallery {
  margin-top: 10px;
  padding: 10%;
  padding-top: 1%;
  padding-bottom: 1px;
}

.video-section {
  margin: 30px 0;
}

.video-section h3 {
  background-color: #ffc107;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.video-grid iframe {
  width: 100%;
  min-height: 150px;
  max-height: 300px;
  border: none;
}

.youtube-link {
  display: flex;
  justify-content: center;
}

.youtube-link a {
  display: inline-block;
  margin-bottom: 5%;
  padding: 10px 20px;
  background-color: #ffc107;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.youtube-link a:hover {
  background-color: #e0a800;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin-top: 50px;
}

.footer {
  background-color: #f8f8f8;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #ddd;
}

.footer .contact-section {
  margin-bottom: 15px;
}

.footer .footer-bottom {
  font-size: 0.9rem;
  color: #666;
}
