body {
  margin: 0;
  font-family: 'Verdana', 'Arial', 'Helvetica', sans-serif;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0489B1;
  color: #fff;
  padding: 1rem;
}

.logo {
  font-size: 1.2rem;
}

.menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.mobile-nav {
  background: #444;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  border-top: 1px solid #555;
}

.mobile-nav a {
  display: block;
  padding: 1rem;
  color: white;
  text-decoration: none;
}

.mobile-nav a:hover {
  background: #555;
}

.hidden {
  display: none;
}

/* Grundlegendes Reset/Basis-Styling */
body {
    margin: 0;
    font-family: sans-serif;
    line-height: 1.6;
    /* Hintergrundfarbe ändern */
    background-color: #e9ecef; /* Ein helles Grau-Blau */
    color: #333; /* Textfarbe bleibt dunkel für gute Lesbarkeit */
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Header Styling */
.site-header {
    /* Header Hintergrundfarbe ändern */
    background-color: #0489B1; /* Ein kräftiges Blau */
    color: white; /* Textfarbe im Header bleibt weiß */
    padding: 10px 0;
	border-radius: 8px;
    position: relative;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

. h1 {
    margin: 0;
    font-size: 2em;
    /* Header Titel Farbe (optional, wenn anders als Header-Textfarbe) */
    color: #024879;
}

. h2 {
    margin: 0;
    font-size: 2em;
    /* Header Titel Farbe (optional, wenn anders als Header-Textfarbe) */
    color: #ffffff;
}

. h3 {
    margin: 0;
    font-size: 2em;
    /* Header Titel Farbe (optional, wenn anders als Header-Textfarbe) */
    color: #ffffff;
}


.site-header h1 {
    margin: 0;
    font-size: 1.5em;
    /* Header Titel Farbe (optional, wenn anders als Header-Textfarbe) */
    color: #ffffff;
}

/* Menü Toggle Button Styling */
.menu-toggle {
    background: none;
    border: none;
    /* Hamburger Icon Farbe ändern */
    color: white; /* Oder eine andere Farbe, z.B. #ffc107 (Gelb) */
    font-size: 2em;
    cursor: pointer;
    padding: 5px;
    display: block;
}

/* Mobiles Menü Styling */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 40%;
    /* Menü Hintergrundfarbe ändern */
    background-color: #28a745; /* Ein Grün als Kontrastfarbe */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 90;
}

.mobile-menu.active {
    display: block; /* Wird per JavaScript angezeigt */
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #555;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block; /* Link füllt den gesamten Listenpunkt aus */
    padding: 15px;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.mobile-menu a:hover {
    background-color: #555;
}

/* Hauptinhalts-Styling */
main.container {
    padding-top: 20px; /* Abstand vom Header */
}

.radio-section {
   background-color: #fff;
   padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.radio-player-container audio {
    width: 100%; /* Der Player nimmt die volle Breite des Containers ein */
//    margin-top: 1px;
}

.content-section {
    background-color: #fff;
	
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer Bereich */
.content-footer {
    text-align: center;
    padding: 1.5rem 0;
    background-color: #0489B1; /* Dunkler Hintergrund */
    color: #ffffff; /* Weißer Text */
    margin-top: 30px;
}

/* Responsivität für größere Bildschirme (optional) */
@media (min-width: 768px) {
    .site-header .container {
         justify-content: flex-start; /* Titel linksbündig */
    }

    .site-header h1 {
        margin-right: 20px; /* Abstand zwischen Titel und Menü */
    }

    .menu-toggle {
        display: block; /* Hamburger-Button auf größeren Bildschirmen verstecken */
    }

    .mobile-menu {
        position: static; /* Menü fließt im normalen Dokumentenfluss */
        display: block !important; /* Menü immer anzeigen */
        width: auto;
        background: none;
        box-shadow: none;
        /* Weitere Anpassungen für horizontale Navigation */
    }

    .mobile-menu ul {
        display: flex; /* Menüpunkte nebeneinander */
    }

    .mobile-menu li {
        border-bottom: none;
        margin-right: 15px; /* Abstand zwischen Menüpunkten */
    }

     .mobile-menu li:last-child {
        margin-right: 0;
     }

    .mobile-menu a {
        padding: 5px 10px; /* Kleinerer Padding für horizontale Links */
        color: white;
        text-align: left;
    }

     .mobile-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1); /* Hellerer Hover-Effekt */
    }

     main.container {
        padding-top: 40px; /* Mehr Abstand auf größeren Bildschirmen */
    }
	
}



}

/* --- Akkordeon-Styling --- */
.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden; /* Wichtig für die animation */
}

.accordion-toggle {
    background-color: #f8f8f8;
    color: #333;
    cursor: pointer;
    padding: 12px 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #eee; /* Trennlinie */
}

.accordion-toggle:hover {
    background-color: #e9e9e9;
}

/* Für den Fall, dass du einen Pfeil oder ein +/- Symbol hinzufügen möchtest */
.accordion-toggle::after {
    content: '\002B'; /* Plus-Symbol */
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.accordion-toggle.active::after {
    content: '\2212'; /* Minus-Symbol */
}

.accordion-content {
    padding: 0 15px;
    background-color: #fff;
    max-height: 0; /* Anfangs ausgeblendet */
    overflow: hidden;
    transition: max-height 0.3s ease-out; /* Smooth transition */
}

.accordion-content.show {
    max-height: 200px; /* Oder eine größere Zahl, die den Inhalt sicher aufnimmt */
    /* Du könntest auch `max-height: fit-content;` versuchen, aber `max-height` mit einem fixen Wert ist für Transitionen zuverlässiger. */
}

/* Styling für die Links innerhalb des Akkordeon-Inhalts */
.accordion-content ul {
    list-style: none; /* Entfernt die Standard-Aufzählungszeichen */
    padding: 10px 0; /* Vertikales Padding für die Liste */
    margin: 0;
    text-align: right; /* Richtet den Text der Listenelemente nach rechts aus */
}

.accordion-content li {
    margin-bottom: 8px; /* Abstand zwischen den Links */
}

.accordion-content a {
    display: block; /* Macht den Link zu einem Block-Element */
    padding: 5px 0; /* Vertikaler Abstand für Klickbereich */
    text-decoration: none;
    color: #007bff; /* Typische Linkfarbe */
    transition: color 0.2s ease;
}

.accordion-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}


/* --- iFrame-Styling --- */
.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Seitenverhältnis */
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 20px; /* Abstand zum Akkordeon */
}

#contentFrame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Media Queries für kleinere Bildschirme */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 22px;
    }

    .accordion-toggle {
        font-size: 14px;
        padding: 10px 12px;
    }

    .accordion-content a {
        font-size: 14px;
    }
}

