
/* ALLGEMEIN */
@import url('https://fonts.googleapis.com/css2?family=Gaegu:wght@700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    font-family: 'Gaegu', Arial, sans-serif;
    font-size: 1.5em;
    background-color: black;
    color: white; 
    margin: 0;
    width: 100%;
    cursor: url('/CursorSmiley.png'), auto;
}

/* BUTTONS */
a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.buttons {
    transition: transform 0.3s ease-in-out;
}
.buttons:hover {
    transform: scale(1.05);
}

/* NAV */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    padding-bottom: 6rem;
}
.nav-image {
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SPALTEN */
.left-column {
    text-align: center; /* Zentriert den gesamten Inhalt der linken Spalte */
}

.column-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    text-align: center;
}

/* LINKE SPALTE */
#musik img {
    width: 15rem; 
    height: auto; 
    margin-bottom: 4vh;
}

#instagram img {
    width: 12rem; 
    height: auto; 
    margin-left: 20rem;
    margin-bottom: 4vh;
}
#tiktok img {
    width: 15rem; 
    height: auto; 
    margin-right: 15rem;
    margin-bottom: 4vh;
}
#youtube img {
    width: 16rem; 
    height: auto; 
    margin-left: 15rem;
    margin-bottom: 4vh;
}
#news img {
    width: 24rem; 
    height: auto; 
    margin-left: 2rem;
    margin-bottom: 4vh;
}
#shop img {
    width: 11rem; 
    height: auto; 
    margin-left: 5rem;
}

#kontaktManagement,
#kontaktBooking {
    margin: 0 auto; /* Zentriert die Buttons horizontal */
    display: flex;
    justify-content: center;
}

#kontaktManagement img,
#kontaktBooking img {
    width: 23rem !important;
    height: auto !important;
    margin-top: 5rem;
}

#kontaktBooking img {
    margin-left: 15rem;
}

/* RECHTE SPALTE */
#live img {
    width: 35rem;
    height: auto; 
}
#tour img {
    margin-top: 2rem;
    width: 35rem; 
    height: auto; 
}
.daten span {
    display: block;
    margin-bottom: 10px;
}

.rotate-text {
    display: inline-block;
    transform-origin: left bottom;
  }
.rotate-3 {
    transform: rotate(3deg);
  }
.rotate-30 {
    transform: rotate(-2deg);
  }
.rotate-1 {
    transform: rotate(1deg);
  }
#rechts {
    margin-left: 4em;
  }
#links {
    margin-left: -5em;
  }

/* FOOTER */
footer{
    display: flex;
    justify-content: space-around; 
    align-items: center; 
    margin: 5rem;
}

#datenschutz {
    margin: 2rem;
}
.kontakt {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media screen and (max-width: 1300px) {
    .column-container {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 599px) {

    nav {
        padding-bottom: 3rem;
    }
    .column-container {
        grid-template-columns: 1fr;
    }
    #musik img {
        margin-top: 2rem;
        width: 10rem;
        height: auto;
    }
    #instagram img {
        width: 9rem; 
        height: auto; 
        margin-left: 10rem;
    }
    #tiktok img {
        width: 10rem; 
        height: auto; 
        margin-right: 8rem;
    }
    #youtube img {
        width: 12rem; 
        height: auto; 
        margin-left: 8rem;
    }
    #news img {
        width: 18rem; 
        height: auto; 
        margin-left: -2rem;
    }
    #shop img {
        width: 8rem; 
        height: auto; 
        margin-left: 5rem;
    }
    #live img {
        width: 20rem; 
        height: auto; 
    }
    #tour img {
        margin-top: 2rem;
        width: 20rem; 
        height: auto; 
    }
    body {
        font-size: 0.8rem;
    }
    .daten span {
        font-size: 0.8rem; 
    }
    #links {
        font-size: 0.8rem;
    }
    #rechts {
        font-size: 0.8rem;
    }
}
