/* Grundlegendes Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    height: 100vh;
    background-color: #000000; /* Schwarz für die Gesamtästhetik */
}

/* Linke Navigationsleiste */
.side-nav {
    width: 250px;
    background-color: #000000; /* Schwarz */
    color: #ffffff; /* Weiß */
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

/* Logo-Bereich */
.side-nav .nav-header {
    text-align: center;
    margin-bottom: 20px;
}

.side-nav .logo {
    width: 150px;
}

/* Verweis für Künstler:innen */
.artist-link {
    text-align: center;
    margin-bottom: 20px;
}

.artist-link a {
    text-decoration: none;
    color: #ff7700; /* SoundCloud-Orange */
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
}

.artist-link a:hover {
    color: #ffffff; /* Weiß bei Hover */
}

/* Verweis für Hörer:innen */
.listener-link {
    text-align: center;
    margin-bottom: 20px;
}


.listener-link a {
    text-decoration: none;
    color: #ff7700; /* SoundCloud-Orange */
    padding: 10px;
    font-weight: bold;
    display: inline-block;
    border-radius: 5px;
}

.listener-link a:hover {
    color: #ffffff; /* Weiß bei Hover */
}

/* Menü-Links */
.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav li {
    margin: 10px 0;
    text-align: center;
}

.side-nav a {
    text-decoration: none;
    color: #ffffff; /* Weiß */
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
}

.side-nav a:hover, 
.side-nav a.active {
    background-color: #ff7700; /* SoundCloud-Orange */
    color: #000000; /* Schwarz */
}

/* Hauptinhalt */
.content {
    flex-grow: 1;
    background-color: #ff7700; /* SoundCloud-Orange für den Hintergrund */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Weißes Kästchen */
.content-box {
    background-color: #ffffff; /* Weiß */
    color: #000000; /* Schwarzer Text */
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Bilder */
.Index-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


/* Für kleinere Bildschirme (z. B. Smartphones) */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .side-nav {
        width: 200px;
        padding: 5px 0;
    }

    .content-box {
        padding: 15px;
        max-width: 100%; /* Maximaler Inhalt für kleine Geräte */
    }

    .playlist-image, .playlist2-image {
        max-width: 80%; /* Bilder auf kleinere Bildschirme anpassen */
    }
}

/* Weitere Medienabfragen für sehr kleine Bildschirme (z. B. sehr kleine Telefone) */
@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .side-nav {
        width: 100%;
        padding: 5px;
    }

    .content-box {
        padding: 10px;
    }

    .playlist-image, .playlist2-image {
        max-width: 70%; /* Bilder noch kleiner machen, wenn nötig */
    }
}