/* Basis-Styles */
body {
    margin: 0;
    padding: 0;
    background-color: #2b0d0d; /* Dunkler Kirschton */
    color: #f8f8f8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Linkfarben und dezente Hover-Effekte */
a {
    color: #d12a4c; /* Himbeerrot */
    transition: color 0.3s ease;
}
a:hover {
    color: #ff5e73; /* Roséton */
}

/* Navigation */
.navbar {
    background-color: #470d1c !important; /* Satter Dunkelrot-Ton */
}

.navbar .navbar-collapse {
    justify-content: flex-end;
}

/* Dropdown Styles */
.dropdown-menu {
    background-color: #1e1e1e;
}
.dropdown-item {
    color: #f0f0f0;
}
.dropdown-item:hover {
    background-color: #d12a4c;
}

/* Subheader mit Hintergrundbild und sanftem Übergang */
.subheader {
    position: relative;
    background: url('/img/header.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-top: 56px;
}
.subheader::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(180deg, rgba(43,13,13,0) 0%, rgba(43,13,13,0.6) 60%, #2b0d0d 100%);
}

/* Subheader-Text */
.subheader h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}
.subheader p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Stream-Boxen */
.stream-box {
    background-color: #1f1f1f;
    border: 2px solid #d12a4c;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 35px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stream-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(209, 42, 76, 0.3);
}

/* Platzhalter für Radiostatus */
.status-placeholder {
    background-color: #292929;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
}

/* Spieler-Button Styles */
.player-buttons a.btn {
    margin: 6px 4px;
    transition: transform 0.3s ease;
}
.player-buttons a.btn:hover {
    transform: scale(1.07);
}

/* Team Cards */
.card {
    background-color: #1f1f1f;
    border: 2px solid #d12a4c;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(209, 42, 76, 0.3);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #d12a4c;
}

/* Content Box für Vorlagen */
.content-box {
    background-color: #1f1f1f;
    border: 2px solid #d12a4c;
    border-radius: 12px;
    padding: 35px;
    margin: 35px 0;
}

/* Sendeplan-Boxen */
.sende-box {
    background-color: #1f1f1f;
    border: 2px solid #d12a4c;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sende-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(209, 42, 76, 0.4);
}
.sende-box h5 {
    color: #ffcdd2;
    margin-bottom: 15px;
}
.sendezeit {
    font-weight: bold;
    color: #ffb74d;
}
.sende-box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #d12a4c;
}

/* Tabs */
.nav-tabs .nav-link {
    background-color: #1f1f1f;
    color: #ffffff;
    border: none;
    margin: 0 5px;
    border-radius: 6px 6px 0 0;
}
.nav-tabs .nav-link.active {
    background-color: #d12a4c;
}

/* Footer */
footer {
    background-color: #1e1e1e;
    color: #f0f0f0;
    text-align: center;
    padding: 25px;
    font-size: 0.95rem;
}
