
html, body {
  font-size: 3vw;
  background: #000;
  color: #ffffff;
  margin: 0;
  padding: 0;
  font-family: "new-hero", sans-serif;
  font-variant-numeric: oldstyle-nums;
  -moz-font-feature-settings: "onum";
  -webkit-font-feature-settings: "onum";
  font-feature-settings: "onum";
  overflow-x: hidden;
}

body {
  margin-top: 7rem;
  display: flex;
  flex-direction: column;
}

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

a:hover { opacity: .7;}


/* HEADER */

.mainheader {
  width: 100vw;
  height: 7rem;
  position: fixed;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #000;
  font-size: 1rem;
}

.mainheader .logo-pic {
  display: flex;
    justify-content: center; /* vertikal */
    align-items: center;
}

.mainheader .logo-pic img {
  width: 5rem;
  margin: 1.3rem 1rem 1rem 2rem;
}

.mainheader .logo-txt {
  font-size: 1.5em;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  font-style: normal;
  display: flex;
    justify-content: center; /* vertikal */
    align-items: center;
}

.mainheader .navigation {
  width: 5em;
  margin: 1.3em 2em 1em 1em;
  z-index: 100;
}

label.menue {
  display: block;
  position: relative;
  float: right;
  width: 3em;
  height: 3em;
  margin-top: .3em;
}

input#menue {display:none}


.line {
   position: absolute;
   height: .4em; width: 3em;
   background: #fff;
   display: block;
   transition: 0.5s;
   transform-origin: center;
}

.line:nth-child(1) { top: .6em; }
.line:nth-child(2) { top: 1.6em; }
.line:nth-child(3) { top: 2.6em; }

#menue:checked + .menue .line:nth-child(1){
   transform: translateY(1em) rotate(-45deg);
}

#menue:checked + .menue .line:nth-child(2){
   opacity:0;
}

#menue:checked + .menue .line:nth-child(3){
   transform: translateY(-1em) rotate(45deg);
}

nav.topmenue {
    margin-top: 5em;
    height: auto;
    max-height:0;
    overflow: hidden;
    transition: all 0.5s;
    font-size: 1.5em;
    text-align: right;
    width: auto;
    right: 0;
    padding-right: 1.5em;
    position: absolute;
    background-color: rgba(0,0,0,.5);
}

#menue:checked + .menue  + nav.topmenue {
    max-height: 600px;
}

nav.topmenue ul {
  list-style: none;
}

nav.topmenue li {
  padding: .25em 0;
}

nav.topmenue a{
text-decoration: none;
}



/* HERO */

.hero {
  position: relative;
  width: 100vw;
  height: 125vw;
  overflow: hidden;
}

.hero__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 40% 50%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero__header {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2em;
  padding-left: 2em;
  font-size: 1.2em;
}

.hero__header .kinostart span {
  background-color: #000;
  font-weight: 800;
  padding: .3em .7em;
  font-size: 1.4em;
}

.hero__header .filmtitle {
  margin-top: .2em;
  font-weight: 800;
  font-size: 3em;
}

.hero__header .subtitle {
  font-weight: 500;
  font-size: 1.6em;
  margin-top: -.3em;
}

.hero__nav {
  height: 4rem;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.hero__nav ul {
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

.hero__nav li {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* MAIN */
main {
  padding-bottom: 4rem;
  background: #000000;
  background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(50, 50, 50, 1) 100%);
}

.main__index {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4rem;
    gap: 8vh;
}
.main__index div {
  width: 42vw;
}

.main__index div img {
  width: 100%
}

.main__logo {
  margin-top: 4vh;
}



main section {
  display: flex;
  flex-direction: column;
}

main section .content {
  display: none;
  overflow: hidden;
  transition: height 1s ease;
}

main section.is-open .content {
  display: block;
}

main section .title {
  cursor: pointer;
  background: rgba(80,80,80,.5);
  padding: 1rem 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 2.2rem;
  margin: .5rem 0;
}

main section .title::after {
  position: relative;
  top: -.2em;
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border-right: 0.1em solid #fff;
  border-top: 0.1em solid #fff;
  transform: rotate(135deg);
  margin-right: 4rem;
  opacity: .6;
}

#content {
  margin: 2rem;
  width: calc(100vw - 4rem);
}

#content .poster img {
  width: 100%;
}

#content .text  {
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 1.6em;
}

#content .text iframe {
  margin-top: 3rem;
  margin-bottom: 2rem;
  width: 100%;
  aspect-ratio: 21 / 9;
  display: block;
}

.downlodBT {
  background-color: #6c9fca;
  padding: .3em .7em;
  border-radius: .5em;
  margin-top: 1rem;
  margin-right: 2em;
  display: inline-block;
  position: relative;
  z-index: 100;
  font-size: 1.3rem;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: .3em;
  height: 1.8em;
  line-height: 2em;
}


.downlodBT::before {
  content: '';
  position: absolute;
  top: .2em;
  right: -.6em;
  transform: rotate(45deg);
  background-color: #6c9fca;
  border-radius: .5em;
  height: 2em;
  width: 2em;
  z-index: -10;
}


.content {
  margin: 2rem;
}

.content .tablet {
  display: grid;
  grid-template-columns:  1fr;
  margin-bottom: 2rem;
}

.content .tablet > div {
  border-top: 1px solid rgba(255,255,255,.2);
  padding: .3rem 1rem .3rem 0;
}

.content .tablet header {
  grid-column: 1 / 2;
  margin-bottom: .5em;
}

.empty {
  border-top: none !important;
  display: none;
}



.grid-title {
  font-size: .6rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: .1em;
  opacity: .8;
  line-height: 1.3em;
  padding-top: .5em;
}

.grid-name {
  font-size: .9rem;
}

#gallerie .content {
  position: relative;
  margin: 0;
}

.slider {
  width: 100vw;
  aspect-ratio: 3 / 2;
  display: flex;
  padding: 0;
  gap: 2rem;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slider::-webkit-scrollbar {
  display: none;
}


.slider .item {
  list-style-type: none;
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  scroll-snap-align: center;
}


.slider .item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


#gallerie .button {
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 3rem;
  background: transparent;
  border-width: 0 .2em .2em 0;
  border-color: rgba(255,255,255,.5;)
}

#gallerie .button--previous {
  left: 1.5rem;
  transform: rotate(135deg);
}

#gallerie .button--next {
  right: 1.5rem;
  transform: rotate(-45deg);
}

#contact .content {
  font-size: 1rem;
  line-height: 1.6em;
}

#dates {
  font-size: 1.5rem;
}
#dates small{
  font-size: .6em;
}

#dates a {
  opacity: .6;
}





/* Mobile = Standard */

@media (min-width: 768px) {
    /* Tablet */
    html, body {
      font-size: 2vw;
    }

    .main__index {
      display: grid;
      grid-template-columns: 2fr 1fr;
      grid-template-rows: 1fr 1fr 1fr;
      text-align: center;

    }

    .main__index div {
      width: 100%;
      padding: 0;
    }
  
  .main__logo {
    grid-column-start: 1;
     grid-column-end: 2;
     grid-row-start: 1;
     grid-row-end: 3;
  }

    .main__index .main__movie {
      width: 18vw;
      padding: 0;
      grid-column-start: 2;
     grid-column-end: 3;
     grid-row-start: 1;
     grid-row-end: 2;
    }
    
  .main__index .main__movie_zwei {
     grid-column-start: 2;
     grid-column-end: 3;
     grid-row-start: 2;
     grid-row-end: 3;
    
  }
    
    .main__index div img {
      width: 70%;
    }

    .hero {
      height: 60vw;
    }

    .hero__nav {
      display: flex;
      justify-content: center;
    }

    .hero__nav ul {
      width: 92vw;
    }

    main section {
      margin: 0 2rem;
    }

    main section .title {
      cursor: auto;
      background: rgba(80,80,80,0);
      font-size: 2.2rem;
      margin: 0;
      padding: .5em 0;
    }

    main section .title::after {
      border: none;
    }

    #content {
      display: flex;
      flex-direction: row;
      gap: 1rem;
    }

    #content div {
      flex: 1;
    }

    #content .text {
      font-size: 1rem;
    }

    main section .content {
      display: block;
      margin: 2rem 0;
    }

    .content .tablet {
      grid-template-columns:  1fr 1fr;
    }

    .grid-title {
      font-size: .5rem;
    }
    .empty {
      display: block;;
    }
    .grid-name {
      font-size: .7rem;
    }
    .content .tablet header {
    }

    .content .tablet > div:last-child:nth-child(odd) {
      grid-column: 1 / -1;
    }
    .downlodBT {
      font-size: 1em;
      line-height: 1.9em;
    }

    .slider {
      aspect-ratio: 16 / 9;
    }
}

@media (min-width: 1024px) {

  body {
    margin-top: 4rem;
  }
  .mainheader {
    width: 80vw;
    padding: 0 10vw;
    height: 4rem;
    font-size: .6rem;
  }

  .mainheader .logo-pic img {
    width: 5em;
  }

  nav.topmenue {
    right: 10vw;
    margin-top: 3em;
  }

  .hero {
    height: 50vw;
  }

  .hero__overlay {
    font-size: .8rem;
    gap: 3em;
  }

  .hero__header {
    width: 80vw;
    padding: 0 10vw;
  }

  .hero__nav {
    width: 80vw;
    padding: 0 10vw;
    height: 4em;
  }

  main section {
    width: 80vw;
    padding: 0 10vw;
  }

  main section .title {
    font-size: 1.8rem;
  }

  #content {
    width: 80vw;
    margin: 2rem 0;
  }

  #content .text {
    flex: 1.3;
  }

  .downlodBT {
    font-size: .7em;
  }
  .slider {
    width: 80vw;
    aspect-ratio: 21 / 9;
  }
}

@media (min-width: 1440px) {

  html, body {
    font-size: 1.5vw;
  }

  .mainheader {
    width: 70vw;
    padding: 0 15vw;
  }

  .mainheader .logo-pic img {
    width: 5em;
  }

  nav.topmenue {
    right: 15vw;
    margin-top: 3em;
  }

  .hero {
    height: 40vw;
  }

  .mainheader {
    width: 70vw;
    padding: 0 15vw;
  }

  .hero__header {
    width: 70vw;
    padding: 0 15vw;
  }

  .hero__nav {
    width: 70vw;
    padding: 0 15vw;
  }

  main section {
    width: 70vw;
    padding: 0 15vw;
  }

  #content {
    width: 70vw;
  }

  .slider {
    width: 70vw;
  }
}
