/* ===== GALLERY.HTML CSS ===== */

/* Theme color */
:root {
  --theme: #bbdd09;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--theme);
  position: relative;
}
.section-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--theme);
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
}

/* Gallery Cards */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.4s ease;
}
.gallery-card img {
  transition: transform 0.6s ease;
}
.gallery-card:hover img {
  transform: scale(1.1);
}
.gallery-card:hover {
  transform: translateY(-4px);
}
.gallery-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(187, 221, 9, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-card:hover .overlay {
  opacity: 1;
}
.gallery-card .overlay i {
  font-size: 2rem;
  color: #fff;
}

/* Videos */
.video-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}