/* Allgemeine Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

/* Header Styling */
header {
    background-color: #333;
    color: white;
    padding: 15px 0;
    text-align: center;
}

header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

header nav ul li {
    display: inline;
    margin: 0 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

header nav ul li a:hover {
    color: #27ae60;
}


/* Hero Section */
.hero {
    background: url('../images/hero-background.jpeg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: #27ae60;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

.hero .btn:hover {
    background-color: #2ecc71;
}

/* Radio Features Section */
.radio-features {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.radio-features .feature {
    width: 30%;
}

.radio-features .feature h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.radio-features .feature p {
    font-size: 18px;
    color: #666;
}

/* Aktuelle Hits Section */
.current-hits {
    background-color: #333;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.current-hits h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.current-hits .current-song {
    font-size: 18px;
    margin-top: 20px;
}

.current-hits .btn {
    background-color: #27ae60;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

.current-hits .btn:hover {
    background-color: #2ecc71;
}

/* Playlist Section */
.playlist {
    padding: 50px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.playlist h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.song-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.song-item {
    background-color: #fff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.song-item strong {
    color: #27ae60;
    font-size: 18px;
}

.song-time {
    font-size: 14px;
    color: #888;
    display: block;
    margin-top: 10px;
}

.song-item:hover {
    background-color: #f0f0f0;
}

/* Newsletter Section */
.newsletter {
    background-color: #27ae60;
    color: white;
    text-align: center;
    padding: 50px 0;
}

.newsletter h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.newsletter form {
    margin-top: 20px;
}

.newsletter input[type="email"] {
    padding: 10px;
    font-size: 18px;
    width: 300px;
    margin-right: 10px;
    border-radius: 5px;
    border: none;
}

.newsletter button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.newsletter button:hover {
    background-color: #27ae60;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}
/* Webradio Section */
.webradio {
    padding: 50px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.webradio h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.radio {
    background-color: #fff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.radio h3 {
    font-size: 24px;
    color: #27ae60;
    margin-bottom: 15px;
}

.radio p {
    font-size: 18px;
    margin-bottom: 15px;
}

.radio-player {
    background-color: #333;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
}

.radio-player iframe, .radio-player audio {
    width: 100%;
    border: none;
    border-radius: 10px;
}
/* Verkehrsinformationen Styling */
.verkehr {
    padding: 50px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.verkehr h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.baustellen, .verkehrsmeldungen {
    background-color: #fff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.baustellen h3, .verkehrsmeldungen h3 {
    font-size: 24px;
    color: #27ae60;
    margin-bottom: 15px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

li {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

li strong {
    color: #e74c3c; /* Rote Farbe für Wichtige Infos */
}

ul li:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}
/* Allgemeines Styling für das Wetterbereich */
.wetter {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.wetter h2 {
    font-size: 32px;
    color: #333;
}

.wetter-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.wetter-details img {
    width: 80px;
    height: 80px;
}

.wetter-details p {
    font-size: 18px;
    color: #333;
}

.wetter-details strong {
    color: #27ae60;
}

/* Styling für die Tagesvorhersage */
.forecast {
    background-color: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.forecast h3 {
    font-size: 24px;
    color: #333;
}

.forecast p {
    font-size: 18px;
    color: #333;
}
.event-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.event-item {
    background-color: white;
    padding: 15px;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.event-item h2 {
    color: #333;
}

.event-item p {
    margin: 5px 0;
}

.event-item strong {
    font-weight: bold;
}
/* Container für den Abschnitt "Nächstes Event" */
.events {
    padding: 20px;
    background-color: #f9f9f9;
    margin: 5px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.events h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
}

.next-event {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.next-event h3 {
    font-size: 1.6em;
    color: #2e8b57; /* Ein grüner Farbton, passend zu deinem Design */
    margin-bottom: 10px;
}

.next-event p {
    font-size: 1.2em;
    color: #555;
    margin: 5px 0;
}

.next-event strong {
    font-weight: bold;
}

.next-event a {
    color: #007bff;
    text-decoration: none;
}

.next-event a:hover {
    text-decoration: underline;
}

/* Für den Fall, dass keine Veranstaltungen existieren */
.events p {
    font-size: 1.2em;
    color: #888;
}