
/* Gallery */
.title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 100px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.gallery-card:hover {
  transform: translateY(-6px);
}
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.gallery-card:hover .overlay {
  background: rgba(0,0,0,0.8);
}



@media (max-width: 768px) {

  /* Title */
  .title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  /* Gallery grid */
  .gallery {
    grid-template-columns: 1fr; /* single column */
    gap: 16px;
    margin-top: 70px;
    padding: 0 12px;
  }

  /* Gallery card */
  .gallery-card {
    margin-top: 0;
    height: 180px;
  }

  .gallery-card img {
    height: 100%;
  }

  /* Overlay text */
  .overlay {
    font-size: 14px;
    padding: 10px;
  }

  /* Disable hover lift on mobile */
  .gallery-card:hover {
    transform: none;
  }

  .gallery-card:hover .overlay {
    background: rgba(0,0,0,0.6);
  }
}
