/* HERO SECTION */
.hero-section {
  position: relative;
  height: 40vh;
  background: url('../images/gallery/3.jpeg') center/cover no-repeat;
}

.hero-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-content p {
    color: #c4bbbb;
}

body {
  background-color: #f8f9fa;
  font-family: 'Poppins', sans-serif;
}

.gallery-section {
  padding: 60px 0;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}