/* __________________ Info _______________________________________________ */

/* __________________ Font Improt ________________________________________ */
@font-face {
    font-family: "Remus Variable";
    src: url('../fonts/RemusVariableVF.woff2') format('woff2'),
       url('../fonts/RemusVariableVF.woff') format('woff'),
       url('../fonts/RemusVariableVF.ttf') format('truetype');
    font-weight: 400 700;
    font-display: swap; 
    font-style: normal;

    /* font-stretch: 50 100; */
    /* font-style: oblique; */
    /* font-variation-settings: "ital" 0-1; */

}




/* __________________ 00 Root / Variables _____________________________________ */

:root {
    /* Regular */
    --f-size-small: 1.5rem;
    --f-size-regular: 2rem;
    --f-size-large: 3.4rem;
    --f-size-huge-flyer: 6.5rem;
    --f-size-huge: 18rem;

    --l-heigt-huge: calc(var(--f-size-huge)*.96);
}

@media screen and (max-height: 720px) {
    :root{
        --f-size-small: 1.5rem;
        --f-size-regular: 2.3rem;
        --f-size-large: 3.4rem;
        --f-size-huge: 16rem;
    }
}

@media (orientation: portrait) {
    :root{
        --f-size-small-mobile: 1.5rem;
        --f-size-medium-small-mobile: 1.7rem;
        --f-size-regular-mobile: 2.3rem;
        --f-size-large-mobile: 3.4rem;
        --f-size-huge-mobile: 5.5rem;

        --l-heigt-huge-mobile: calc(var(--f-size-huge-mobile)*.96); 
    }
}


/* __________________ 01 General Styling _________________________________ */

::selection {
    background-color: var(--c-f);
    color: var(--bg);
}

/* __________________ 01_1 Reset _________________________________________ */

html {
    font-family: 'Remus Variable', Helvetica, Arial, sans-serif;
    font-size: 1vh;
    background-color: var(--bg);
}

body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100dvh;
}

a {
    color: var(--c-f);
    text-decoration: none;
}

p,
h1,
h2,
h3 {
    padding-bottom: var(--f-size-regular);
    margin: 0;
    font-style: normal;
    font-weight: normal;
    color: var(--c-f);

    @media screen and (orientation: portrait){
         padding-bottom: var(--f-size-regular-mobile); 
    }
}

p {
    font-size: var(--f-size-regular);

    @media screen and (orientation: portrait){
        font-size: var(--f-size-regular-mobile);
    }
}

h1 {
    font-size: var(--f-size-huge);

    @media screen and (orientation: portrait){
        font-size: var(--f-size-huge-mobile);
    }
}

h2 {
    font-size: var(--f-size-large);

    @media screen and (orientation: portrait){
        font-size: var(--f-size-large-mobile);
    }
}

h3 {
    font-size: var(--f-size-small);

    @media screen and (orientation: portrait){
        font-size: var(--f-size-small-mobile);
    }
}

ul {
    list-style: none;
    padding-left: 0;
    padding-top: 0;
    margin: 0;
    padding-bottom: var(--f-size-regular);
    color: var(--c-f);
    font-size: var(--f-size-regular);

    @media screen and (orientation: portrait){
        padding-bottom: var(--f-size-regular-mobile);
        font-size: var(--f-size-regular-mobile);
    }
}

ol {
    padding-left: 0;
    padding-top: 0;
    margin: 0;
    padding-bottom: var(--f-size-regular);
    color: var(--c-f);
    font-size: var(--f-size-regular);
    list-style-position: inside;

    @media screen and (orientation: portrait){
        padding-bottom: var(--f-size-regular-mobile);
        font-size: var(--f-size-regular-mobile);
    }
}

img {
    width: 100%;
    height: 100%;
}


/* __________________ 01_2 Additoional Typographic Control ________________ */



.f-size-small {
    font-size: var(--f-size-small);
}


/* __________________ 01_3 Background Image _______________________________ */

#background-image {
    position: fixed;
    left: 0;
    top: 0;
    height: 100lvh;
    width: 100%;

    object-fit: cover;

    z-index: -1;

    @media screen and (orientation: portrait) {
        transform: scale(2); 
    }

}


/* __________________ 02 Menu ______________________________________________ */

.menu {
    position: fixed;
    padding: 1rem;

    font-size: var(--f-size-regular);

    color: var(--c-f);

    z-index: 90;

    transition: color 400ms;

    &:hover, &.active{
        text-decoration: underline;
    }

   &#releases {
        left: 0;
    }

   &#termine {
        right: 0;

        /* body:has(#flyer) & {
            color: white;
            mix-blend-mode: exclusion;
        } */
    }

   &#about {
        bottom: 0;
        left: 0;

    }

   &#reset {
        bottom: 0;
        right: 0;
        
        /* body:has(#flyer) & {
            color: white;
            mix-blend-mode: exclusion;
        } */
    }


}






/* __________________ 03 Index (Default) ______________________________________________ */

/* Main Content Table */

.table-layout {
    position: relative;
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;

    font-size: var(--f-size-regular);
    
    padding-top: 4rem;

    @media screen and (orientation: landscape) {
        body:has(#flyer) & {
            align-items: baseline;
            width: 50%;
            padding-top: 8rem;
        }
    }
}

/* Colums inside Tabele */

.single-column {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1rem;

    &.release {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }

    &:last-child {
        margin-bottom: 8rem;

        @media screen and (orientation: portrait ){
            margin-bottom: 6rem;
        }
    }
}

/* Headline inside Column */
.column-main {
    font-size: var(--f-size-huge);
    line-height: var(--l-heigt-huge);
    color: var(--c-f-huge);

    letter-spacing: -.5rem;
    
    transition: font-weight 500ms ease, font-stretch 500ms ease;

    &:hover{
        font-weight: 700;
        font-stretch: 84%; 
    }

    a{
    color: var(--c-f-huge);
    }

    body:has(#flyer) & {
        font-size: var(--f-size-huge-flyer);
        line-height: 100%;
        letter-spacing: -0.3rem;

        &:hover{
            font-stretch: 80%; 
        } 
    }

    @media screen and (orientation: portrait ){
        font-size: var(--f-size-huge-mobile) !important;
        line-height: var(--l-heigt-huge-mobile) !important;
        letter-spacing: 0rem !important;
    }
}

/* Sublines inside Column */

.column-add-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: -1rem;

    & > *{
        margin-right: 1rem;
    }

    .event-date {
        color: var(--c-f);
    }

    .event-city {
        margin-right: 4rem;
    }

    .ticket:hover {
        text-decoration: underline;
    }

     @media screen and (orientation: portrait ){
        font-size: var(--f-size-medium-small-mobile);
        margin-top: 0;
     }
}





/* Display Albumcover on Hover */
.hover-image {
    width: 60rem;
    position: absolute;
    display: none;
    z-index: -2;
}

.single-column:hover .hover-image {
    display: block;
    z-index: -2;
}

.hidden {
    display: none !important;
}



/* Collapsible for Text and Video */

.text-content-wrapper, 
.video-content-wrapper {
    width: calc(100% - 2rem);
    margin-top: 2rem;
    display: none;
    flex-direction: row;
    align-items: flex-start;

    .text-content {
        width: calc(100% - 2rem);
    
        body:has(#flyer) & {
            h1{ 
                font-size: var(--f-size-large);
            }
        }
    }

    .text-content-image {
        padding: 0;
        margin: 0 2rem 0 0;

        @media screen and (orientation: portrait ){
            width: 100%;
            padding: 0;
            margin: 0;
        }
    }
}

/* This iframe is used for video playback by the embed plugin */
iframe {
    width: 50vw;
    height: calc(50vw * .5625);
}


#spacer {
    height: 24rem;

    @media screen and (orientation: portrait) {
        height: 8rem;
    }
}






/* Flyer Dispaly */

#flyer{
    @media screen and (orientation: landscape) {
        position: fixed; 
        height: 100dvh;
        width: 50vw;
        right: 0;

        display: flex;
        align-items: center;
        justify-content: center;
        
        figure{
            height: 80%;
        }
    }

    @media screen and (orientation: portrait) {
        position: relative;
        
        figure{
            padding: 6rem 1rem 0 1rem;
            margin: 0;
        }
    }

    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
























/* Additional Styling */

.release,
.text,
.link,
.video {
    cursor: pointer;
}

.text,
.video {
    min-width: 50%;
}


/* CMS Font Customization */

.bold {
    /* desktop */
    font-weight: 700;
    letter-spacing: -.8rem;
}

.uppercase {
    /* desktop */
    letter-spacing: -.8rem;
    font-size: 14rem;
    line-height: calc(14rem *.96);
    text-transform: uppercase;
}





















/* __________________ 04 Release Page Layouts ______________________________________________ */
/* __________________ 04_1 Cover Image _____________________________________________________ */

/* Left Side Album Cover Image */
.release-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    position: fixed;
    top: 0;
    left: 0;
    width: 49%;
    height: 100vh;
    background-color: var(--c-f);

    overflow-y: auto;
}

.release-cover {
    margin-top: 25%;
    width: 60%;
}

.additional-images {
    margin-top: 50%;
    width: 60%;
}

.additional-images:last-child {
    margin-bottom: 50%;
}

.release-image::-webkit-scrollbar {
    display: none;
}

/* __________________ 04_2 Release Info _____________________________________________________ */

/* Right Side Press Info */


.release-text {
    position: fixed;
    top: 0;
    right: 0;
    width: 49%;
    height: 1rem;
    margin-top: 3rem;
    font-size: var(--f-size-regular);
    color: var(--c-f);

}

/* Album + Artist Headline */
.release-titles {
    width: 100%;
    font-size: var(--f-size-large);

}

.release-album-margin {
    margin-left: -.4em;
}

/* Press Text */
.release-left {
    position: absolute;
    left: 0;
    height: 83.5vh;
    width: calc(50% - 4rem);
    margin-top: 4rem;
    overflow-y: auto;
}

/* Press Kit Download */
.presskit {
    position: absolute;
    bottom: 0;
}


/* Infos + Tracks */
.release-right {
    position: absolute;
    height: 83.5vh;
    left: 50%;
    width: calc(50% - 2.5rem);
    margin-top: 4rem;
    display: flex;
    flex-direction: column;

}

.release-links {
    display: flex;
    justify-content: space-between;
}

.release-info {
    margin-top: 5.1rem;
    /* flex-grow: 1; */
}

.release-medium {
    margin-top: 2.7rem;
}

.release-medium-list-wrapper {
    display: flex;
    justify-content: flex-start;
}

.release-date {
    margin-top: 2.9rem;
}

.release-tracks {
    margin-top: 2.7rem;
    /* position: absolute;
    overflow-y: auto;
    max-height: 56.6vh;
    width: 100%;
    bottom: 0;
    margin-bottom: calc(var(--f-size-regular) * -1);

    -ms-overflow-style: none; 
    scrollbar-width: none;  */
}

.release-tracks::-webkit-scrollbar {
    display: none;
}

.release-tracks-mobile {
    display: none;
}

.release-right p {
    padding: 0;

}


/* X / Close Button */
#return {
    position: absolute;
    right: 0;
    margin-right: 2rem;
    font-size: var(--f-size-large);
}


#return:hover {
    animation: blink 500ms ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}












/* __________________ 05_2 Portrait / Mobile Orientation ___________________________________ */

@media (orientation: portrait) {


  
    /* _______________ 05_2_1 Index _________________________________________________________ */



  

    .text {
        width: calc(100% - 1rem);
        margin: 0;

    }

    .text-content-wrapper,
    .video-content-wrapper {
        width: 98%;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 0;
    }




    
    .text-content {
        margin-top: 2rem;
    }

    iframe {
        width: 98vw;
        height: calc(98vw * .5625);
    }

    .hover-image {
        display: block;
        width: 8rem;
        transform: translateX(5rem);
    }

    .event-city {
        margin-right: 1rem;
    }


    /* CMS Font Customization */

    .bold {
        /* mobile */
        font-weight: 700;
        letter-spacing: -.1rem;
    }

    .uppercase {
        /* mobile */
        font-size: 5rem;
        letter-spacing: -.1rem;
        line-height: calc(6rem *.96);
        text-transform: uppercase;

    }

    /* _______________ 05_2_2 Release Page Mobile _____________________________________________________ */

    /* Image */

    .release-image {

        position: relative;
        width: 100%;
        margin-top: 7rem;
        padding-bottom: 9rem;
        height: fit-content;
        background-color: var(--c-f);

    }

    /* Info */

    .release-titles {
        width: 85%;
        font-size: var(--f-size-large-mobile);
    }

    .release-text {
        position: relative;
        width: auto;
        height: auto;
        margin: 1rem;
        font-size: var(--f-size-regular-mobile);
    }

    /* Press Text */
    .release-left {
        position: relative;
        top: 2rem;
        height: auto;
        width: 100%;
        margin-top: 0;
    }

    /* Press Kit Download */
    .presskit {
        position: absolute;
        bottom: 0;
    }

    /* Infos + Tracks */
    .release-right {
        position: relative;
        left: 0;
        width: 100%;
        margin-top: 3rem;
        height: auto;
    }

    .release-links {
        top: 0;
    }

    .release-info {
        display: flex;
        margin-top: 3rem;
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .release-medium {
        margin-top: 0rem;
    }

    .release-date {
        margin-top: 0rem;
    }

    .release-tracks {
        display: none;
    }

    .release-tracks-mobile {
        display: block;
        position: relative;
        margin-top: 8rem;
        width: 100%;
    }

    #return {
        margin-right: 0rem;
        font-size: var(--f-size-large-mobile);
    }

}