body, html {
    margin: 0;
    padding: 0;
    hyphens: auto;
    font-family: 'BNATTICA';
    font-size: 1rem;
    background: #a81830;
    color: #0b0e14;
}

/* COLORS
#F22816
#F27F3D
#A69851
#D9043D
#0A0A0D 
*/



a {
    text-decoration: none;
}
a:hover {
    transform: scale(1.1);
    /* background-color: #0b0e14; */
}
@font-face { 
    font-family: "BNATTICA"; 
    src: url("../assets/BNAttica.otf"); 
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    padding: 10px;
    color: #a81830;
    max-width: 1400px;
    margin: auto;
}

.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    height: auto;
    max-height: 160px;
    z-index: 1;
}
.headclaim {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    /* margin-bottom: 20px; */
    letter-spacing: 0.2rem;
    color: #0b0e14;
    text-shadow:
    -0.5px -0.5px 0 white,
     0.5px -0.5px 0 white,
    -0.5px  0.5px 0 white,
     0.5px  0.5px 0 white;
}
.linkbox {
    align-self: flex-end;
    display: flex;
    margin: 1rem auto;
    flex-direction: row-reverse;
    justify-content: space-between;
    text-align: right;
    max-width: 500px;
    width: 100%;
    z-index: 2;
    /* background-color: blue; */
}
.linkbox a{
    transition: transform 0.3s ease;
}
.linkbox svg{
    margin: 1px;
    height: 2rem;
    width: 2rem;
    fill: #0b0e14;
    stroke: white;
    stroke-width: 1;
}
.linkbox svg:hover{
    fill: white;
}


.infobox {
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    width: 100%;
    /* background-color: pink; */
}
.doublebox {
    display: flex;
    gap: 1.5rem;
}
.contact {
    padding: 11px 20px;
    text-align: center;
    transition: transform 0.3s ease;
    transform: scale(1);
    background-color: #0b0e14;
    /* border: solid 1px #fff; */
    color: #fff;
    cursor: pointer;
    align-self: flex-end;
}
.contact a{
    color: #fff;
}
.contact:hover {
    transform: scale(1.1);
}
.download {
    padding: 11px 20px;
    text-align: center;
    transition: transform 0.3s ease;
    transform: scale(1);
    border: solid 1px #0b0e14;
    color: #fff;
    cursor: pointer;
    align-self: flex-end;
}
.download a{
    color: #fff;
}
.download:hover {
    transform: scale(1.1);
}

.header iframe {
    width: 500px;
    height: 100px !important;
}
.claim {
    padding: 10px;
    text-align: right;
    background-color: #a81830;
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    color: #0b0e14;
    text-shadow:
    -0.5px -0.5px 0 white,
     0.5px -0.5px 0 white,
    -0.5px  0.5px 0 white,
     0.5px  0.5px 0 white;
}
.claim2 {
    padding: 0 10px 20px 10px;
    text-align: right;
    background-color: #a81830;
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    color: #fff;
}
.shows {
    position: relative;
    user-select: none;
    padding: 10px 20px;
    background-color: #fff;
    /* border: solid 1px #0b0e14; */
    cursor: pointer;
    align-self: flex-end;
}

.toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    position: relative;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
  
.shows.active .arrow {
    transform: rotate(180deg);
}
.shows.active .gigbox {
    max-height: 200px; /* oder genug gross für deine Inhalte */
    opacity: 1;
}

.about {
    position: relative;
    user-select: none;
    padding: 10px 20px;
    background-color: black;
    /* border: solid 1px #fff; */
    color: #fff;
    cursor: pointer;
    align-self: flex-end;
}
  
.about.active .arrow {
    transform: rotate(180deg);
}
.about.active .gigbox {
    max-height: 600px; /* oder genug gross für deine Inhalte */
    opacity: 1;
    color: #a81830;
    line-height: 1.3rem;
}
.about-text {
    width: 300px;
}
  
.gigbox {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    height: 0;
    pointer-events: none;
  }
  
.date {
    display: inline-block;
    padding: 10px;
    background-color: #a81830;
    color: #fff;
    margin-bottom: 10px;
}
.location {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.gigbox a{
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #0b0e14;
    color: #fff;
    transition: transform 0.3s ease;
}



  

  
.bounce {
    animation: bounce 0.34s infinite alternate;
    transform-origin: center center;
}

@keyframes bounce {
    0% { 
        transform: translateY(0) rotate(0) scale(1); 
    }
    100% { 
        transform: translateY(-20px) rotate(-3deg) scale(1.1); 
    }
}


.wrapper {
    position: relative;
    background-image: url('../assets/background_04.png');
    background-size: cover;
    background-position: center;
    filter: grayscale(0) brightness(1) contrast(1);
  
    aspect-ratio: 1 / 1;
    max-width: 1400px;
    margin: auto;
    width: 100%;
    overflow: hidden;
}

.face {
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%);

}

    
/* GESICHTSFLÄCHEN */
#face_01 {
    top: 15%;
    left: 25%;
    width: 10vw;
    height: 10vw;
    /* background-color: rgb(255, 255, 0, 0.5); */
}
#face_02 {
    top: 22%;
    left: 39%;
    width: 14vw;
    height: 14vw;
    /* background-color: rgb(138, 43, 226, 0.5); */
}
#face_03 {
    top: 19.5%;
    left: 58%;
    width: 10vw;
    height: 10vw;
    /* background-color: rgb(0, 128, 0, 0.5); */
}
#face_04 {
    top: 16%;
    left: 81%;
    width: 11vw;
    height: 11vw;
    transform: rotate(12deg);
    /* background-color: rgb(255, 192, 203, 0.5); */
}
.drag-wrapper {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 1400px;
    margin: auto;
    background: #a81830;
}
.drag-wrapper svg {
    /* position: absolute; */
    z-index: 110;
    top: 60px;
    left: 50%;
    width: 60px;
    height: 60px;
    fill: white;
    opacity: 1;
}
.drag-container {
    position: relative;
    max-width: 1400px;
    margin: auto;
    width: 100%;
    max-height: 160px;
    height: 20vw; /* oder was du brauchst */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    pointer-events: none; /* wichtig für touch-overlap */
    z-index: 10;
}
.draggable {
    width: 120px;
    pointer-events: all;
    cursor: grab;
}

/* KÖPFE */
#img_01 {
    width: 11vw; 
    left: -1vw;
    /* background-color: rgb(0, 128, 0, 0.5); */
    z-index: 11;
}
#img_02 { 
    width: 18vw; 
    left: -2vw;
    /* background-color: rgb(138, 43, 226, 0.5); */
    z-index: 11;
}
#img_03 { 
    width: 12vw;
    left: -2vw; 
    /* background-color: rgb(255, 255, 0, 0.5); */
}
#img_04 { 
    width: 13vw;
    left: -2vw; 
    /* background-color: rgb(238, 130, 238, 0.5); */
}




@media (max-width: 1040px) {
    .infobox{
        font-size: 0.8rem;
    }
    .contact, .about, .shows {
        min-width: 110px;
    }
}
@media (max-width: 980px) {
    .logo {
        max-height: 130px;
    }
}
@media (max-width: 880px) {
    .headclaim {
        font-size: 1rem;
    }
    .logo {
        max-height: 100px;
    }
    .linkbox svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}



@media (max-width: 780px) {
    .linkbox {
        max-width: 400px;
    }
    .claim, .claim2{
        text-align: center;
    }
    .drag-wrapper {
        position: relative;
    }
}
@media (max-width: 570px) {

    .headclaim {
        text-align: right;
        margin-top: 1rem;
        width: 200px;
        align-self: flex-end;
    }
    .logo {
        left: 30px;
    }
    .contact {
        display: block;
        align-self: center;
    }
    .shows {
        display: block;
        align-self: center;
    }
    .about {
        display: block;
        align-self: center;
    }
    .infobox {
        margin-left: 0;
        justify-content: center;
        z-index: 3;
    }
    .linkbox {
        max-width: 100%;
    }
    .linkbox svg{
        height: 2rem;
        width: 2rem;
    }
    @keyframes bounce {
        0% { 
            transform: translateY(0) rotate(0) scale(1); 
        }
        100% { 
            transform: translateY(-8px) rotate(-3deg) scale(1.1); 
        }
    }
}

@media (max-width: 390px) {
    .about, .contact, .download, .shows {
        height: 28px;
        justify-content: center;
        align-items: center;
    }
    .toggle-header {
        height: 28px;
    }
    .contact a, .download a {
        line-height: 2.3;
    }
}    
@media (max-width: 376px) {
    .download a {
        line-height: 1;
    }
}  





