@font-face {
    font-family: 'InterLocal';
    src: url('InterVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    src: url('fonts/fa-solid-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    src: url('fonts/fa-brands-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}


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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'InterLocal',sans-serif;
    background:#111;
    color:white;
}


/* ==================================================
   NAVIGATION – DESKTOP
   ================================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    padding:35px 70px;

    display:flex;
    justify-content:flex-end;

    z-index:1000;

    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.75),
        rgba(0,0,0,0)
    );
}

nav{
    display:flex;
    gap:55px;
}

nav a{
    color:white;
    text-decoration:none;

    letter-spacing:2px;
    font-size:18px;
    font-weight:500;

    transition:.3s;

    border-bottom:2px solid transparent;
    padding-bottom:6px;
}

nav a:hover{
    color:#f2c200;
}

nav a.active{
    color:#f2c200;
    border-bottom:2px solid #f2c200;
    padding-bottom:6px;
}


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

.hero{
    width:100%;
    height:100vh;

    position:relative;

    background-image:url("images/hero-neu.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-content{
    height:100%;

    display:flex;
    flex-direction:column;

    justify-content:flex-end;
    align-items:flex-start;

    padding:0 8% 70px;
}

.hero-logo{
    display:none;
}

.hero-icons{
    display:flex;
    gap:20px;
}

.hero-icons a{
    color:white;
    font-size:34px;
    transition:.3s;
}

.hero-icons a:hover{
    color:#f2c200;
}


/* ==================================================
   AKTUELLER SONG – HERO
   ================================================== */

.hero-latest{
    position:absolute;

    right:13%;
    bottom:110px;

    display:flex;
    flex-direction:column;

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

    gap:6px;

    color:white;
    text-align:center;

    z-index:100;
}

.hero-latest span{
    display:block;

    color:white;

    font-size:22px;
    font-weight:800;
    letter-spacing:1px;

    margin:0;
}

.hero-latest strong{
    display:block;

    color:white;

    font-size:38px;
    font-weight:900;
    letter-spacing:1px;

    margin:0;
}

.hero-latest a{
    display:flex;

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

    width:50px;
    height:50px;

    background:#a000ff;
    border:2px solid #a000ff;
    border-radius:50%;

    color:white;
    font-size:38px;
    line-height:1;

    text-decoration:none;

    margin:4px 0 0 0;
}

.hero-latest a:hover{
    color:#c000ff;
}


/* ==================================================
   ÜBER
   ================================================== */

#about{
    min-height:100vh;

    background:#171717;

    padding:90px 8%;
}

.about-container{
    max-width:1200px;
    margin:auto;

    display:flex;
    align-items:center;

    gap:50px;
}

.about-image{
    width:420px;

    border-radius:12px;

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

.about-text{
    flex:1;
}

.about-text h2{
    font-size:42px;

    margin-bottom:30px;

    letter-spacing:2px;
}

.about-text p{
    font-size:18px;
    line-height:1.8;

    color:#d6d6d6;

    margin-bottom:22px;
}

.about-highlight strong{
    color:#f2c200;
}

.about-highlight em{
    color:#f5f5f5;
}


/* ==================================================
   KONTAKT
   ================================================== */

#contact{
    min-height:100vh;

    background:#111;

    display:flex;

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

    padding:80px 8%;
}

.contact-container{
    max-width:700px;

    text-align:center;
}

.contact-container h2{
    font-size:56px;

    color:white;

    margin-bottom:30px;
}

.contact-container p{
    font-size:24px;
    line-height:1.8;

    color:#ddd;

    margin-bottom:25px;
}

.contact-container strong{
    color:white;
}

.contact-mail a{
    color:#f2c200;

    text-decoration:none;

    font-size:24px;
    font-weight:600;
}

.contact-mail i{
    margin-right:12px;
}


/* ==================================================
   RELEASES
   ================================================== */

#releases{
    min-height:100vh;

    background:#171717;

    padding:120px 8%;
}

#releases h2{
    text-align:center;

    font-size:56px;

    color:white;

    margin-bottom:70px;
}

.release-grid{
    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;
}

.release-card{
    width:220px;

    background:#1f1f1f;

    display:flex;
    flex-direction:column;

    border-radius:18px;

    overflow:hidden;

    transition:.3s;

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

.release-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 0 25px rgba(242,194,0,.25);
}

.release-card img{
    width:100%;

    display:block;
}

.release-card h3{
    color:white;

    font-size:26px;

    height:84px;

    padding:14px 20px 8px;
}

.artist{
    color:#999;

    padding:0 20px;
}

.release-footer{
    display:flex;

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

    padding:25px;

    margin-top:auto;
}

.release-footer span{
    color:#bbb;
}

.release-info{
    display:flex;

    flex-direction:column;

    gap:8px;
}

.story-link{
    display:flex;

    align-items:center;

    gap:6px;

    color:#f2c200;

    text-decoration:none;

    font-size:15px;

    font-weight:600;
}

.story-link:hover{
    color:#ffd84d;
}

.release-footer a.play-button{
    color:#f2c200;

    font-size:38px;

    text-decoration:none;
}


/* ==================================================
   STORY POPUP
   ================================================== */

.modal{
    display:none;

    position:fixed;

    inset:0;

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

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

    z-index:9999;
}

.modal-content{
    background:#1f1f1f;

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

    padding:30px;

    border-radius:18px;

    color:white;

    position:relative;

    box-shadow:
        0 20px 60px rgba(0,0,0,.5);
}

.modal-content h2{
    color:#f2c200;

    margin-bottom:15px;
}

.modal-content h3{
    margin-bottom:20px;
}

.modal-content p{
    line-height:1.7;

    color:#ddd;
}

.close{
    position:absolute;

    top:15px;
    right:20px;

    font-size:30px;

    cursor:pointer;

    color:#bbb;
}

.close:hover{
    color:#fff;
}


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

.site-footer{
    width:100%;

    padding:24px 20px;

    display:flex;

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

    flex-wrap:wrap;

    gap:8px 18px;

    background:#0b0b0b;

    color:#aaa;

    font-size:14px;

    text-align:center;
}

.site-footer a{
    color:#aaa;

    text-decoration:none;

    transition:color .2s ease;
}

.site-footer a:hover{
    color:#f2c400;
}

.site-footer .ki-hinweis{
    color:#777;
}


/* ==================================================
   RECHTLICHE SEITEN
   ================================================== */

.legal-page{
    max-width:900px;

    margin:0 auto;

    padding:90px 40px 20px;
}

.legal-page h1{
    font-size:32px;

    margin-bottom:18px;

    color:white;
}

.legal-page h2{
    font-size:17px;

    margin-top:12px;
    margin-bottom:4px;

    color:#f2c400;
}

.legal-page p{
    font-size:13px;

    line-height:1.3;

    color:#ddd;

    margin-bottom:6px;
}

.legal-page a{
    color:#f2c400;

    text-decoration:none;
}

.legal-page a:hover{
    text-decoration:underline;
}


/* ==================================================
   MOBILE – EINZIGER MOBILE BLOCK
   ================================================== */

@media (max-width:600px){

    /* ----------------------------------------------
       ALLGEMEIN
       ---------------------------------------------- */

    html{
        scroll-behavior:smooth;
    }

    body{
        width:100%;
        overflow-x:hidden;
    }


    /* ----------------------------------------------
       NAVIGATION
       ---------------------------------------------- */

    header{
        position:fixed !important;

        top:0 !important;
        left:0 !important;

        width:100% !important;

        height:64px !important;

        padding:0 10px !important;

        display:flex !important;

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

        background:rgba(17,17,17,.96) !important;

        z-index:10000 !important;
    }

    nav{
        width:100% !important;

        display:flex !important;

        justify-content:space-between !important;
        align-items:center !important;

        gap:0 !important;

        flex-wrap:nowrap !important;
    }

    nav a{
        flex:0 0 auto !important;

        font-size:12px !important;

        letter-spacing:1.2px !important;

        white-space:nowrap !important;

        padding:0 !important;
        margin:0 !important;

        border-bottom:none !important;
    }


    /* ----------------------------------------------
       HERO
       ---------------------------------------------- */

    .hero{
    height:100svh;

    width:100%;

    overflow:hidden;

    background-image:url("images/dein-mobile-hero.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;
}

    .hero-content{
        position:relative;

        width:100%;
        height:100%;

        padding:0 15px 50px;

        display:flex;

        flex-direction:column;

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

        overflow:hidden;
    }


    /* LOGO */

    .hero-logo{
        display:block !important;

        position:absolute !important;

        top:115px !important;

        left:50% !important;

        transform:translateX(-50%) !important;

        width:78% !important;

        max-width:380px !important;

        height:auto !important;

        z-index:10 !important;

        mix-blend-mode:screen !important;
    }


    /* ZUSATZTEXT */

    .hero-content::before{
        display:block !important;

        content:"Songwriting & Collaborative Production.";

        position:absolute !important;

        top:245px !important;

        left:53% !important;

        transform:translateX(-50%) !important;

        width:100% !important;

        text-align:center !important;

        color:white !important;

        font-size:15px !important;

        font-weight:600 !important;

        letter-spacing:.2px !important;

        white-space:nowrap !important;

        z-index:11 !important;
    }


    /* HERO – AKTUELLER SONG */

    .hero-latest{
        position:absolute !important;

        left:0 !important;
        right:0 !important;

        bottom:145px !important;

        width:100% !important;

        display:flex !important;

        flex-direction:column !important;

        align-items:center !important;

        justify-content:center !important;

        gap:5px !important;

        z-index:50 !important;

        text-align:center !important;
    }

    .hero-latest span{
        font-size:17px !important;

        line-height:1.2 !important;

        color:white !important;
    }

    .hero-latest strong{
        font-size:30px !important;

        line-height:1.15 !important;

        color:white !important;
    }

    .hero-latest a{
        display:flex !important;

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

        width:70px !important;
        height:70px !important;

        margin:8px 0 0 0 !important;

        background:#a000ff !important;

        color:white !important;

        border:0 !important;

        border-radius:50% !important;

        font-size:36px !important;

        line-height:1 !important;

        text-decoration:none !important;
    }


    /* HERO – SOCIAL ICONS */

    .hero-icons{
        position:absolute !important;

        left:50% !important;

        bottom:45px !important;

        transform:translateX(-50%) !important;

        width:100% !important;

        display:flex !important;

        justify-content:center !important;

        align-items:center !important;

        gap:15px !important;

        z-index:50 !important;
    }

    .hero-icons a{
        font-size:35px !important;

        color:white !important;
    }


    /* ----------------------------------------------
       ÜBER – MOBILE
       ---------------------------------------------- */

    #about{
        min-height:0 !important;

        height:auto !important;

        padding:64px 0 0 0 !important;

        background:#171717 !important;

        overflow:visible !important;
    }

    #about .about-container{
        width:100% !important;

        max-width:none !important;

        margin:0 !important;

        padding:0 !important;

        display:flex !important;

        flex-direction:column !important;

        align-items:stretch !important;

        gap:0 !important;
    }

    #about .about-image{
        width:100% !important;

        height:35svh !important;

        min-height:0 !important;

        flex:none !important;

        object-fit:cover !important;

        object-position:center center !important;

        border-radius:0 !important;

        box-shadow:none !important;

        display:block !important;
    }

    #about .about-text{
        width:100% !important;

        height:auto !important;

        min-height:55svh !important;

        flex:none !important;

        padding:35px 22px 45px !important;

        text-align:center !important;

        overflow:visible !important;
    }

    #about .about-text h2{
        font-size:34px !important;

        line-height:1.15 !important;

        margin-bottom:30px !important;

        letter-spacing:0 !important;

        white-space:nowrap !important;
    }

    #about .about-text p{
        font-size:17px !important;

        line-height:1.6 !important;

        color:#d6d6d6 !important;

        margin-bottom:25px !important;
    }

    #about .about-highlight{
        margin-top:5px !important;
    }

    #about .about-highlight strong{
        color:#f2c200 !important;
    }

    #about .about-highlight em{
        color:#f5f5f5 !important;
    }


    /* ----------------------------------------------
       KONTAKT – MOBILE
       ---------------------------------------------- */

    #contact{
        min-height:0 !important;

        height:auto !important;

        padding:64px 0 0 0 !important;

        background:#111 !important;

        display:block !important;

        overflow:visible !important;
    }

    #contact .about-container{
        width:100% !important;

        max-width:none !important;

        margin:0 !important;

        padding:0 !important;

        display:flex !important;

        flex-direction:column !important;

        align-items:stretch !important;

        gap:0 !important;
    }

    #contact .about-image{
        width:100% !important;

        height:35svh !important;

        min-height:0 !important;

        flex:none !important;

        object-fit:cover !important;

        object-position:center center !important;

        border-radius:0 !important;

        box-shadow:none !important;

        display:block !important;
    }

    #contact .about-text{
        width:100% !important;

        height:auto !important;

        min-height:55svh !important;

        flex:none !important;

        padding:35px 22px 45px !important;

        text-align:center !important;

        overflow:visible !important;
    }

    #contact .about-text h2{
        font-size:40px !important;

        line-height:1.15 !important;

        margin-bottom:30px !important;

        letter-spacing:1px !important;
    }

    #contact .about-text p{
        font-size:17px !important;

        line-height:1.6 !important;

        color:#ddd !important;

        margin-bottom:25px !important;
    }

    #contact .contact-mail{
        margin-top:30px !important;
    }

    #contact .contact-mail a{
        display:inline-flex !important;

        align-items:center !important;

        justify-content:center !important;

        gap:10px !important;

        color:#f2c200 !important;

        font-size:20px !important;

        font-weight:600 !important;

        text-decoration:none !important;
    }

    #contact .contact-mail i{
        margin-right:0 !important;
    }


    /* ----------------------------------------------
       RELEASES – MOBILE
       ---------------------------------------------- */

    #releases{
        min-height:0 !important;

        padding:100px 20px 60px !important;

        background:#171717 !important;
    }

    #releases h2{
        font-size:38px !important;

        margin-bottom:40px !important;
    }

    .release-grid{
        display:flex !important;

        flex-direction:column !important;

        align-items:center !important;

        justify-content:flex-start !important;

        gap:30px !important;
    }

    .release-card{
        width:280px !important;

        max-width:100% !important;
    }


    /* ----------------------------------------------
       STORY POPUP – MOBILE
       ---------------------------------------------- */

    .modal{
        position:fixed !important;

        inset:0 !important;

        width:100vw !important;
        height:100vh !important;

        display:none;

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

        padding:20px !important;

        box-sizing:border-box !important;

        z-index:99999 !important;
    }

    .modal-content{
        position:relative !important;

        width:calc(100vw - 40px) !important;

        max-width:340px !important;

        max-height:75vh !important;

        overflow-y:auto !important;

        margin:0 !important;

        padding:25px 20px !important;

        box-sizing:border-box !important;

        border-radius:18px !important;
    }

    .modal-content h2{
        font-size:24px !important;

        margin-bottom:12px !important;
    }

    .modal-content h3{
        font-size:18px !important;

        line-height:1.3 !important;

        margin-bottom:15px !important;
    }

    .modal-content p{
        font-size:15px !important;

        line-height:1.5 !important;
    }

    .close{
        top:10px !important;

        right:14px !important;

        font-size:28px !important;
    }


    /* ----------------------------------------------
       FOOTER – MOBILE
       ---------------------------------------------- */

    .site-footer{
        font-size:13px !important;

        gap:8px 12px !important;

        padding:20px 15px !important;
    }


    /* ----------------------------------------------
       RECHTLICHE SEITEN – MOBILE
       ---------------------------------------------- */

    .legal-page{
        padding:100px 20px 30px !important;
    }

    .legal-page h1{
        font-size:30px !important;

        margin-bottom:20px !important;
    }

    .legal-page h2{
        font-size:18px !important;

        margin-top:18px !important;
    }

    .legal-page p{
        font-size:14px !important;

        line-height:1.4 !important;
    }

}
/* ==================================================
   MOBILE FEINSCHLIFF – NUR HANDY
   DESKTOP NICHT VERÄNDERN
   ================================================== */

@media (max-width:600px){

    /* -------------------------
       NAVIGATION
       ------------------------- */

    body > header nav{
        justify-content:center !important;
        gap:18px !important;
    }

    body > header nav a{
        font-size:14px !important;
        letter-spacing:1px !important;
        margin:0 !important;
        padding:0 !important;
    }


    /* -------------------------
       ÜBER – TEXT VOLL SICHTBAR
       ------------------------- */

    #about{
        height:auto !important;
        min-height:0 !important;
        overflow:visible !important;
    }

    #about .about-text{
        height:auto !important;
        min-height:0 !important;
        padding:15px 22px 20px !important;
        overflow:visible !important;
    }

    #about .about-text h2{
        font-size:28px !important;
        line-height:1.2 !important;
        white-space:normal !important;
        margin-bottom:22px !important;
    }

    #about .about-text p{
        font-size:15px !important;
        line-height:1.5 !important;
        margin-bottom:18px !important;
    }


    /* -------------------------
       KONTAKT – TEXT VOLL SICHTBAR
       ------------------------- */

    #contact{
        height:auto !important;
        min-height:0 !important;
        overflow:visible !important;
    }

    #contact .about-container{
        height:auto !important;
    }

    #contact .about-image{
        height:40svh !important;
    }

    #contact .about-text{
        height:auto !important;
        min-height:0 !important;
        padding:30px 22px 55px !important;
        overflow:visible !important;
    }

    #contact .about-text h2{
        font-size:28px !important;
        line-height:1.2 !important;
        margin-bottom:22px !important;
    }

    #contact .about-text p{
        font-size:15px !important;
        line-height:1.5 !important;
        margin-bottom:18px !important;
    }

    #contact .contact-mail{
        margin-top:25px !important;
    }

    #contact .contact-mail a{
        font-size:18px !important;
    }

}
