@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');


:root {
  --black: #101010;
  --white: #ffffff;
  --pink: #ef8a9f;
  --grey: #9b9b9b;
  --line: #343434;
--lightpink: #123123;
  --max: 1440px;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}


img {
  display: block;
  max-width: 100%;
}


a {
  color: inherit;
  text-decoration: none;
}


.section {
  padding: 100px 5vw;
}


.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}


.eyebrow {
  margin: 0 0 15px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}


h1 {
  margin: 0 0 48px;
  font-size: clamp(2.7rem, 4.7vw, 4.8rem);
  line-height: .9;
  letter-spacing: -.055em;
  text-transform: uppercase;
  font-weight: 900;
}


h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: .95;
  letter-spacing: -.045em;
}


p {
  margin: 0 0 18px;
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 0 22px;

  background: var(--white);
  color: var(--black);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease;
}


.button:hover {
  background: var(--pink);
  color: var(--black);
  transform: translateY(-2px);
}


/* =========================
   HEADER
========================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  padding: 20px 5vw;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #101010;
}


.logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.04em;
}


.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}


.main-nav a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}


.main-nav a:hover {
  color: var(--pink);
}


.menu-toggle {
  display: none;
}
	  
	  @media (max-width: 900px) {

  .site-header {
    padding: 15px 5vw;
    background: #101010;
  }

}


/* =========================
   HERO
========================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;

  display: flex;
  align-items: flex-end;

  overflow: hidden;
}


.hero > img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.15),
      rgba(0,0,0,.55)
    );
}


.hero-content {
  position: relative;

  z-index: 2;

  width: 100%;

  padding: 80px 5vw;
}


.hero-content h1 {
  max-width: 800px;

  margin: 0;

  font-size:
    clamp(
      3rem,
      7vw,
      7rem
    );

  color: #fff;
}


.hero-content p {
  max-width: 620px;

  margin-top: 25px;

  color: #fff;

  font-size: 18px;
}


/* =========================
   NEWSLETTER
========================== */

.newsletter {
  background: var(--pink);

  color: var(--black);
}


.newsletter-layout {
  display: grid;

  grid-template-columns:
    1fr
    1.2fr;

  gap: 80px;

  align-items: center;
}


.newsletter-title h1 {
  margin-bottom: 20px;
}


.newsletter-intro {
  max-width: 450px;
}


.newsletter-form {
  display: grid;

  grid-template-columns:
    1fr
    1fr
    auto;

  width: 100%;
}


.newsletter-form input {
  min-height: 54px;

  padding: 0 18px;

  border:
    2px solid
    var(--black);

  background: #fff;

  color: var(--black);

  font-family: inherit;

  font-size: 14px;

  outline: none;
}


.newsletter-form input:focus {
  background: #fff;
}


.newsletter-form button {
  min-height: 54px;

  padding:
    0 25px;

  border: 0;

  background: var(--black);

  color: #fff;

  font-family: inherit;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: .1em;

  cursor: pointer;
}


.newsletter-form button:hover {
  background: #333;
}


.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}

.mailchimp-honeypot {
  position: absolute !important;
  left: -5000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
	  
	  
/* =========================
   TERMINE
========================== */

.termine {
  background: #f4f4f4;

  color: #101010;
}


.termine .section-inner {
  max-width: var(--max);

  margin: 0 auto;
}


.events-year {
  margin-top: 20px;

  padding:
    0 0 12px;

  border-bottom:
    2px solid
    #101010;

  font-size: 18px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -.02em;
}


.events-year-next {
  margin-top: 70px;
}


.events-list {
  width: 100%;
}


.event {
  display: grid;

  grid-template-columns:
    180px
    minmax(0, 1fr)
    180px;

  align-items: center;

  gap: 35px;

  min-height: 145px;

  padding: 25px 0;

  border-bottom:
    1px solid
    #d5d5d5;

  transition:
    background .2s ease,
    padding .2s ease;
}


.event:hover {
  padding-left: 18px;
  padding-right: 18px;

  background:
    rgba(239,138,159,.12);
}


.event-date {
  display: flex;

  align-items: center;

  gap: 12px;
}


.event-date strong {
  font-size: 4rem;

  line-height: .8;

  letter-spacing: -.07em;
}


.event-date span {
  font-size: 10px;

  font-weight: 900;

  line-height: 1.05;

  letter-spacing: .12em;

  text-transform: uppercase;
}


.event-info h2 {
  margin: 0;

  font-size: 20px;

  line-height: 1.1;

  font-weight: 800;
}


.event-type {
  margin: 6px 0 0;

  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .08em;

  opacity: .6;
}


.event-location {
  margin: 7px 0 0;

  font-size: 14px;

  font-weight: 600;
}


.event-action {
  justify-self: end;

  text-align: right;
}


.ticket-link {
  display: inline-block;

  padding: 12px 18px;

  background: #101010;

  color: #fff;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .1em;

  transition:
    background .2s ease,
    color .2s ease;
}


.ticket-link:hover {
  background: #ef8a9f;

  color: #101010;
}


.free {
  font-size: 10px;

  font-weight: 800;

  letter-spacing: .07em;
}


.presale {
  display: inline-block;

  padding: 8px 10px;

  border:
    1px solid
    #101010;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: .07em;
}


/* =========================
   MUSIK
========================== */

.musik {
  background: var(--black);

  color: var(--white);

  padding-top: 100px;

  padding-bottom: 120px;
}


.musik-heading {
  margin: 0 0 70px;

  font-size:
    clamp(
      3.5rem,
      7vw,
      7rem
    );

  line-height: .85;

  letter-spacing: -.06em;

  font-weight: 900;

  text-transform: uppercase;
}


.spotify-playlist {
  width: 100%;

  max-width: 1180px;

  margin: 0 auto;
}


.spotify-playlist .eyebrow {
  margin-bottom: 10px;
}


.spotify-playlist-intro {
  margin: 0 0 30px;

  color: #cfcfcf;

  font-size: 17px;
}


.spotify-playlist iframe {
  display: block;

  width: 100%;

  height: 500px;

  border: 0;

  border-radius: 12px;
}


/* =========================
   ÜBER UNS
========================== */

.about {
  background: #fff;

  color: #101010;
}


.about-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr
    1fr;

  gap: 30px;

  align-items: start;
}


.about-image img {
  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;
}


.about-text {
  padding: 20px 10px;
}


.about-text h2 {
  margin-bottom: 25px;
}


.about-text p {
  max-width: 520px;
}


/* =========================
   VIDEOS
========================== */

.videos {
  background: #101010;

  color: #fff;
}


.video-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 30px;
}


.video-card {
  min-width: 0;
}


.video-frame {
  position: relative;

  width: 100%;

  aspect-ratio: 16 / 9;

  margin-bottom: 20px;

  background: #171717;

  overflow: hidden;
}


.video-frame iframe {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}


.video-card h3 {
  margin: 0 0 10px;

  font-size: 22px;
}


.video-card > a {
  font-size: 10px;

  font-weight: 800;

  letter-spacing: .1em;
}


.video-card > a:hover {
  color: var(--pink);
}


/* =========================
   FOOTER
========================== */

.site-footer {
  padding: 50px 5vw;

  background: #101010;

  color: #fff;
}


.footer-inner {
  max-width: var(--max);

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;
}


.social-links {
  display: flex;

  align-items: center;

  gap: 14px;
}


.social-links a {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 30px;
  height: 30px;

  transition:
    opacity .2s ease,
    transform .2s ease;
}


.social-links img {
  width: 22px !important;
  height: 22px !important;

  max-width: 22px !important;
  max-height: 22px !important;

  object-fit: contain;

  filter:
    grayscale(1)
    brightness(0)
    invert(1);
}


.social-links a:hover {
  opacity: .65;

  transform:
    translateY(-2px);
}


.copyright {
  margin: 0;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .1em;

  text-transform: uppercase;

  color: #777;
}


/* =========================
   MOBILE
========================== */

@media (max-width: 900px) {

  .site-header {
    padding: 15px 5vw;
  }


  /* NAVIGATION – MOBILE */

  .main-nav {
    display: none;

    position: absolute;

    top: 100%;

    left: 0;
    right: 0;

    flex-direction: column;

    align-items: flex-start;

    gap: 22px;

    padding: 30px 5vw;

    background: #111;

    border-top:
      1px solid
      #333;

    border-bottom:
      1px solid
      #333;
  }


  .main-nav.open {
    display: flex;
  }


  .main-nav a {
    font-size: 18px;

    color: #fff;
  }


  .menu-toggle {
    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
  }


  .menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    background: #fff;

    margin-left: auto;

    transition:
      transform .2s ease,
      opacity .2s ease;
  }


  .menu-toggle.open span:nth-child(1) {
    transform:
      translateY(3.5px)
      rotate(45deg);
  }


  .menu-toggle.open span:nth-child(2) {
    transform:
      translateY(-3.5px)
      rotate(-45deg);
  }


  .section {
    padding: 80px 5vw;
  }


  .newsletter-layout {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .event {
    display: block;

    min-height: 0;

    margin-bottom: 12px;

    padding: 20px;

    border:
      1px solid
      rgba(0,0,0,.12);

    background: #fff;
  }


  .event:hover {
    padding: 20px;

    background: #fff;
  }




  .:hover {
    background: var(--pink);
  }


  .event-date {
    display: inline-flex;

    margin-bottom: 18px;

    padding: 7px 11px;

    background: #101010;

    color: #fff;
  }


  .event-date strong {
    font-size: 30px;

    line-height: .8;
  }


  .event-date span {
    color: var(--pink);

    font-size: 8px;
  }


  .event-info h2 {
    font-size: 20px;
  }


  .event-type {
    margin-top: 6px;

    font-size: 9px;
  }


  .event-location {
    margin-top: 9px;

    font-size: 14px;
  }


  .event-action {
    margin-top: 18px;

    text-align: left;
  }


  .ticket-link {
    display: block;

    width: 100%;

    padding: 13px;

    text-align: center;
  }
	
.event-highlight:hover {
  background: rgba(239, 138, 159, .12);
}

 @media (max-width: 900px) {

  .site-header {
    padding: 15px 5vw;
  }


.main-nav {
  display: none;

  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  flex-direction: column;
  align-items: flex-start;

  gap: 22px;

  padding: 30px 5vw;

  background: #101010;

  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.main-nav.open {
  display: flex;
}


  .menu-toggle {
    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
  }
	
  .free {
    display: block;

    padding-top: 13px;

    border-top:
      1px solid
      rgba(0,0,0,.18);

    text-align: center;
  }


  .presale {
    display: block;

    text-align: center;
  }


  .music-card {
    grid-template-columns: 1fr;
  }


  .about-grid {
    grid-template-columns: 1fr;
  }


  .about-text {
    padding: 20px 0;
  }


  .video-grid {
    grid-template-columns: 1fr;
  }


  .footer-inner {
    flex-direction: column;

    align-items: flex-start;

    gap: 25px;
  }

}


@media (max-width: 600px) {

  h1 {
    font-size:
      clamp(
        2.7rem,
        13vw,
        4.8rem
      );
  }


  .hero {
    min-height: 100svh;
  }


  .newsletter-form {
    grid-template-columns: 1fr;
  }


  .newsletter-form button {
    min-height: 48px;
  }


  .streaming-links {
    gap: 12px;
  }


  .spotify-playlist iframe {
    height: 500px;
  }

}