.hero-section {
  background: url('hero.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* dark transparent layer */
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
}
.map-responsive {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
  height: 0;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: transparent;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  transition: transform 0.2s;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}
/* Galerie */
.gallery img {
  object-fit: cover;
  height: 220px;
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery:hover img {
  transform: scale(1.05);
}

.gallery {
  display: block;
  cursor: pointer;
}

