body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}
header {
    background: url('./rathen-mai.JPG') no-repeat center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    font-size: 2em;
}
nav {
    text-align: center;
    padding: 15px;
    background: #333;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
}
section {
    padding: 20px;
    text-align: center;
}
.gallery img {
    width: 100%;
    max-width: 400px;
    margin: 10px;
    border-radius: 10px;
}
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
}
.map-container {
    display: flex;
    gap: 20px; /* Abstand zwischen Map und Text */
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: wrap;
}
.map-container iframe{
    width:600px;
    height:450px;
    border:0; 
}
.address-text {
    max-width: 350px;
    font-family: sans-serif;
    font-size: 1.1em;
    line-height: 1.5;
}
.slideshow-container {
    position: relative;
    width: 95vw;
    height: 90vh;
    margin: 2.5vh auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
.slideshow-container-wohnen {
    position: relative;
    max-width: 600px;
    width: 100%;
    height: 400px;
    overflow: hidden;
    flex: 1;
}
.slide {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  border-radius: 15px;
  top: 0;
  left: 0;
}
/* Buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3em;
  color: white;
  background-color: rgba(0,0,0,0.4);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  z-index: 2;
}
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.6);
}
.prev {
  left: 20px;
}
.next {
  right: 20px;
}

  form {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }
  
  input, textarea {
    width: 95%;
    padding: 10px;
    margin-top:10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 10px;
  }
  
  button {
    padding: 10px 20px;
    font-size: 1.1em;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #555;
  }
  .reisezeit-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .reisezeit-feld {
    flex: 1;
    min-width: 200px;
  }
  .personen-container {
    display: flex;
    gap: 20px; /* Abstand zwischen den beiden Feldern */
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .personenfeld {
    flex: 1; /* gleiche Breite */
    min-width: 150px;
  }
  #kontaktformular {
    padding: 40px 20px;    /* Abstand nach außen */
  }