/*Old image gallery section starts from here*/
.gallery-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.gallery-title {
  text-align: center;
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-info {
  padding: 15px;
  text-align: center;
}

.gallery-info h3 {
  font-size: 18px;
  font-weight: bold;
  color: #8b4513;
  margin-bottom: 6px;
}

.gallery-info p {
  font-size: 14px;
  color: #654321;
}


/*Old image gallery section ends here*/
