/* Existing animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.3s;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.95);
  animation: zoomIn 0.8s ease forwards;
}

.zoom-in.delay-1 {
  animation-delay: 0.2s;
}

.zoom-in.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* New hover + click animation */
.gallery-img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.hover-effect:hover .gallery-img,
.hover-effect:focus .gallery-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.gallery-img {
    border-radius: 10px;
    transition: transform 0.3s ease;
  }

  .gallery-img:hover {
    transform: scale(1.05);
  }

  @media (max-width: 576px) {
    .gallery-img {
      width: 100%;
      height: auto;
    }
  }

  /* Arrows - clean, no animation, no background */
.mfp-arrow {
  width: 40px;
  height: 40px;
  top: 50%;
  margin-top: -20px;
  z-index: 9999;
  background: transparent !important;
  opacity: 1 !important;
  cursor: pointer;
  transition: none !important;
}

/* Left arrow */
.mfp-arrow-left:before {
  content: '';
  position: absolute;
  left: 12px;
  top: 12px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
  transition: none !important;
}

/* Right arrow */
.mfp-arrow-right:before {
  content: '';
  position: absolute;
  right: 12px;
  top: 12px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  transition: none !important;
}

/* Close Button - simple X, no animation, no background */
.mfp-close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  opacity: 1 !important;
  background: none !important;
  transition: none !important;
}

