
#ParishPilgrimDay {
  font-family: Arial, sans-serif;
  margin: 40px;
}

.title {
  background-color: #6BA36B;
  color: white;
  padding: 20px;
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
}

.content {
  padding: 20px;
  font-size: 1.1em;
  line-height: 1.6;
}

.content a {
  color: #007b5e;
  text-decoration: underline;
  transition: color 0.3s;
}

.content a:hover {
  color: #6BA36B;
}

.image-gallery {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.image-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  object-fit: cover;
}

.image-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
}

.close, .prev, .next {
  position: absolute;
  top: 50%;
  color: white;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}

.close {
  display: none;

  top: 20px;
  right: 35px;
  font-size: 45px;
}

.prev {
  left: 10%;
  transform: translateY(-50%);
}

.next {
  right: 10%;
  transform: translateY(-50%);
}

.close:hover, .prev:hover, .next:hover {
  color: #6BA36B;
}

#lightbox-close {
  display: block;
  color: white;
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  cursor: pointer;
  text-decoration: underline;
}

#lightbox-close:hover {
  color: #6BA36B;
}
