section {
  position: relative;
  scroll-margin-top: 0;
}

/* title svg*/
.title-svg {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .title-svg {
    max-width: 360px;
  }
}

/* hero */
.hero-logo {
  position: relative;
  z-index: -2;
  margin-top: var(--space-2xl);
}
.hero-logo img {
  width: 100%;
}

.hero-bild {
  margin-top: -15vw;
  padding-bottom: var(--space-xl);
  position: sticky;
  top: 10vh;
  z-index: -1;
}
.hero-image {
    width: 100%;
}
.home-image {
    width: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .hero-logo {
    margin-top: 0;
  }
  .hero-bild {
    max-height: 100vh;
    margin-top: -33vw;
    padding: 0 10vw;
    padding-bottom: var(--space-3xl);
    top: -10vh;
  }
  .hero-bild img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* störer */
section.bild1 {
  width: 100%;
  height: 100vw;
}
section.bild1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stoerer.stoerer1 {
  position: absolute;
  bottom: 5%;
  right: 5%;
  z-index: 2;
}
.stoerer.stoerer1 img {
  width: min(300px, 40vw);
  height: auto;
  object-fit: contain;
  animation: stoerer-animation1 2s ease-in-out infinite;
}
@media screen and (min-width: 600px) {
  section.bild1 {
    width: 100%;
    height: 66vw;
  }
}
@media screen and (min-width: 1024px) {
  .stoerer.stoerer1 {
    position: absolute;
    bottom: unset;
    top: 45%;
    right: 5%;
    z-index: 2;
  }
}
@keyframes stoerer-animation1 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-24deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* marquee */
:root {
    --marquee-height: 5rem;
}

.marquee-wrapper {
    height: calc(var(--marquee-height) * 2);
    max-width: 100%;
    overflow: hidden;
    margin-top: 0;
    user-select: none;
}

@supports (overflow: clip) {
    .marquee-wrapper {
        height: auto;
        overflow-x: clip;
        overflow-y: visible;
    }
}

/* https://codepen.io/Knovour/pen/boJNPN */
.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;

    font-size: var(--step-6);
    height: var(--marquee-height);
    line-height: 1;

    background-color: var(--clr-rot);
    color: var(--clr-light);

    margin: 0;
    outline: 1px solid transparent;

    display: flex;
    align-items: center;
}

a.marquee:focus {
    outline: 0;
}

.track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 32s linear infinite;
}
.track .content {
  font-size: var(--step-3);
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

/* slideshow */
section.slideshow {
  background-color: var(--clr-beige);
}
.slideshow_swiper {
  width: 100%;
  height: 100vw;
}
.slideshow .swiper-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
@media screen and (min-width: 600px) {
  .slideshow_swiper {
    width: 100%;
    height: 66vw;
  }
}
@media screen and (min-width: 1024px) {
}

/* tour */
.quote {
  background-color: var(--clr-dark);
  padding: var(--space-l-xl) 0;
}
.quote p {
  color: var(--clr-rot);
  font-size: var(--step-2);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 100%;
  leading-trim: both;
  text-edge: cap;
}
@media screen and (min-width: 1024px) {
  .quote {
    padding: var(--space-2xl-3xl) 0;
  }
  .quote p {
    font-size: var(--step-5);
  }
}

.tour-section {
    padding: var(--space-l-xl) 0;
    position: relative;
    background-color: var(--clr-dark);
    overflow: hidden;
}

.tour-section>.inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
    z-index: 1;
}
.tour-section .title {
    text-align: center;
}
ul.konzerte-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
ul.konzerte-list li {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-m) 0;
    border-bottom: 1px solid var(--clr-beige);
}
ul.konzerte-list li:last-child {
    border-bottom: none;
}
ul.konzerte-list li,
ul.konzerte-list li p {
    color: var(--clr-rot);
    font-size: var(--step-1);
    line-height: 1;
    font-weight: 700;
}
ul.konzerte-list li .location p {
  color: var(--clr-beige);
}
ul.konzerte-list li a,
ul.konzerte-list li a:visited,
ul.konzerte-list li a:active,
ul.konzerte-list li a:focus {
  color: var(--clr-rot);
  text-decoration: none;
}
ul.konzerte-list li .cta {
  margin-top: var(--space-xs);
  display: flex;
  justify-content: flex-start;
  gap: var(--space-s);
}
a.rsvp-link, a.ticket-link {
    padding: 2px 8px;
    text-decoration: none;
    font-size: var(--step-2);
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
}
a.rsvp-link {
    background-color: var(--clr-beige);
    color: var(--clr-rot) !important;
    border: 2px solid var(--clr-rot);
}
a.ticket-link {
    background-color: var(--clr-rot);
    color: var(--clr-beige) !important;
    border: 2px solid var(--clr-beige);
}
@media screen and (min-width: 1024px) {
  .tour-section {
    padding: var(--space-2xl-3xl) 0;
  }
  ul.konzerte-list li {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-m);
  }
  ul.konzerte-list li .cta {
    justify-content: flex-end;
  }
  a.rsvp-link, a.ticket-link {
    font-size: var(--step-3);
  }
}

.tour-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    object-fit: cover;
    z-index: 0;
    filter: blur(10px);
    display: none;
    user-select: none;
}

@supports (filter: blur(10px)) {
    .tour-background {
        display: block;
    }
}

/* video */
#home-video {
  max-width: 100%;
  width: 100%;
  height: auto;
  background-color: var(--clr-beige);
}

/* music */
.music-section {
  background-color: var(--clr-beige);
  padding: var(--space-l-xl) 0;
}
.music-section .inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}
.music-section .title {
    text-align: center;
}
ul.alben-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.alben-list li img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
ul.alben-list li a {
  text-decoration: none;
}
ul.alben-list li figure {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xs);
}
ul.alben-list li figcaption {
    color: var(--clr-rot);
    font-size: var(--step--2);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}
ul.social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: var(--space-l);
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.social-links li img {
    width: var(--space-l);
    height: var(--space-l);
    object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .music-section {
    padding: var(--space-2xl-3xl) 0;
  }
  ul.alben-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  ul.alben-list li figcaption {
    font-size: var(--step-0);
  }
}

/* scroll background */
.scroll-bg {
  width: 100%;
  height: var(--space-xl);
  z-index: -1;
}

/* shop */
.shop-section {
  position: relative;
}
.shop-section .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
}
.shop-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.title-svg.shop-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1024px) {
  .shop-section .inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* newsletter */
.newsletter-section {
  padding: var(--space-l-xl) 0;
}
.newsletter-section .inner {
  max-width: 800px;
  margin: 0 auto;
}
.newsletter-section h2 {
  text-align: center;
  color: var(--clr-rot);
  font-size: var(--step-3);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}
.newsletter-section p {
  text-align: center;
  color: var(--clr-beige);
  font-size: var(--step-1);
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 1024px) {
  .newsletter-section {
    padding: var(--space-2xl-3xl) 0;
  }
  .newsletter-section h2 {
    font-size: var(--step-8);
  }
}

/* mailchimp form */
.mc_embed_signup {
  width: 100%;
}
#mc_embed_signup .mc-field-group {
  width: 100% !important;
}
#mc_embed_signup .mc-field-group label {
  color: var(--clr-beige);
  font-size: var(--step-1);
}
#mc_embed_signup .mc-field-group input {
  width: 100% !important;
  height: 60px !important;
  appearance: none;
  border-radius: 3px;
  border: 2px solid var(--clr-dark);
  background-color: var(--clr-beige);
  padding: 12px !important;
  font-size: var(--step-1) !important;
  line-height: 1 !important;
  text-indent: 0 !important;
}
#mc_embed_signup .clear .button {
  width: 100%;
  height: 60px !important;
  display: inline-block;
  margin: 0 5px 10px 0;
  padding: 12px;
  appearance: none;
  background-color: var(--clr-beige);
  border: 2px solid var(--clr-rot);
  border-radius: 3px;
  cursor: pointer;
  color: var(--clr-rot);
  font-size: var(--step-1);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  transition: all 0.23s ease-in-out 0s;
  clear: both;
  vertical-align: top;
  white-space: nowrap;
}
#mc_embed_signup .clear .button:hover {
  background-color: var(--clr-rot);
  color: var(--clr-beige);
}
#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  font-size: var(--step-0) !important;
  color: var(--clr-rot) !important;
}
#mc_embed_signup div.response {
  color: var(--clr-rot);
  font-size: var(--step-1);
  font-weight: 700;
  line-height: 1.2;
}
#mc_embed_signup #mce-error-response {
  color: var(--clr-rot);
}
#mc_embed_signup #mce-success-response {
  color: var(--clr-beige);
}
@media screen and (min-width: 1024px) {
  #mc_embed_signup .mc-field-group input {
    height: 80px !important;
    padding: 18px !important;
    font-size: var(--step-3) !important;
  }
  #mc_embed_signup .clear .button {
    height: 80px !important;
    padding: 18px !important;
    font-size: var(--step-3) !important;
  }
}

/* socials */
.socials-section {
  background-color: var(--clr-beige);
  padding-top: var(--space-l-xl);
}
.socials-section .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}
.socials-section .title {
  text-align: center;
}
.socials-section .content {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .socials-section {
    padding-top: var(--space-2xl-3xl);
  }
}

/* kontakt */
.kontakte-section {
  background-color: var(--clr-beige);
  padding: var(--space-l-xl) 0;
}
.kontakte-section .inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.kontakte-section .content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.kontakte-section h2 {
  color: var(--clr-rot);
  font-size: var(--step-2);
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  line-height: 100%;
  leading-trim: both;
  text-edge: cap;
}
ul.kontakte-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-m);
}
ul.kontakte-list li {
  flex: 1 1 calc(50% - var(--space-m));
}
ul.kontakte-list li h4 {
  color: var(--clr-rot);
  font-size: var(--step--1);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
ul.kontakte-list li p {
  margin-top: 0;
  color: var(--clr-rot);
  font-size: var(--step--1);
  font-weight: 400;
  line-height: 1.2;
}
ul.kontakte-list li a {
  display: inline-block;
  margin-top: var(--space-2xs);
  padding: 2px 8px;
  color: var(--clr-rot);
  font-size: var(--step--2);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  background-color: var(--clr-beige);
  border: 2px solid var(--clr-rot);
  transition: all 0.23s ease-in-out 0s;
}
ul.kontakte-list li a:hover {
  background-color: var(--clr-rot);
  color: var(--clr-beige);
}
ul.footer_menu-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
ul.footer_menu-list li {
  color: var(--clr-rot);
  font-size: var(--step--1);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
ul.footer_menu-list li a {
  color: var(--clr-rot);
}
@media screen and (min-width: 1024px) {
  .kontakte-section {
    padding: var(--space-2xl-3xl) 0;
  }
  .kontakte-section .content {
    flex-direction: row;
  }
  ul.kontakte-list li {
    flex: 1 1 auto;
  }
  .kontakte-section h2 {
    font-size: var(--step-5);
  }
  ul.kontakte-list li a {
    font-size: var(--step--1);
  }
}

/* partners */
.partners-section {
  background-color: var(--clr-beige);
  padding-bottom: var(--space-l-xl);
}
.partners-section .inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-l);
}
.partners-section .inner article h1 {
  margin-bottom: 10px;
  color: var(--clr-dark);
  font-size: var(--step--2);
  font-weight: 400;
}
.partners-section .inner article {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.partners-section .inner article ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: var(--space-s);
  flex-wrap: wrap;
}
.partners-section .inner article a img {
  height: var(--space-m);
  width: auto;
  object-fit: contain;
}
@media screen and (min-width: 600px) {
  .partners-section .inner article.gadget {
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .partners-section {
    padding-bottom: var(--space-2xl-3xl);
  }
  .partners-section .inner article h1 {
    margin-bottom: 10px;
    font-size: var(--step--1);
  }
  .partners-section .inner article a img {
    height: var(--space-l);
  }
}

/* preview */
section.preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--clr-dark);
  padding: var(--space-l-xl) 0;
  z-index: 99;
}
section.preview .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.preview p {
  color: var(--clr-rot);
  font-size: var(--step-2);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 100%;
  leading-trim: both;
  text-edge: cap;
}
@media screen and (min-width: 1024px) {
  section.preview {
    padding: var(--space-2xl-3xl) 0;
  }
  section.preview p {
    font-size: var(--step-5);
  }
}