/* Interieur Hintergrund */
.interieur-bg {
  position: relative;
  min-height: 80vh;
  background-image: url("../img/interieur-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.interieur-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}
.interieur-overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 30px;
  background: rgba(15,15,15,0.48);
  backdrop-filter: blur(2px);
  border-radius: 12px;
  color: #eaeaea;
}
