/* TINA-TRANSFRAU.DE | HAUPTSYSTEM-STEUERUNG 2026 
   LOGISTIK: INDEX-CSS (LIGHT-STEEL-MODUS)
*/

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&family=Roboto+Mono:wght@400;700&display=swap');

/* ==========================================================================
   [01] BASIS-KONFIGURATION
   ========================================================================== */
body {
    margin: 0;
    padding: 0;
    background-color: #e8e8e8; /* Steel Grey Background */
    color: #001b3d;
    font-family: 'Oswald', sans-serif;
    overflow-x: hidden;
}

/* ==========================================================================
   [02] HEADER-MODUL (KONSOLE)
   ========================================================================== */
header {
    background-color: #ffffff;
    height: 60px;
    border-bottom: 3px solid #001b3d;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
}

.header-logo {
    height: 40px;
    width: auto;
}

/* ==========================================================================
   [03] STATUS-ELEMENTE: TICKER & DISCORD
   ========================================================================== */
.icecast-status {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #001b3d;
    display: flex;
    align-items: center;
    height: 32px;
    font-family: 'Roboto Mono', monospace;
    overflow: hidden;
    flex: 1;
    margin: 0 20px;
}

.ticker-wrapper { 
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
}

#icecast-title { 
    color: #001b3d; 
    font-size: 0.8rem; 
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
}

#discord-status { 
    background: #001b3d;
    color: #ffffff;
    height: 100%; 
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 0.75rem;
    font-weight: bold;
    border-left: 2px solid #001b3d;
    white-space: nowrap;
}

/* ==========================================================================
    [04] NAVIGATION & BURGER
    ========================================================================== */
#menu-overlay {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    display: none;
}

#menu-overlay.active { 
    display: block !important; 
}

.burger-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    z-index: 1001;
}

.burger-icon span { 
    width: 25px; 
    height: 3px; 
    background: #001b3d; 
    transition: 0.1s; 
}

.nav-menu {
    position: fixed;
    top: 0; 
    right: -320px;
    width: 300px; 
    height: 100vh;
    background: #ffffff !important;
    border-left: 3px solid #001b3d;
    transition: right 0.1s ease-in-out;
    z-index: 999;
    overflow-y: auto;
}

.nav-menu.active { 
    right: 0 !important; 
}

.menu-status-label {
    background: #e8e8e8;
    color: #001b3d;
    padding: 10px;
    font-size: 2.2rem;
    text-align: center;
    text-transform: uppercase;
}

.nav-section {
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
}

.section-header-img {
    width: 100%;
    height: auto;
    display: block;
}

.nav-button {
    color: #a6a6a6 !important;
    background: #ffffff !important;
    padding: 15px 20px !important;
    text-decoration: none !important;
    display: block !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    transition: 0.1s;
    border-bottom: 1px solid #e8e8e8;
}

.nav-button:hover {
    background: #001b3d !important;
    color: #ffffff !important;
}

/* ==========================================================================
   [05] MAIN CONTENT (STEEL-MODUS)
   ========================================================================== */


.user-header-widget {
    position: relative; /* Wichtig für das Dropdown-Menü */
    display: flex !important;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 5px; /* Eckig statt rund */
    color: #000000;
}

.user-header-widget img {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    cursor: pointer;
    font-size: 1em;
}

/* Das Dropdown-Menü */
.user-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #000;
    padding: 10px;
    z-index: 1000;
    min-width: 120px;
}

.user-dropdown-menu a {
    display: block;
    text-decoration: none;
    color: black;
    padding: 5px 0;
}

main {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    color: #001b3d;
}

main h1 { font-size: 1.8rem; border-bottom: 2px solid #001b3d; display: inline-block; }

/* ==========================================================================
   [06] FOOTER-MODUL
   ========================================================================= */
footer {
    background-color: #ffffff;
    padding: 20px;
    border-top: 3px solid #001b3d;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.85rem;
    font-weight: 600;
}
@media screen and (max-width: 1000px) {
    #discord-status { display: none !important; }
}