/* HERO */
.gallery-hero {
  background: linear-gradient(to bottom, rgba(0, 50, 100, 0.6), rgba(0, 0, 0, 0.6)),
              url('../images/zanzibar-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}
.gallery-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.gallery-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* GALLERY SECTION */
.gallery-section {
  background: #f4f8fb;
  padding: 70px 20px;
  text-align: center;
}
.gallery-section h2 {
  color: #004b8d;
  margin-bottom: 40px;
  font-size: 2.2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.gallery-item {
  position: relative;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

}
.gallery-item p {
  padding: 12px;
  background: #fff;
  color: #004b8d;
  font-weight: 500;
  font-size: 16px;
}
.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
}
#lightbox-caption {
  color: #fff;
  margin-top: 15px;
  font-size: 18px;
}

/* CTA */
.gallery-cta {
  text-align: center;
  background: linear-gradient(to right, #bfe9ff, #7fc8f8);
  padding: 80px 20px;
}
.gallery-cta h2 {
  color: #004b8d;
  font-size: 2rem;
  margin-bottom: 10px;
}
.gallery-cta p {
  color: #333;
  margin-bottom: 20px;
  font-size: 16px;
}
.gallery-cta .btn {
  background: #004b8d;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.gallery-cta .btn:hover {
  background: #0066cc;
  transform: scale(1.05);
}
