/* GALLERY PAGE */
.gallery-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), #9750b8;
  color: #fff;
  padding: 110px 20px;
}

.gallery-hero h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 56px;
}

.gallery-hero p {
  margin-top: 15px;
  font-size: 18px;
}

/* Grid */
.gallery-container {
  padding: 90px 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  transition: all 0.4s ease;
}

.gallery-item img:hover {
  transform: scale(1.04);
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 18px;
}

.lightbox:target {
  display: flex;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-hero h1 {
    font-size: 38px;
  }

  .gallery-item img {
    height: 220px;
  }
}
