.gallery-card {
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease;
  border-radius: 8px;
}
.gallery-card:hover { transform: translateY(-5px); }

.gallery-img {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px 8px 0 0;
}
.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

#lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}
#lightbox p {
  color: #fff;
  margin-top: 15px;
  font-size: 18px;
  text-align: center;
}
.close-btn {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
