/* ===== GALLERY SECTION ===== */
.rg-gallery-section {
  padding: 80px 20px;
  background: #f5f7fb;
}

.rg-gallery-container {
  max-width: 1200px;
  margin: auto;
}

.rg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.rg-gallery-item {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  cursor: pointer;
}

.rg-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rg-gallery-item:hover img {
  transform: scale(1.08);
}

/* ===== LIGHTBOX ===== */
.rg-gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.rg-gallery-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
}

.rg-lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .rg-gallery-banner-overlay h1 {
    font-size: 28px;
  }
}
