/* ================================================= */
/* ZERO∆MUSIC – CLEAN STREAMING UI */
/* ================================================= */

/* Allgemeine Einstellungen */
@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/roboto/roboto-v47-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/roboto/roboto-v47-latin-300.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/roboto/roboto-v47-latin-regular.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

body {
    font-family: 'Roboto', sans-serif; /* Moderne, klare Schrift */
    font-size: 16px; /* Standardgröße für gute Lesbarkeit */
    margin: 0;
    padding: 0;
    line-height: 1.6; /* Lesbarkeit erhöhen */
    background-color: rgb(0, 0, 0);
    color: rgb(248, 248, 248);
font-weight: 300; /* Standard (Regular) */
    /* Hintergrund optimieren */
 

    /* Rendering-Verbesserungen für scharfe Schrift */
    -webkit-font-smoothing: antialiased; /* Glättung für Webkit-Browser */
    -moz-osx-font-smoothing: grayscale; /* Glättung für macOS */
    text-rendering: optimizeLegibility; /* Bessere Schriftklarheit */
    height: 100%;
    padding-bottom:80px;
}

        /* Ausblenden des Hintergrunds auf Handys */
/* Ausblenden des Hintergrunds auf Handys */
@media (max-width: 768px) {
    body {
        background-image: none;
    }
}

* {
    box-sizing: border-box;
}


a {
    color: rgb(245, 240, 240); /* Nicht besuchte Links */
    text-decoration: none; /* Entfernt die Unterstreichung */
    
    
}

a:visited {
     color: rgb(231, 226, 226); /* Nicht besuchte Links */
    text-decoration: none; /* Entfernt die Unterstreichung */
    
   
}

a:hover {
     color: rgb(182, 170, 0);
    text-decoration: none; /* Entfernt die Unterstreichung */
    font-weight:400;
   
}

a:active {
    color: rgb(182, 170, 0);
    text-decoration: none; /* Entfernt die Unterstreichung */
    
   
}

/* ================================================= */
/* APP LAYOUT */
/* ================================================= */

.zero-app {
    display: flex;
    min-height: 100vh;
}


/* ================================================= */
/* SIDEBAR */
/* ================================================= */

.zero-sidebar {
    width: 240px;
    background: #0f0f14;
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    position: fixed;        /* ← ändern */
    top: 0;                 /* ← neu */
    left: 0;                /* ← neu */
    height: 100vh;          /* ← neu */
    overflow-y: auto;       /* ← falls Content länger wird */
    z-index: 1000;
}
.zero-sidebar {
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE/Edge */
}

.zero-sidebar::-webkit-scrollbar {
    display: none;                /* Chrome/Safari */
}
.sidebar-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #afafaf;
    text-decoration: none;
    margin: 6px 0;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.sidebar-nav a:hover {
    color: #ffffff;
}



.radio-link {
    color: #2ecc71;
    font-weight: 600;
}
/* ================================================= */
/* MAIN CONTENT */
/* ================================================= */

.zero-main {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    padding-bottom: 110px; /* Platz für Player */
    margin-left: 260px;  
}

/* ================================================= */
/* MOBILE TOPBAR */
/* ================================================= */

.zero-mobile-topbar {
    display: none;
}

/* ================================================= */
/* LOGO */
/* ================================================= */

.zero-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.logo-svg-wrapper {
    width: 36px;
    height: 36px;
}

.delta-svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    stroke-width: 4;
}

/* ================================================= */
/* SECTION TITLES */
/* ================================================= */

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
}

/* ================================================= */
/* MEDIA ROW */
/* ================================================= */

.media-row {
    display: flex;
    gap: 18px;
    margin-bottom: 50px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.media-row::-webkit-scrollbar {
    height: 6px;
}

.media-row::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}

/* ================================================= */
/* MEDIA CARD */
/* ================================================= */

.media-card {
    min-width: 140px;
    max-width: 140px;
    cursor: pointer;
}

.media-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: 0.25s ease;
}

.media-card img:hover {
    transform: scale(1.05);
}

.media-card p {
    font-size: 0.75rem;
    margin: 0;
    color: #bbbbbb;
}

/* ================================================= */
/* HERO SLIDER */
/* ================================================= */

.zero-hero {
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
}

.hero-bg {
   position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: 50% 35%; /* 50% horizontal, 40% vertikal (feiner justiert) */
filter: brightness(0.85);
}

/* Hero Content Positionierung */
.position-hero {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 500px;
    min-width: 450px; /* Mindestbreite für die Box */
    margin-left: auto; /* Verschiebt den Inhalt nach rechts */
    margin-right: 0; /* Keine rechte Margin */
    text-align: left; /* Text ausrichten, damit er nicht zentriert ist */
}

/* Halbtransparente Box im Hintergrund */
.position-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 10px; /* Abstand vom rechten Rand */
    bottom: 0;
    left: 0; /* Box wird auch von links aufgezogen */
    background: rgba(0, 0, 0, 0.); /* Halbtransparente schwarze Farbe (70%) */
    z-index: -1; /* Hintergrund bleibt hinter dem Inhalt */
    border-radius: 8px; /* Abgerundete Ecken für die Box */
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #dddddd;
}

/* CTA Button */

.hero-cta {
    background: #ffffff;
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-cta:hover {
    transform: scale(1.05);
}

/* ================================================= */
/* HERO DOT NAVIGATION */
/* ================================================= */

.zero-indicators {
    bottom: 20px;
}

.zero-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: none;
    margin: 0 6px;
    transition: 0.2s ease;
}

.zero-indicators .active {
    background-color: #ffffff;
    transform: scale(1.2);
}
/* ================================================= */
/* BOTTOM PLAYER */
/* ================================================= */

.zero-player {
    position: fixed;
    bottom: 0;
    left: 220px;
    right: 0;
    height: 70px;
    background: #111118;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

/* Player Left */

.player-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.player-cover {
    width: 45px;
    height: 45px;
    border-radius: 6px;
}

.player-title {
    font-size: 0.85rem;
}

.player-artist {
    font-size: 0.7rem;
    color: #888888;
}

/* Player Center */

.player-center {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.player-icon {
    font-size: 26px;
    color: #aaa;
    cursor: pointer;
    transition: 0.2s ease;
}

.player-icon:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.player-play {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.player-play span {
    color: #000;
    font-size: 28px;
}

.player-play:hover {
    transform: scale(1.08);
}

.player-bar {
    width: 100%;
    height: 4px;
    background: #333333;
    border-radius: 3px;
    margin-top: 6px;
}

.player-progress {
    width: 35%;
    height: 100%;
    background: #ffffff;
    border-radius: 3px;
}

/* Player Right */

.player-right {
    font-size: 0.85rem;
    color: #aaaaaa;
}

/* ================================================= */
/* RESPONSIVE MOBILE */
/* ================================================= */

@media (max-width: 900px) {
.zero-main {
    margin-left: 0;
}
    .zero-sidebar {
        position: fixed;
        left: -240px;
        top: 0;
        height: 100%;
        transition: 0.3s ease;
    }

    .zero-sidebar.active {
        left: 0;
    }
 }

/* Wenn das Bild in der mobilen Ansicht kleiner sein soll */
@media (max-width: 768px) {
    .img-fluid {
        width: 80%; /* Hier kannst du den Wert nach Bedarf anpassen */
    }
     .col-12.col-md-5 {
        padding-left: 0; /* Entfernt den linken Abstand */
        padding-right: 0; /* Entfernt den rechten Abstand */
        text-align: center; /* Bild zentrieren */
    }

    .img-fluid {
        width: 50%; /* Bild auf maximal 50% der Bildschirmbreite setzen */
        margin-left: auto; /* Zentrieren */
        margin-right: auto; /* Zentrieren */
    }

 #heroCarousel { 
        
    
    }
    .zero-mobile-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .burger-btn {
        font-size: 28px;
        cursor: pointer;
    }

    .mobile-logo {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 1rem;
    }

    .zero-player {
        left: 0;
    }

    .zero-main {
        padding: 20px;
        padding-bottom: 100px;
    }
}

/* ========================= */
/* SIDEBAR OVERLAY */
/* ========================= */

.sidebar-overlay {
    display: none;
}

@media (max-width: 900px) {

    .sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(4px);
        z-index: 900;
        display: none;
    }

    .sidebar-overlay.active {
        display: block;
    }
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sidebar-close {
    display: none;
    cursor: pointer;
}

@media (max-width: 900px) {
    .sidebar-close {
        display: block;
    }
}

/* ========================= */
/* NAV STRUCTURE DEPTH */
/* ========================= */

.nav-block {
    position: relative;
    padding-bottom: 20px;
}

.nav-divider {
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.05)
    );
    margin: 10px 0 20px 0;
}

/* Heading */
.nav-heading .material-symbols-outlined {
    font-size: 1.3rem;
    vertical-align: middle;
    margin-right: 10px;
    color: rgb(255, 255, 255);
}
.nav-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Sub Links */

.nav-links {
    position: relative;
    padding-left: 16px;
}

.nav-links::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: rgba(255,255,255,0.06);
}

/* Links */

.sidebar-nav a {
    display: block;
    padding: 6px 0;
    color: #ddd;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.25s ease;
}

.sidebar-nav a:hover {
    color: #f5c26b;
    transform: translateX(4px);
}

/* Bottom Nav Styles */
.zero-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgb(0, 0, 0);
    border-top: 1px solid rgb(26, 25, 25);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    box-shadow: 0px -2px 4px rgba(71, 71, 71, 0.1); /* Dezenter Schatten oben */
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
}

.nav-btn {
    background-color: #111111;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    
    flex: 1;
    margin: 0 5px;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: #222222;
}

.current-track-btn {
    margin-top: 10px;
}

#current-track {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;  /* Breite auf auto setzen */
    height: auto; /* Höhe auf auto setzen */
    padding: 0;   /* Kein Padding */
    background: transparent; /* Kein Hintergrund */
    border: none;  /* Kein Rand */
    color: transparent; /* Text transparent, weil es keine Schrift gibt */
}

#current-track span {
    font-size: 48px; /* Icon in der gewünschten Größe */
    color: #ffffff; /* Weiße Farbe für das Icon */
}
/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .zero-bottom-nav {
        padding: 10px 0;
    }

    .nav-buttons {
        max-width: 380px; /* Verkleinere den Bereich der Buttons */
        padding: 0 15px;
    }

    .nav-btn {
        padding: 8px;
        font-size: 12px;
    }

    #current-track {
        width: 60px;  /* Kleinere Breite auf Mobilgeräten */
        height: 60px; /* Kleinere Höhe auf Mobilgeräten */
        font-size: 16px; /* Kleinere Schriftgröße */
        padding: 15px;
    }
}

@media (max-width: 480px) {
    /* Weitere Anpassungen für sehr kleine Bildschirme */
    .zero-bottom-nav {
        padding: 8px 0;
    }

    .nav-buttons {
        max-width: 300px; /* Noch kleinere Buttons */
        padding: 0 10px;
    }

    .nav-btn {
        padding: 6px;
        font-size: 10px; /* Noch kleinere Schriftgröße */
    }

    #current-track {
        width: 50px;  /* Noch kleinere Breite */
        height: 50px; /* Noch kleinere Höhe */
        font-size: 14px; /* Kleinere Schriftgröße */
        padding: 12px;
    }
}