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:600px;
    border:0; 
}
.single-image {
    height: 400px;      /* feste Höhe */
    width: auto;        /* Breite automatisch, proportional zur Höhe */
    object-fit: contain; /* Bild komplett sichtbar, ohne Beschnitt */
    border-radius: 10px;
    flex-shrink: 0;      /* Verhindert, dass das Bild bei kleineren Bildschirmen schrumpft */
}
.address-text {
    flex: 1;
    text-align: left;   /* Links bündig */
    font-family: sans-serif;
    font-size: 1.1em;
    line-height: 1.5;
}
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;
  }