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 {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    flex-wrap: wrap; /* sorgt für saubere Darstellung bei kleineren Bildschirmen */

}
.slideshow {
    flex: 1 1 50%;
    max-width: 600px;
    max-height: 600px;
    position: relative;
}

.slide {
  display: none;
  width: 600px;      /* feste Breite */
  height: 400px;     /* feste Höhe */
  object-fit: cover;
  border-radius: 10px;
}

.slide.active {
    display: block;
}

.slideshow-text {
    flex: 1 1 40%;
    font-family: Arial, sans-serif;
    font-size: 1.1em;
    line-height: 1.6;
    text-align: left;
}

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;
  }