:root{
    padding: 0;
    margin: 0;
    --main-red: #FF4C29;
    --black: #1a1616;
    --white: #ebe8e8;
    --spin-rotation-duration: 24s;
}

html{
    max-width: 100vw;
    overflow-x: hidden;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

*{
    padding: 0;
    margin: 0;
    font-family: 'Chivo', sans-serif;
}

body {
    display: flow-root;
    overflow-x: hidden;
}

#preloader{
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(300deg,#1d1d1d,#8d716b,#323030,#0c0a0a,#8c2929);
    background-size: 300% 300%;
    animation: gradient-animation 40s ease infinite;
    z-index: 3001;
}

#preloader::after {
    content: ""; /* Füge ein Pseudo-Element hinzu */
    position: absolute;
    top: 50%; /* Positioniere das Bild vertikal in der Mitte */
    left: 50%; /* Positioniere das Bild horizontal in der Mitte */
    transform: translate(-50%, -50%); /* Zentriere das Bild genau in der Mitte des Parent-Elements */
    background-image: url('../assets/logos/logo_red_lowres.png'); /* Füge das Bild hinzu */
    width: clamp(100px, 40vw, 320px); /* Breite des Bildes */
    height: clamp(100px, 40vw, 320px); /* Breite des Bildes */
    background-size: contain; /* Skaliere das Bild, um den Container auszufüllen */
    background-position: center; /* Zentriere das Bild horizontal und vertikal im Container */
    background-repeat: no-repeat; /* Verhindere die Wiederholung des Bildes */
    /* Du kannst hier weitere Stile für das Bild festlegen, wie z.B. border-radius für abgerundete Ecken */
}

/* KEY FRAME FOR ANIMATION BACKGROUND */  
@keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

.slide-menu{
    position: absolute;
    left: -110%;
    top: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    background-color: var(--black);
    color: var(--main-red);
    z-index: 10;
    transition: all 0.4s ease;
}

.menu-slide-in ul{
    position: absolute;
    list-style: none;
    text-align: right;
    bottom: 8.5vh;
    right: 6vw;
}

.menu-slide-in ul li{
    display: block;
    text-align: right;
    color: var(--main-red);
    font-size: 8vw;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0.4vh 0;
    font-size: clamp(20px, 12vw, 88px);
}

.menu-slide-in{
    left: 0;
}

/* CSS FOR MENU OPEN AND CLOSING */
.body-open-menu{
    max-width: 100vw;
    max-height: 100vh;
    overflow: hidden;
}

.filter{
    filter: brightness(0);
    -webkit-filter: brightness(0);
}

.full-height{
    margin: 0;
    padding: 6vh 0 0 0;
    width: 100vw;
    min-height: 95vh;
    position: relative;
    text-align: center;
}

.fit-content{
    margin: 0;
    padding: 10vh 0;
    width: 100vw;
    position: relative;
    text-align: center;
}

.socials{
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 1vh;
    margin-left: 10vw;
    margin-top: 5vh;
    z-index: 3000;
    width: max-content;
}

.socials a{
    text-transform: none;
    font-style: none;
    width: 4.5vh;
    max-width: 4.5vh;
    position: relative;
}

.socials a img{
    width: 100%;
    transition: all 0.3s;
}

.socials #youtube-icon{
    transform: scale(1.1);
}

.menu{
    margin: 0;
    width: 4.4vh;
    height: 4.4vh;
    position: absolute;
    right: 9vw;
    top: 4vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 5px;
    z-index: 3000;

}

.menu div{
    height: 90%;
    width: 17.5%;
    border-radius: 4em;
    background-color: var(--black);
    transition: all .4s ease;
}

.menu .menu-line-two{
    margin-top: 5px;
}

.menu-closing{
    justify-content: center;
    /* Change position more to the left bc bug */

}

.menu-closing .menu-line-one{
    background-color: var(--main-red);
    transform: rotate(45deg) translateX(75%);
}


.menu-closing .menu-line-two{
    background-color: var(--main-red);
    transform: rotate(-45deg) translateX(-75%);
    margin-top: 0px;
}

h1{
    margin: 0;
    width: 100vw;
    max-width: 100vw;
    text-align: center;
    position: relative;
    margin-top: -7vh;
}

h1 .tv{
    position: relative;
    max-width: 85vw;
    z-index: 2;
    max-height: 40vh;
}

.arrow-down{
    width: 100vw;
    height: 5vh;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 8vh;
}

.arrow-down img{
    padding: 1vw 3vw;
    height: 100%;
    display: block;
    margin: auto;
}

.hover-mouse:hover{
    cursor: pointer;
}

#termine{
    display: flex;
    flex-direction: column;
    gap: clamp(45px, 5vh, 70px);
    padding-bottom: 30px;
}

.ticket-flex{
    display: block;
    width: calc(100vw - 30px);
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.ticket-flex .date-location{
    display: flex;
    flex-direction: row;
    gap: 4vw;
    align-items: stretch;
}

.ticket-flex .date-location p{
    flex-basis: 33%;
    padding-top: 5px;
    font-weight: 700;
    font-size: 4.7vw;
}

.ticket-flex .date-location div{
    flex-basis: calc(66% - 4vw);
    text-transform: uppercase;
}

.ticket-flex .date-location .devider {
    width: 2px;
    align-self: stretch; /* Stretch to match the container's height */
    border-radius: .3em;
    background-color: var(--black);
    display: none;
}

.ticket-flex .date-location div h2{
    font-size: 7vw;
    letter-spacing: 0.6vw;
    line-height: 7vw;
    max-width: 62vw;
    word-wrap: break-word;
}

.ticket-flex .date-location div p{
    font-weight: 200;
    font-size: 3vw;
    margin: 8px 0px;
}

.ticket-flex a{
    padding: 8px 14px;
    border-radius: .5em;
    background-color: var(--black);
    color: var(--white);
    border: none;
    font-size: clamp(12px, 4vw, 20px);
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.tns-controls{
    margin-top: 40px;
    color: var(--black);
}

/* DESCRIPTION OF HOW TO USE CONTROL
.tns-controls::after{
    content: '(swipe left/right to change - or use navigation buttons)';
    color: #d6d6d6;
    font-weight: lighter;
    font-size: 10px;
    display: block;
}
*/

.tns-controls button{
    padding: 0px 16px;
    margin: 0 10px;
    background-color: transparent;
    color: var(--black);
    border: none;
    font-size: clamp(20px, 7vw, 34px);
    font-family: 'Pacifico', cursive;
}

.show-me-more{
    display: inline-block;
    position: relative;
    width: clamp(10px, calc(22vw + 20px), 140px);
    height: clamp(10px, calc(22vw + 20px), 140px);
    border-radius: 0.4em;
    border: .2em solid var(--black);
    color: var(--black);
    background-color: transparent;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
    margin: 40px auto;
    align-items: center;
    font-size: clamp(14px, 5vw, 28px);
    padding: 12px;
}

.display-none{
    display: none;
}

.image-pause {
    width: 100vw;
    max-width: 100vw;
    height: 70vh; /* Set a fixed height for the container */
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Horizontally center the content */
    overflow: hidden;
}

.image-pause img {
    max-height: 100%; /* Ensure the image doesn't exceed the container height */
}

.fit-content .covers{
    text-align: center;
    gap: 2vh;
}

.fit-content .covers .cover-image{
    width: 100%;
    margin: auto;
    text-align: center;
}

.fit-content .covers .cover-image img{
    width: 75vw;
    max-width: 435px;
    margin: auto;
    border-radius: 0.3em;
}

.fit-content .covers button,a{
    width: 65vw;
    height: auto;
    padding: 6px 0;
    max-width: 395px;
    margin: auto;
    font-size: clamp(16px, 4vw, 30px);
    line-height: clamp(16px, 4vw, 30px);
}

.fit-content .covers .button-secondary{
    background-color: transparent;
    color: var(--black);
    border: .1em solid var(--black);
}

.flex-who{
    display: flex;
    flex-direction: column;
}

.flex-who .desktop-img{
    display: none;
}

.flex-who .flex-for-image{
    width: 100vw;
    max-width: 100vw;
    height: 70vh; /* Set a fixed height for the container */
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Horizontally center the content */
    overflow: hidden;
}

.flex-who .flex-for-image img{
    min-height: 100%;
    max-height: 100%;
}


.music-videos{
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: fit-content;
    padding: 7vh 0;
    gap: 0px;
    margin: 0;
    overflow: hidden;
}

.music-videos .video-container{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s;
}

.music-videos .video-container .orange-overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-red);
    opacity: .4;
    display: block;
    transition: all 0.3s;
}

.music-videos .video-container img{
    min-width: 100%;
    min-height: 100%
}

.music-videos .video-container a{
    position: absolute;
    width: clamp(38px, 30vw, 56px);
    height: clamp(38px, 30vw, 56px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 8px;
    display: none;
}

/* comment something */

.music-videos .video-container a img{
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: .25;
    transition: all 0.45s ease;
    filter: brightness(40);
}

.music-videos .video-container a:hover img{
    opacity: .95;
    transform: scale(1.2);
}

.music-videos .video-container div{
    position: absolute;
    width: calc(100% - 10vw);
    padding: 4% 5vw;
    right: 0;
    bottom: 0;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0.6489189425770308) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.6489189425770308) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,0.6489189425770308) 0%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
    transition: all 0.3s;
}

.music-videos .video-container div p{
    color: var(--white);
    font-size: clamp(16px, 4vw, 32px);
    font-weight: bold;
    margin-bottom: 1vw;
}

.music-videos .video-container div button{
    padding: 1vw 2.2vw;
    background-color: var(--main-red);
    color: var(--white);
    text-transform: uppercase;
    border-radius: .3em;
    border: none;
}

.music-videos .active{
    height: calc(100vw / 16 * 9);
}

.music-videos .active .orange-overlay{
    background-color: var(--black);
    opacity: .3;
}

.music-videos .disabled{
    height: calc(100vw / 4);
}

.music-videos .disabled .orange-overlay{
    background-color: var(--main-red);
    opacity: .4;
}

.music-videos .disabled div{
    opacity: 0;
    width: 150vw;
}

.music-videos .active a{
    display: block;
}

.music-videos .active a[href="#"]{
    display: none;
}

.music-videos .active a img{
    opacity: .8;
}


.fit-content .who-am-i{
    padding: 0 11vw;
    text-align: left;
}

.fit-content .who-am-i h2{
    text-align: center;
    font-size: clamp(22px, 9vw, 36px);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 4vh;
}

.fit-content .who-am-i p{
    margin: 1vh 0;
    font-weight: 300;
}

.fit-content .circle-letters {
    position: absolute; /* Position the image absolutely */
    z-index: -1; /* Send the image to a lower layer behind other elements */
    width: clamp(200px, 50vw, 280px);
    max-height: 100%; /* Make the image cover the entire .full-height container */
    top: 15%; /* Position the image at the top of the .full-height container */
    left: 50%; /* Position at 50% from the left of the container */
    transform: translateX(-50%);
    object-fit: cover; /* Ensure the image fills the container while maintaining its aspect ratio */
    border-radius: 100%;
}

.fit-content .space-creator{
    width: 100vw;
    height: clamp(10px, 35vh, 184px);
}

.fit-content .book-me{
    width: clamp(200px, 75vw, 380px);
    height: clamp(200px, 75vw, 380px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    border-radius: .6em;
    border: .4em solid var(--black);
    margin-bottom: 10px;
    background-color: white;

}

.fit-content .book-me h3{
    font-size: clamp(20px, 7vw, 34px);
    margin-bottom: 10%;
    text-transform: uppercase;
}

.fit-content .email-button {
    margin-top: 3vh;
    width: clamp(140px, calc(75vw + .44em), 280px);
    background-color: var(--black);
    padding: 12px 16px;
    border-radius: .4em;
    border: none;
    display: inline-block;
    text-align: center; /* Zentriert den Text und das Bild horizontal */

}

.fit-content .email-button img {
    vertical-align: middle; /* Zentriert das Bild vertikal */
    height: clamp(22px, 4vw, 26px);
}

/* FOOTER STYLE (LAST ONES) */
.footer{
    width: 84vw;
    max-width: 84vw;
    text-align: center;
    padding: 0 8vw 30px 8vw;
}

.footer img{
    width: clamp(80px, 30vw, 120px);
    margin-bottom: 20px;
}

.footer .socials{
    flex-direction: row;
    margin: auto;
    align-items: center;
    max-width: 425px;
}

.footer .socials a{
    max-width: clamp(10px, 8vw, 30px);
    width: clamp(10px, 8vw, 30px);
}

.footer div:last-child{
    text-transform: uppercase;
}

.footer div:last-child a{
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
}

@media only screen and (min-width: 669px) {
    .socials{
        gap: 1.5vh;
    }
    h1{
        margin: 0;
        width: 100vw;
        max-width: 100vw;
        text-align: center;
        position: relative;
        margin-top: -18vh;
    }
    
    h1 .tv{
        position: relative;
        max-width: 65vw;
        z-index: 2;
        max-height: 65vh;
        margin-top: -17vh;
    }

    #termine{
        width: clamp(20px, 70vw, 1225px);
        margin: auto;
    }
    
    .ticket-flex{
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .ticket-flex .date-location{
        justify-content: space-between;
        align-items: center;
    }
    
    .ticket-flex .date-location p{
        font-size: clamp(14px, 4.7vw, 22px);
        flex-basis: unset;
        width: max-content;
    }

    .ticket-flex .date-location .devider{
        display: block;
    }
    
    .ticket-flex .date-location div{
        flex-basis: unset;
        flex-direction: column;
        width: min-content;
        position: relative;
        display: block;
        flex-shrink: 0;
        flex-grow: 6;
    }

    .ticket-flex .date-location .div-max-height{
        display: flex;
        align-items: left;
    }
    
    .ticket-flex .date-location div h2{
        font-size: clamp(16px, 7vw, 26px);
        line-height: clamp(16px, 7vw, 26px);
        letter-spacing: 2px;
        width: 28vw;
        word-wrap: normal;
    }

    .ticket-flex .date-location div h2 br{
        display: none;
    }
    
    .ticket-flex .date-location div p{
        font-size: clamp(10px, 3vw, 16px);
        margin: 8px 0px;
    }
    
    #termine .ticket-flex a{
        padding: 8px 22px;
        font-size: clamp(12px, 4.4vw, 16px);
        width: fit-content;
    }
    
    .show-me-more{
        width: unset;
        height: unset;
        padding: 14px 22px;
        border: .15em solid var(--black);
        font-weight: 400;
        font-size: clamp(10px, 5vw, 18px);
    }

    .image-pause {
        width: 100vw;
        max-width: 100vw;
        height: 65vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }
    
    .image-pause img {
        width: 100%; /* Set the width to 100% */
        height: auto; /* Maintain aspect ratio */
        object-fit: cover; /* Fit within the container without stretching */
    }

    .fit-content .covers{
        flex-direction: column;
    }

    .fit-content .covers button{
        font-size: clamp(12px, 4vw, 22px);
    }


    .music-videos{
        flex-direction: row;
        height: clamp(200px, 40vh, 350px);
    }

    .music-videos .video-container{
        height: 100%;
    }
    
    .music-videos .video-container img{
        min-height: 100%;
        object-fit: cover;
    }
    
    .music-videos .active{
        width: 50vw;
    }
    
    .music-videos .disabled{
        width: 25vw;
    }

    .flex-who .flex-for-image{
        height: 50vh;
    }

    .flex-who .who-am-i{
        margin-top: 6vh;
        padding: 0 18vw;
    }

    .flex-who .who-am-i h2{
        text-align: left;
        font-size: clamp(26px, 9vw, 44px);
    }
}

@media only screen and (min-width: 920px) {
    .fit-content .covers{
        max-width: 100%;
        transform: scale(.85);
        transform-origin: top;
    }
}


/*******************************/
/******  ANIMATION STYLES  *****/
/*******************************/

.bounce-7 {
    animation-name: bounce-7;
    animation-timing-function: cubic-bezier(0.280, 0.840, 0.420, 1);
    animation-duration: 2s;
    animation-delay: 5s;
    animation-iteration-count: infinite;
}

@keyframes bounce-7 {
    0%   { transform: scale(1,1)      translateY(0); }
    10%  { transform: scale(1.1,.9)   translateY(0); }
    30%  { transform: scale(.9,1.1)   translateY(-45%); }
    50%  { transform: scale(1.05,.95) translateY(0); }
    57%  { transform: scale(1,1)      translateY(-7%); }
    64%  { transform: scale(1,1)      translateY(0); }
    100% { transform: scale(1,1)      translateY(0); }
}


.rotating {
    -webkit-animation: rotating var(--spin-rotation-duration) linear infinite;
    -moz-animation: rotating var(--spin-rotation-duration) linear infinite;
    -ms-animation: rotating var(--spin-rotation-duration) linear infinite;
    -o-animation: rotating var(--spin-rotation-duration) linear infinite;
    animation: rotating var(--spin-rotation-duration) linear infinite;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
    from {
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes rotating {
    from {
      -ms-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -ms-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }