/* =====================================
   GALLERY PAGE — CLEAN & PREMIUM
===================================== */

/* HERO */
.gallery-hero {
  padding: 120px 6% 90px;
  text-align: center;
  background: linear-gradient(
    rgba(11, 28, 45, 0.85),
    rgba(11, 28, 45, 0.85)
  );
  color: #ffffff;
}

.gallery-hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.gallery-hero p {
  max-width: 620px;
  margin: auto;
  font-size: 1.05rem;
  color: #e5e7eb;
}

/* SECTION */
.gallery-section {
  padding: 90px 6%;
  background: #f8fafc;
}

/* GRID */
.gallery-grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;

  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER EFFECT */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0),
    rgba(0,0,0,0.35)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 600px) {
  .gallery-hero {
    padding: 100px 6% 70px;
  }
}
