body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #192E2C;
}

.hero {
  background: url('images/hero-kontakt.jpg') center center / cover no-repeat;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Mörk overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-content p {
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

}

.gallery-wrapper {
  padding: 40px 20px;
}

.gallery-row {
  display: flex;
  gap: 20px;
  justify-content: space-around;
  flex-wrap: wrap;
}

.gallery-column {
  flex: 1 1 22%;
  min-width: 250px;
}

.gallery-column h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-align: center;
  color: #c2512b;
}

/* Swiper specific */
.swiper {
  width: 100%;
  height: auto;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  border-radius: 8px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #c2512b;
}
.swiper-button-next,
.swiper-button-prev {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.swiper:hover .swiper-button-next,
.swiper:hover .swiper-button-prev {
  opacity: 1;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #a04121; /* En mörkare ton av samma färg */
}
.swiper-button-next,
.swiper-button-prev {
  color: #c2512b; /* Byt till din egen färgkod här */
}

