@charset "utf-8";
/* CSS Document */


/* Photo Gallery Grid */
.harry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 15px;
}

.harry-item img {
  width: 100%;
  height: 200px;              /* ✅ Force equal height on desktop */
  object-fit: cover;          /* ✅ Crop neatly */
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.harry-item img:hover {
  transform: scale(1.05);
}

/* ✅ On mobile, restore natural aspect ratio */
@media (max-width: 768px) {
  .harry-item img {
    height: auto;
    object-fit: contain;
  }
}

/* Lightbox */
.harry-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.9);
  text-align: center;
}

.harry-lightbox-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.harry-caption {
  margin-top: 10px;
  color: #fff;
  font-size: 16px;
}

.harry-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.harry-prev, .harry-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 40px;
  padding: 10px;
  color: #fff;
  transition: 0.3s;
  user-select: none;
}

.harry-prev { left: 15px; }
.harry-next { right: 15px; }

.harry-prev:hover, .harry-next:hover, .harry-close:hover {
  color: #ccc;
}