﻿/* ==================================================
   SOUNDBRIDGE CSS
   BLOCK 1 - GRUNDLAYOUT
================================================== */

/* ==================================================
   RESET
================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    width:100%;
    min-height:100%;
    scroll-behavior:smooth;
}

body{
    width:100%;
    min-height:100vh;

    font-family:Arial,Helvetica,sans-serif;
    font-size:16px;
    line-height:1.5;

    color:#ffffff;

    background:
        url("../soundbridge-header-v3.png")
        center center / cover
        no-repeat fixed;

    background-color:#000000;

    overflow-x:hidden;
}

/* ==================================================
   LINKS
================================================== */

a{
    color:#ff9900;
    text-decoration:none;
    transition:.25s;
}

a:hover{
    color:#ffbb44;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

/* ==================================================
   SKIP LINK
================================================== */

.skip-link{
    position:absolute;
    left:-9999px;
    top:10px;

    padding:12px 18px;

    background:#ff9900;
    color:#000;

    border-radius:8px;

    font-weight:bold;

    z-index:99999;
}

.skip-link:focus{
    left:15px;
}

/* ==================================================
   NAVIGATION
================================================== */

.navbar{

    position:fixed;

    top:15px;
    left:50%;

    transform:translateX(-50%);

    width:90%;
    max-width:1000px;

    padding:12px 18px;

    z-index:1000;

    border:1px solid #ff9900;
    border-radius:30px;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(6px);

    transition:.35s;
}

.navbar.nav-hidden{
    transform:translate(-50%,-140px);
}

.nav-inner{

    display:flex;

    justify-content:center;
    align-items:center;

    flex-wrap:wrap;

    gap:14px;
}

.nav-inner a{

    color:#ffffff;

    font-size:15px;
    font-weight:bold;

    transition:.25s;
}

.nav-inner a:hover{
    color:#ff9900;
}

.menu-toggle{
    display:none;
}

/* ==================================================
   HAUPTBEREICH
================================================== */

.hero{

    width:100%;

    min-height:calc(100vh - 70px);

    display:flex;

    justify-content:center;
    align-items:center;

    padding:120px 20px 40px;
}

#content{
    width:100%;
}

.content-box{

    width:90%;
    max-width:900px;

    margin:0 auto;

    padding:35px;

    border:2px solid #ff9900;
    border-radius:24px;

    background:rgba(17,17,17,.72);

    backdrop-filter:blur(6px);

    box-shadow:
        0 0 35px rgba(0,0,0,.45);
}

.content-box h1{

    margin-bottom:20px;

    color:#ff9900;

    font-size:34px;
}

.content-box h2{

    margin:28px 0 14px;

    color:#ff9900;

    font-size:24px;
}

.content-box p{

    margin-bottom:15px;

    font-size:18px;
    line-height:1.6;
}

.content-box strong{
    color:#ff9900;
}

/* ==================================================
   IMPRESSUM
================================================== */

.impressum-box h1{
    font-size:28px;
}

.impressum-box p{

    font-size:14px;
    line-height:1.5;

    margin-bottom:8px;
}

/* ==================================================
   FOOTER
================================================== */

.footer{

    width:100%;

    padding:18px 0;

    text-align:center;

    position:relative;

    z-index:20;
}

.footer p{
    font-size:14px;
}

.footer a{

    color:#ff9900;

    text-decoration:none;
}

.footer a:hover{
    text-decoration:underline;
}

/* ==================================================
   SOUNDBRIDGE CSS
   BLOCK 2 - RADIO PLAYER
================================================== */

/* ==================================================
   PLAYER
================================================== */

.radio-widget{

    position:fixed;

    top:95px;
    right:10px;

    width:360px;
    min-height:115px;

    padding:12px;

    z-index:900;

    border:1px solid rgba(255,157,34,.75);
    border-radius:18px;

    background:
        url("../Bilder/RadioPlayer/player-background.png")
        center center / cover
        no-repeat;

    box-shadow:
        0 0 30px rgba(0,0,0,.55);
}

.player{

    display:flex;
    flex-direction:column;

    gap:10px;

    width:100%;
}

/* ==================================================
   TITELZEILE
================================================== */

.title-row{

    display:flex;

    align-items:center;

    gap:10px;

    height:22px;

    overflow:hidden;
}

.badge{

    flex-shrink:0;

    padding:4px 8px;

    border-radius:5px;

    background:#ff9900;

    color:#ffffff;

    font-size:11px;
    font-weight:bold;
}

.track{

    flex:1;

    overflow:hidden;

    white-space:nowrap;
}

#nowPlaying{

    display:inline-block;

    padding-left:100%;

    color:#ffffff;

    font-size:14px;
    font-weight:bold;

    animation:sbTicker 16s linear infinite;
}

@keyframes sbTicker{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-100%);
    }
}

/* ==================================================
   STEUERUNG
================================================== */

.control-row{

    display:grid;

    grid-template-columns:54px 1fr 54px;

    align-items:center;

    gap:12px;
}

.play{

    width:54px;
    height:54px;

    display:grid;
    place-items:center;

    border:none;
    border-radius:50%;

    cursor:pointer;

    color:#ffffff;

    font-size:22px;

    background:rgba(20,20,20,.55);

    backdrop-filter:blur(8px);

    transition:.25s;

    box-shadow:
        inset 0 0 8px rgba(255,255,255,.08),
        0 0 12px rgba(24,168,255,.45);
}

.play:hover{

    transform:scale(1.08);

    box-shadow:
        0 0 20px rgba(255,157,34,.75),
        0 0 28px rgba(24,168,255,.45);
}

/* ==================================================
   AUDIOVISUALIZER
================================================== */

.bars{

    height:28px;

    display:flex;

    align-items:center;

    gap:3px;

    padding:6px 8px;

    border-radius:12px;

    background:rgba(20,20,20,.45);

    backdrop-filter:blur(6px);

    box-shadow:
        inset 0 0 10px rgba(255,255,255,.05),
        0 0 12px rgba(24,168,255,.18);
}

.bars i{

    width:4px;

    border-radius:6px;

    background:
        linear-gradient(
            180deg,
            #ffb347 0%,
            #ff8c00 45%,
            #18a8ff 100%
        );

    transform-origin:center;

    opacity:.95;
}

.bars.is-playing i{

    animation:sbBeat .75s infinite alternate ease-in-out;
}

.bars.is-playing i:nth-child(2n){

    animation-duration:.55s;
}

.bars.is-playing i:nth-child(3n){

    animation-duration:.95s;
}

@keyframes sbBeat{

    from{

        transform:scaleY(.45);

        opacity:.45;
    }

    to{

        transform:scaleY(1);

        opacity:1;
    }
}

.bars i:nth-child(1){height:7px;}
.bars i:nth-child(2){height:13px;}
.bars i:nth-child(3){height:9px;}
.bars i:nth-child(4){height:18px;}
.bars i:nth-child(5){height:11px;}
.bars i:nth-child(6){height:22px;}
.bars i:nth-child(7){height:8px;}
.bars i:nth-child(8){height:15px;}
.bars i:nth-child(9){height:10px;}
.bars i:nth-child(10){height:19px;}
.bars i:nth-child(11){height:6px;}

/* ==================================================
   M3U BUTTON
================================================== */

.m3u{

    width:54px;
    height:54px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    color:#ffffff;

    text-decoration:none;

    background:rgba(20,20,20,.55);

    backdrop-filter:blur(8px);

    transition:.25s;

    box-shadow:
        inset 0 0 8px rgba(255,255,255,.08),
        0 0 12px rgba(255,157,34,.45);
}

.m3u:hover{

    transform:scale(1.08);

    box-shadow:
        0 0 18px rgba(255,157,34,.75),
        0 0 28px rgba(24,168,255,.45);
}

.m3u b{

    font-size:18px;

    line-height:1;
}

.m3u span{

    font-size:10px;

    font-weight:bold;
}

/* ==================================================
   MODERATORBILD
================================================== */

.schedule-modi{

    width:78px;
    height:78px;

    object-fit:cover;

    border-radius:14px;

    border:3px solid #ff9900;

    box-shadow:
        0 0 14px rgba(255,153,0,.75);

    display:none;
}

.schedule-modi.is-visible{

    display:block;
}

/* ==================================================
   AUDIO
================================================== */

audio{

    display:none;
}

.radio-widget.is-hidden{

    display:none;
}

/* ==================================================
   SOUNDBRIDGE CSS
   BLOCK 3 - DASHBOARD & ADMIN
================================================== */

.dashboard-wrap{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:150px 20px 80px;
}

.dashboard-wrap #playerContainer{
    width:100%;
    display:flex;
    justify-content:center;
    margin-bottom:30px;
}

.dashboard-box,
.admin-box,
.profile-box,
.modi-box{

    width:90%;
    max-width:900px;

    margin:0 auto;

    padding:35px;

    background:rgba(17,17,17,.72);

    backdrop-filter:blur(6px);

    border:2px solid #ff9900;

    border-radius:24px;

    box-shadow:0 0 35px rgba(0,0,0,.55);
}

.dashboard-box h1,
.admin-box h1,
.profile-box h1,
.modi-box h1{

    color:#ff9900;

    margin-bottom:15px;

    font-size:34px;
}

.dashboard-box h2,
.admin-box h2,
.profile-box h2,
.modi-box h2{

    color:#ff9900;

    margin:20px 0 12px;
}

.dashboard-box p,
.admin-box p,
.profile-box p,
.modi-box p{

    line-height:1.6;
}

/* ==================================================
   BOXEN
================================================== */

.area{

    margin-top:20px;

    padding:20px;

    border-radius:16px;

    background:rgba(0,0,0,.35);

    border:1px solid rgba(255,153,0,.45);
}

/* ==================================================
   BUTTONS
================================================== */

.sb-btn,
.btn,
.button-link{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:14px 22px;

    border-radius:14px;

    border:none;

    cursor:pointer;

    text-decoration:none;

    font-weight:bold;

    transition:.25s;
}

.sb-btn:hover,
.btn:hover,
.button-link:hover{

    transform:translateY(-2px);
}

.sb-back{
    background:#444;
    color:#fff;
}

.sb-plan{
    background:#0d6efd;
    color:#fff;
}

.sb-work{
    background:#ff9900;
    color:#000;
}

.sb-ok{
    background:#198754;
    color:#fff;
}

.sb-no{
    background:#dc3545;
    color:#fff;
}

/* ==================================================
   DASHBOARD BUTTON
================================================== */

.dashboard-back{

    text-align:center;

    margin:35px 0;
}

.dashboard-button{

    display:inline-block;

    padding:14px 34px;

    border-radius:14px;

    border:2px solid #ff9900;

    background:rgba(255,153,0,.15);

    color:#ff9900;

    font-weight:bold;

    transition:.25s;
}

.dashboard-button:hover{

    background:#ff9900;

    color:#000;

    box-shadow:0 0 18px rgba(255,153,0,.45);
}

/* ==================================================
   LOGOUT
================================================== */

.logout{

    margin-top:30px;

    text-align:right;
}

.logout a{

    color:#ff9900;

    font-weight:bold;
}

.logout a:hover{

    text-decoration:underline;
}

/* ==================================================
   SOUNDBRIDGE CSS
   BLOCK 4 - PROFIL & BENUTZER
================================================== */

/* ==================================================
   PROFIL
================================================== */

.profile-grid{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:25px;
    margin-top:25px;
}

.avatar-card,
.form-area{

    padding:20px;

    border-radius:18px;

    border:1px solid rgba(255,153,0,.45);

    background:rgba(0,0,0,.35);
}

.avatar-card{
    text-align:center;
}

/* ==================================================
   AVATAR
================================================== */

.avatar-preview{

    width:160px;
    height:160px;

    margin:0 auto 18px;

    display:flex;

    justify-content:center;
    align-items:center;

    overflow:hidden;

    border-radius:50%;

    border:3px solid #ff9900;

    background:#111;

    box-shadow:0 0 18px rgba(255,153,0,.45);

    font-size:60px;
}

.avatar-preview img{

    width:100%;
    height:100%;

    object-fit:cover;
}

/* ==================================================
   FORMULARE
================================================== */

.form-group{

    margin-bottom:18px;
}

.form-group label{

    display:block;

    margin-bottom:8px;

    color:#ff9900;

    font-weight:bold;
}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:12px 14px;

    border-radius:12px;

    border:1px solid rgba(255,153,0,.55);

    background:#111;

    color:#fff;

    font-size:15px;

    transition:.25s;
}

.form-group textarea{

    min-height:130px;

    resize:vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    outline:none;

    border-color:#ff9900;

    box-shadow:0 0 14px rgba(255,153,0,.45);
}

/* ==================================================
   CHECKBOXEN
================================================== */

.checkbox-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:10px 18px;
}

.checkbox-row{

    display:flex;

    align-items:center;

    gap:10px;
}

/* ==================================================
   BUTTONLEISTE
================================================== */

.button-row{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:15px;

    margin-top:25px;
}

/* ==================================================
   MELDUNGEN
================================================== */

.message{

    margin:20px 0;

    padding:14px 18px;

    border-radius:14px;

    font-weight:bold;
}

.message.success{

    background:rgba(0,160,70,.25);

    border:1px solid rgba(0,255,120,.45);

    color:#9cffc5;
}

.message.error{

    background:rgba(170,0,0,.25);

    border:1px solid rgba(255,90,90,.45);

    color:#ffbcbc;
}

/* ==================================================
   BENUTZERVERWALTUNG
================================================== */

table{

    width:100%;

    border-collapse:collapse;

    margin-top:20px;
}

th,
td{

    padding:12px;

    text-align:left;

    border-bottom:1px solid rgba(255,153,0,.30);
}

th{

    color:#ff9900;
}

.delete-btn{

    padding:8px 14px;

    border:none;

    border-radius:8px;

    background:#c62828;

    color:#fff;

    cursor:pointer;

    transition:.25s;
}

.delete-btn:hover{

    background:#ff0033;
}

/* ==================================================
   MOBILE USER CARDS
================================================== */

.desktop-users{

    display:block;
}

.mobile-users{

    display:none;
}

.user-card{

    margin-bottom:16px;

    padding:16px;

    border-radius:15px;

    border:1px solid rgba(255,153,0,.55);

    background:rgba(0,0,0,.40);
}

/* ==================================================
   SOUNDBRIDGE CSS
   BLOCK 5 - EVENTVERWALTUNG
================================================== */

/* ==================================================
   EVENT FORMULAR
================================================== */

.admin-box .event-form{
    margin-top:25px;
}

.admin-box .event-form .area{

    margin-bottom:22px;

    padding:24px;

    border-radius:18px;

    border:1px solid rgba(255,153,0,.40);

    background:rgba(0,0,0,.45);

    box-shadow:0 0 18px rgba(255,153,0,.08);
}

.admin-box .event-form label{

    display:block;

    margin-bottom:8px;

    color:#ffffff;

    font-weight:bold;
}

.admin-box .event-form input,
.admin-box .event-form select,
.admin-box .event-form textarea{

    width:100%;

    padding:12px 14px;

    border-radius:12px;

    border:1px solid rgba(255,153,0,.45);

    background:#111;

    color:#fff;

    font-size:15px;

    transition:.25s;
}

.admin-box .event-form textarea{

    min-height:140px;

    resize:vertical;
}

.admin-box .event-form input:focus,
.admin-box .event-form select:focus,
.admin-box .event-form textarea:focus{

    outline:none;

    border-color:#ff9900;

    box-shadow:0 0 14px rgba(255,153,0,.40);
}

/* ==================================================
   BUTTONS
================================================== */

.admin-box .event-form button{

    display:inline-flex;

    justify-content:center;
    align-items:center;

    gap:10px;

    margin-top:15px;

    padding:14px 30px;

    border:none;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            #ff9900,
            #ff5e00
        );

    color:#ffffff;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;

    transition:.25s;

    box-shadow:
        0 0 18px rgba(255,153,0,.35);
}

.admin-box .event-form button:hover{

    transform:translateY(-2px);

    box-shadow:
        0 0 24px rgba(255,153,0,.55);
}

/* ==================================================
   EVENT SLIDER
================================================== */

.event-slider{

    position:relative;
}

.event-slide{

    display:none;
}

.event-slide.active{

    display:block;
}

/* ==================================================
   EVENT BUTTON
================================================== */

.event-button{

    display:inline-block;

    margin-top:15px;

    padding:10px 18px;

    border-radius:10px;

    background:#ff9900;

    color:#000;

    font-weight:bold;

    text-decoration:none;

    transition:.25s;
}

.event-button:hover{

    background:#ffb84d;
}

/* ==================================================
   KI STATUS
================================================== */

.ai-status{

    margin-top:20px;

    padding:18px;

    border-radius:14px;

    background:rgba(255,153,0,.10);

    border:1px solid rgba(255,153,0,.35);
}

.ai-status h3{

    color:#ff9900;

    margin-bottom:10px;
}

.ai-status p{

    margin-bottom:8px;
}

/* ==================================================
   KI INFORMATIONEN
================================================== */

.ai-info{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:15px;

    margin-top:20px;
}

.ai-card{

    padding:18px;

    border-radius:14px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,153,0,.25);

    text-align:center;
}

.ai-card strong{

    display:block;

    margin-bottom:6px;

    color:#ff9900;

    font-size:22px;
}

/* ==================================================
   KI MELDUNGEN
================================================== */

.ai-message{

    margin-top:18px;

    padding:14px;

    border-radius:12px;

    background:rgba(0,0,0,.40);

    border-left:4px solid #ff9900;
}

.ai-message.success{

    border-left-color:#28a745;
}

.ai-message.warning{

    border-left-color:#ffc107;
}

.ai-message.error{

    border-left-color:#dc3545;
}

/* ==================================================
   SOUNDBRIDGE CSS
   BLOCK 6 - TICKETMASTER EVENTMANAGER
================================================== */

/* ==================================================
   ÜBERSICHT
================================================== */

.ticketmaster-overview{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:18px;
    margin:25px 0;
}

.ticketmaster-stat{
    padding:22px;
    text-align:center;
    border-radius:16px;
    background:rgba(20,20,20,.55);
    border:1px solid rgba(255,153,0,.35);
}

.ticketmaster-stat strong{
    display:block;
    font-size:30px;
    color:#ff9900;
    margin-bottom:8px;
}

/* ==================================================
   AKTIONEN
================================================== */

.ticketmaster-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin:25px 0;
}

.ticketmaster-actions button{
    padding:12px 20px;
    border:none;
    border-radius:12px;
    background:#ff9900;
    color:#000;
    font-weight:bold;
    cursor:pointer;
    transition:.25s;
}

.ticketmaster-actions button:hover{
    transform:translateY(-2px);
    box-shadow:0 0 16px rgba(255,153,0,.40);
}

/* ==================================================
   EVENTLISTE
================================================== */

.ticketmaster-section-content{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.ticketmaster-section-content[hidden]{
    display:none;
}

/* ==================================================
   EVENTKARTE
================================================== */

.ticketmaster-compact-card{

    display:grid;

    grid-template-columns:110px 1fr;

    gap:18px;

    padding:18px;

    border-radius:18px;

    border:1px solid rgba(255,153,0,.30);

    background:rgba(15,15,15,.60);

    transition:.25s;
}

.ticketmaster-compact-card:hover{

    border-color:#ff9900;

    box-shadow:0 0 18px rgba(255,153,0,.20);
}

/* ==================================================
   BILDRAHMEN
================================================== */

.ticketmaster-image-frame{

    width:100px;
    height:70px;

    overflow:hidden;

    border-radius:10px;

    border:1px solid rgba(255,153,0,.40);

    background:#222;

    display:flex;

    justify-content:center;
    align-items:center;

    flex-shrink:0;

    box-shadow:0 2px 8px rgba(0,0,0,.35);
}

.ticketmaster-compact-image{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.ticketmaster-compact-placeholder{

    width:100%;
    height:100%;

    display:flex;

    justify-content:center;
    align-items:center;

    background:#2b2b2b;

    font-size:34px;
}

/* ==================================================
   TEXTBEREICH
================================================== */

.ticketmaster-compact-content{

    display:flex;

    flex-direction:column;

    min-width:0;
}

.ticketmaster-compact-heading{

    display:flex;

    justify-content:space-between;

    gap:15px;

    align-items:flex-start;
}

.ticketmaster-compact-heading h3{

    color:#ff9900;

    margin-bottom:4px;
}

.ticketmaster-compact-meta{

    display:grid;

    grid-template-columns:repeat(2,minmax(160px,1fr));

    gap:8px 18px;

    margin:14px 0;

    color:#dddddd;
}

.ticketmaster-compact-meta strong{

    color:#ff9900;
}

/* ==================================================
   KI SCORE
================================================== */

.ticketmaster-ai-score{

    padding:6px 12px;

    border-radius:20px;

    color:#fff;

    font-weight:bold;

    white-space:nowrap;
}

.score-green{
    background:#198754;
}

.score-yellow{
    background:#ff9900;
    color:#000;
}

.score-red{
    background:#dc3545;
}

/* ==================================================
   STATUS
================================================== */

.ticketmaster-status{

    display:inline-block;

    margin-top:6px;

    padding:4px 10px;

    border-radius:20px;

    background:rgba(255,255,255,.08);
}

/* ==================================================
   QUELLE
================================================== */

.ticketmaster-source{

    display:flex;

    align-items:center;

    gap:12px;

    margin-top:16px;

    padding:14px;

    border-left:4px solid #026cdf;

    border-radius:10px;

    background:rgba(2,108,223,.08);
}

.ticketmaster-logo{

    width:120px;

    height:auto;
}

/* ==================================================
   BUTTONS
================================================== */

.ticketmaster-event-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:18px;
}

.ticketmaster-event-buttons button,
.ticketmaster-event-buttons a{

    padding:10px 16px;

    border:none;

    border-radius:10px;

    text-decoration:none;

    font-weight:bold;

    cursor:pointer;

    transition:.25s;
}

.ticketmaster-details-button{
    background:#555;
    color:#fff;
}

.ticketmaster-approve-button{
    background:#198754;
    color:#fff;
}

.ticketmaster-reject-button{
    background:#dc3545;
    color:#fff;
}

.ticketmaster-link-button{
    background:#ff9900;
    color:#000;
}

.ticketmaster-event-buttons button:hover,
.ticketmaster-event-buttons a:hover{

    transform:translateY(-2px);
}

/* ==================================================
   DETAILS
================================================== */

.ticketmaster-card-details{

    margin-top:18px;

    padding:16px;

    border-top:1px solid rgba(255,153,0,.25);

    background:rgba(255,255,255,.03);

    border-radius:12px;
}

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

@media(max-width:900px){

    .ticketmaster-compact-card{
        grid-template-columns:1fr;
    }

    .ticketmaster-image-frame{
        width:100%;
        height:220px;
    }

    .ticketmaster-compact-meta{
        grid-template-columns:1fr;
    }

    .ticketmaster-compact-heading{
        flex-direction:column;
    }

    .ticketmaster-event-buttons{
        flex-direction:column;
    }

    .ticketmaster-event-buttons button,
    .ticketmaster-event-buttons a{
        width:100%;
    }
}

/* ==================================================
   SOUNDBRIDGE CSS
   BLOCK 7 - MOBILE & ABSCHLUSS
================================================== */

/* ==================================================
   TABLET
================================================== */

@media (max-width:1024px){

    .nav-inner{
        gap:16px;
    }

    .radio-widget{
        position:static;
        width:92%;
        max-width:520px;
        margin:100px auto 25px;
    }

    .content-box,
    .dashboard-box,
    .admin-box,
    .profile-box,
    .modi-box{
        width:92%;
    }

}

/* ==================================================
   HANDY
================================================== */

@media (max-width:768px){

/* ---------- Hintergrund ---------- */

body{

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,.75) 75%,
            #000 100%
        ),
        url("../soundbridge-header-v3.png");

    background-size:100% auto;

    background-position:center top;

    background-repeat:no-repeat;

    background-attachment:fixed;
}

/* ---------- Navigation ---------- */

.navbar,
.footer{
    display:none;
}

.menu-toggle{
    display:flex;
}

/* ---------- Container ---------- */

.hero{

    min-height:100vh;

    padding:20px 0;
}

.content-box,
.dashboard-box,
.admin-box,
.profile-box,
.modi-box{

    width:94%;

    margin:20px auto 60px;

    padding:22px;

    border-radius:20px;
}

/* ---------- Überschriften ---------- */

.content-box h1,
.dashboard-box h1,
.admin-box h1,
.profile-box h1,
.modi-box h1{

    font-size:28px;
}

.content-box h2,
.dashboard-box h2,
.admin-box h2,
.profile-box h2,
.modi-box h2{

    font-size:22px;
}

.content-box p{

    font-size:16px;
}

/* ---------- Player ---------- */

.radio-widget{

    position:relative;

    top:auto;
    left:auto;
    right:auto;

    width:94%;

    margin:20px auto;
}

.control-row{

    grid-template-columns:48px 1fr 48px;

    gap:16px;
}

.play,
.m3u{

    width:48px;
    height:48px;
}

.schedule-modi{

    display:none;
}

/* ---------- Profil ---------- */

.profile-grid{

    grid-template-columns:1fr;
}

.checkbox-grid{

    grid-template-columns:1fr;
}

.button-row{

    flex-direction:column;
}

/* ---------- Tabellen ---------- */

.desktop-users{
    display:none;
}

.mobile-users{
    display:block;
}

/* ---------- Formulare ---------- */

.form-grid{

    grid-template-columns:1fr;
}

.preview-grid{

    grid-template-columns:1fr;
}

.admin-box .event-form button{

    width:100%;
}

/* ---------- Dashboard Buttons ---------- */

.sb-btn,
.btn,
.button-link,
.dashboard-button{

    width:100%;

    justify-content:center;
}

/* ---------- Ticketmaster ---------- */

.ticketmaster-overview{

    grid-template-columns:1fr;
}

.ticketmaster-actions{

    flex-direction:column;
}

.ticketmaster-actions button{

    width:100%;
}

.ticketmaster-compact-card{

    grid-template-columns:1fr;

    gap:16px;
}

.ticketmaster-image-frame{

    width:100%;

    height:220px;
}

.ticketmaster-compact-heading{

    flex-direction:column;

    gap:10px;
}

.ticketmaster-compact-meta{

    grid-template-columns:1fr;
}

.ticketmaster-source{

    flex-direction:column;

    align-items:flex-start;
}

.ticketmaster-logo{

    width:110px;
}

.ticketmaster-event-buttons{

    flex-direction:column;
}

.ticketmaster-event-buttons button,
.ticketmaster-event-buttons a{

    width:100%;
}

}

/* ==================================================
   ENDE DER SOUNDBRIDGE CSS
================================================== */