/* Custom Styles */
/* Custom Styles */
body {
    background-color: #0a1a2f; /* Sehr dunkles Blau für den Dark Mode */
    color: #ffffff;
    margin: 0; /* Entfernt Standard-Margin des Body */
    padding-top: 60px; /* Platz für die fixierte Navbar schaffen */
}

/* Navigation */
header {
    position: fixed; /* Fixiert die Navbar */
    top: 0;
    left: 0;
    width: 100%; /* Deckt die gesamte Breite ab */
    background-color: #0f1e35; /* Dunkleres Blau für die Navigation */
    color: white;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Leichter Schatten */
    z-index: 1000; /* Stellt sicher, dass die Navbar über anderen Elementen liegt */
}
.header-logo {
    max-height: 50px;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}
nav li {
    margin: 0;
}
nav a {
    color: #ffffff; /* Standardfarbe der Links */
    font-weight: 700; /* Noch kräftigeres Schriftgewicht */
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.4s ease, background-color 0.4s ease; /* Sanfterer Übergang für Farbe und Hintergrund */
}

nav a:hover {
    color: #63a4ff; /* Helleres Blau beim Hover */
    background-color: rgba(255, 255, 255, 0.1); /* Transparenter Hintergrund */
    border-radius: 5px; /* Abgerundete Ecken für den Hover-Effekt */
}

/* Responsive Navigation */
header .navbar-toggler {
    display: none; /* Verstecke den Button standardmäßig */
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

#main-nav {
    display: flex; /* Standardmäßige horizontale Navigation */
    flex-direction: row;
}

@media (max-width: 768px) {
    header .navbar-toggler {
        display: block; /* Zeige Hamburger-Button */
    }

    #main-nav {
        display: none; /* Verstecke Navigation standardmäßig */
        flex-direction: column; /* Vertikale Navigation */
        gap: 10px;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #0f1e35;
        width: 100%;
        padding: 10px;
        z-index: 999;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    }

    #main-nav.active {
        display: flex; /* Zeige Navigation, wenn aktiv */
    }

    #main-nav a {
        padding: 10px;
        text-align: center;
        display: block;
        width: 100%;
    }
}


.welcome-section {
    background: url('img/AdobeStock_223605406-scaled.jpeg') center/cover no-repeat;
    position: relative;
    height: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.welcome-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50px;
            background: linear-gradient(180deg, rgba(10,26,47,0) 0%, #0a1a2f 100%);
            z-index: 1;
}
.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Abdunkelung nur fÃ¼r das Bild */
    z-index: 1;
}
.welcome-section h1, .welcome-section .radio-button {
    position: relative;
    z-index: 2; /* Hebt den Text und Button Ã¼ber die Abdunklung */
}
.welcome-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Hervorhebung durch Schatten */
}
.welcome-section .radio-button {
    background-color: #ff5722;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.welcome-section .radio-button:hover {
    background-color: #e64a19;
    transform: scale(1.1); /* Leichte VergrÃ¶ÃŸerung beim Hover */
}
.slider {
    display: flex;
    justify-content: center;
    margin: 40px auto;
}
.slider .carousel-inner {
    width: 960px; /* Slider Breite */
    height: 360px; /* Slider HÃ¶he */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}
.slider .carousel-control-prev, .slider .carousel-control-next {
    width: 5%; /* NÃ¤he zum Slider-Bild */
}
.slider img {
    width: 100%;
    height: 100%;
    loading: lazy; /* Performance-Verbesserung */
}
.box {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #4a90e2; /* Neuer Rahmen in Blau */
    border-radius: 5px;
    background-color: #14233c; /* Dunkles Blau fÃ¼r Boxen im Dark Mode */
    min-height: 320px; /* Einheitliche MindesthÃ¶he */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Leichter Schatten */
}
.box h3 {
    text-align: center;
    color: #ffffff;
}
.stream-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}
.stream-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stream-group h4 {
    color: #ffffff;
    margin-bottom: 10px;
}
.stream-group .buttons {
    display: flex;
    gap: 10px;
}
.stream-group img {
    width: 48px;
    height: 48px;
}
footer {
    background-color: #0f2a44; /* Dunkler Footer */
    padding: 10px 0;
    text-align: center;
}
.row .col-md-6 {
    margin-bottom: 20px; /* Weniger Luft zwischen den Boxen */
}
a {
    color: #1e90ff;
}
a:hover {
    color: #63a4ff;
}
.today-schedule {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
        .onair-badge {
            display: inline-block;
            background-color: #28a745;
            color: white;
            padding: 0.2rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.8rem;
            margin-left: 0.5rem;
        }
.today-schedule-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #4a90e2; /* Neuer Rahmen in Blau */
    border-radius: 5px;
    background-color: #1f3a56;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Leichter Schatten */
}
.today-schedule-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.button-container {
    display: flex;
    gap: 30px; /* Größerer Abstand zwischen den Buttons */
    margin-top: 10px;
}

.button-container {
    display: flex;
    gap: 30px; /* Größerer Abstand zwischen den Buttons */
    margin-top: 10px;
}

.radio-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4CAF50; /* Grün für den Radio-Button */
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.radio-button:hover {
    background-color: #45a049;
}

.wishbox {
    background-color: #007BFF !important; /* Blau für den Wunschbox-Button */
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wishbox:hover {
    background-color: #0056b3 !important; /* Dunkleres Blau im Hover-Zustand */
}

.btn-player {
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.btn-player:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: #4a90e2;
  transform: translateY(-1px);
  box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}
