.gallery-section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #fff;
}

.gallery-header {
  margin-bottom: 2rem;
}

.black-text {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.blue-text {
  font-family: "Great Vibes", cursive;
  color: #8a7cf9;
  font-size: 1.8rem;
  margin-top: 0.5rem;
}

.gallery-category {
  margin-bottom: 3rem;
}

.gallery-category h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.see-more-btn {
  margin-top: 1.2rem;
  padding: 0.7rem 1.8rem;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  background-color: #8a7cf9;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s;
}

.see-more-btn:hover {
  background-color: #6f63d3;
  transform: translateY(-3px);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

.lightbox-image {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.lightbox .close {
  position: absolute;
  top: 25px;
  right: 45px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.lightbox-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  user-select: none;
}

.prev:hover,
.next:hover,
.close:hover {
  color: #8a7cf9;
}

/* Responsive */
@media (max-width: 768px) {
  .black-text {
    font-size: 1.5rem;
  }
  .blue-text {
    font-size: 1.3rem;
  }
  .gallery-grid img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .black-text {
    font-size: 1.3rem;
  }
  .blue-text {
    font-size: 1.1rem;
  }
}
