/* Allgemeines CSS für die Webseite */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9; /* Helle Hintergrundfarbe */
    color: #333; /* Dunkle Textfarbe */
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
    padding: 0 1px; /* Gleichmäßiger Abstand von links und rechts */
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0e76a8; /* Dunkelblaue Farbe für den Header */
    padding: 20px;
}

.header-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    cursor: pointer;
}

.balken {
    background-color: #0e76a8; /* Dunkelblaue Farbe für die Trennlinien */
    height: 4px;
    width: 100%;
    margin: 20px 0;
}

.Content, .Kontakt, .Anfahrt, .profile {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background: white; /* Weißer Hintergrund für die Abschnitte */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Leichter Schatten für die Abschnitte */
}

.Kontakt, .Anfahrt {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Content h3, .Kontakt p b, .Anfahrt p b {
    color: #0e76a8; /* Dunkelblaue Farbe für die Überschriften */
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: white;
    background-color: #25d366; /* Grüne Farbe für den WhatsApp-Button */
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 16px;
    margin: 10px 0;
}

.whatsapp-button img {
    vertical-align: middle;
    margin-right: 8px;
    width: 24px;
    height: 24px;
}

.whatsapp-button:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

.Footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #0e76a8; /* Dunkelblaue Farbe für den Footer */
    color: white;
}

.Footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.Footer a:hover {
    text-decoration: underline;
}

iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: 0;
    border-radius: 10px;
    margin-top: 10px;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: #0e76a8; /* Linkfarbe */
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #0e76a8;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.map-link:hover {
    background-color: #0e76a8;
    color: white;
    transform: scale(1.05);
}

/* Slideshow spezifisches CSS */
.slideshow-container {
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.mySlides {
    display: none;
}

.mySlides img {
    width: 100%;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

.image {
    border-radius: 20px;
}

.profile {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background: white; /* Weißer Hintergrund für die Abschnitte */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Leichter Schatten für die Abschnitte */
}

#profileimg {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 20px;
}

#profiledesc{
    text-align: center;
}

.profiletext {
    text-align: left;
    margin-left: 20px;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    .profile {
        flex-direction: column;
        width: auto;
        height: auto;
    }
}

