/* Allgemeine Stile für die Seite */
body {
    font-family: 'Playfair Display', serif;
    background-color: #ff69b4; /* Hot Pink */
    color: #ffff00; /* Knallgelb für den Text */
    margin: 0;
    padding: 0;
}

/* Gestaltung der Überschriften */
h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Gestaltung des Banners */
#banner {
    padding: 20px;
    display: flex;
    align-items: center;
}

/* Logo-Stil */
#banner img {
    margin-right: 20px;
    border: 1px dashed #1e3a5f;
    width: 250px;
    height: 150px;
}

/* Menü */
#menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

#menu li {
    margin-right: 20px;
}

#menu a {
    text-decoration: none;
    color: #ffff00;
    font-size: 1.2em;
}

#menu a:hover {
    color: pink;
}

/* Bilder unter den Texten */
#aktion img,
#news img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Impressum-Bereich */
#impressum {
    background-color: #f8d8e4; /* Zart rosa Hintergrund */
    color: #9b006d; /* Dunkles Pink für die Schrift */
    padding: 40px 0;
    width: 100%;
}

.impressum-content {
    margin: 0 auto;
    max-width: 800px; /* Maximale Breite */
    text-align: center; /* Zentrierter Text */
}

.impressum-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.impressum-content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Standardlink-Farbe für Impressum */
.impressum-content a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* E-Mail und Telefon Links - Hot Pink */
.impressum-content a[href^="mailto:"] {
    color: #ff69b4; /* Hot Pink */
}

/* Telefon-Link - Hot Pink */
.impressum-content a[href^="tel:"] {
    color: #ff69b4; /* Hot Pink */
}

/* Adresse Link - Rot Pink */
.impressum-content a[href^="https://www.google.com/maps"] {
    color: #ff3366; /* Rot Pink */
}

/* Social Media Links - Rot Pink */
.impressum-content a[href*="facebook"] {
    color: #ff3366 !important; /* Rot Pink */
}

.impressum-content a[href*="instagram"] {
    color: #ff3366 !important; /* Rot Pink */
}

.impressum-content a[href*="twitter"] {
    color: #ff3366 !important; /* Rot Pink */
}

/* Hover-Effekt für alle Links */
.impressum-content a:hover {
    color: #add8e6; /* Babyblau */
}

/* Weitere Anpassungen für den unteren Bereich */
#bottom {
    padding: 20px;
}
