/* Apply styles for the hero section */
.hero-section {
  position: relative;
  height: 330px; /* Adjust the height as needed */
  color: white;
  top: 75px;
  margin-bottom: 70px;
}

/* Style for the image container */
.image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Image styling */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Darker overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Darker overlay with higher opacity */
}

/* Style for the heading and breadcrumb text */
.container-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; /* Ensure text is above the overlay */
}

.hero-section h2 {
  font-size: 3rem;
  font-weight: bold;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* keeps proportions */
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05); /* subtle zoom effect */
}

.image-large {
  height: 300px !important;
}
