@charset "UTF-8";
/* young-serif-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Young Serif";
  font-style: normal;
  font-weight: 400;
  src: url("../lib/fonts/young-serif-v2-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* gabarito-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Gabarito";
  font-style: normal;
  font-weight: 400;
  src: url("../lib/fonts/gabarito-v3-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body,
html,
* {
  font-size: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: clip;
}

.anchor {
  top: -120px;
  position: absolute;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 750px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1250px) {
  .container {
    max-width: 1250px;
  }
}
@media (min-width: 1952px) {
  .container {
    max-width: 1952px;
  }
}
@media (max-width: 750px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.flex {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .flex {
    flex-direction: row;
  }
}

a {
  color: white;
}

p {
  color: #151110;
  font-size: 20px;
  font-family: "Gabarito";
}
@media (max-width: 1024px) {
  p {
    font-size: 100%;
  }
}

h1,
h2 {
  font-size: 47px;
}
@media (max-width: 1024px) {
  h1,
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 750px) {
  h1,
  h2 {
    font-size: 28px;
  }
}

h1,
h2,
h3,
a {
  text-transform: uppercase;
  font-family: "Young Serif";
  font-weight: 400;
}

li {
  font-family: "Young Serif";
}

.button__event--read-more {
  background: #EBD5A3;
  padding: 0.25rem 0.75rem;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #7B2109;
  text-transform: uppercase;
  font-size: 14px;
}

header {
  background: url("../lib/images/saxophon.png") no-repeat;
  background-size: contain;
  height: 0;
  padding-top: 39.8%;
  width: 100%;
  position: relative;
  margin-bottom: -5px;
  z-index: 90;
}
header img {
  position: absolute;
  top: 5rem;
  height: 70%;
  width: 55%;
  left: 40%;
}
@media (max-width: 750px) {
  header img {
    top: 2rem;
  }
}

footer {
  background: #140801;
  padding: 20px 0;
}
footer ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
footer ul li {
  padding-right: 20px;
}
footer ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}
footer ul li a:hover {
  text-decoration: underline;
}
footer div.social-icon {
  padding: 40px 0 20px;
}
footer div.social-icon a {
  display: flex;
  align-items: center;
  font-size: 12px;
  text-decoration: none;
}
footer div.social-icon a:hover {
  text-decoration: underline;
}
footer div.social-icon a svg {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.25rem;
  margin-left: -5px;
}

nav {
  background-color: #EBD5A3;
  border-bottom: 8px solid rgb(21, 17, 16);
  position: sticky;
  z-index: 120;
  top: 0;
}
nav li {
  position: relative;
}
nav li:hover:after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 2px;
  background: black;
  left: 0;
  animation: navi__underline 0.55s linear forwards;
}

@keyframes navi__underline {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.header__nav {
  width: 100%;
  height: 150px;
  display: flex;
}
@media (max-width: 1250px) {
  .header__nav {
    height: 6rem;
  }
}
.header__nav--left {
  position: relative;
  flex: 0 0 30%;
}
@media (max-width: 1250px) {
  .header__nav--left {
    flex: 0 1 30%;
  }
}
.header__nav--left img {
  position: absolute;
  height: 162px;
  top: 18px;
  left: 52px;
  z-index: 102;
}
@media (max-width: 1250px) {
  .header__nav--left img {
    height: 6rem;
  }
}
@media (max-width: 750px) {
  .header__nav--left img {
    left: 0;
  }
}
.header__nav--right {
  align-items: center;
  display: flex;
  position: relative;
  width: 100%;
}
@media (max-width: 1024px) {
  .header__nav--right {
    position: unset;
  }
}
.header__nav--list {
  list-style-type: none;
  display: inline-block;
  padding: 0 1rem;
}
.header__nav--list:last-of-type {
  background: #151110;
  border-radius: 6px;
  padding: 4px;
  position: absolute;
  right: 0;
}
.header__nav--list:last-of-type:after {
  display: none;
}
@media (max-width: 1024px) {
  .header__nav--list:last-of-type:after {
    display: block;
  }
}
@media (max-width: 1024px) {
  .header__nav--list:last-of-type {
    right: unset;
    background-color: unset;
    padding: 10px;
    width: 100%;
  }
}
.header__nav--list:last-of-type a {
  color: #EBD5A3;
}
@media (max-width: 1024px) {
  .header__nav--list:last-of-type a {
    color: #151110;
  }
}
.header__nav--link {
  color: #151110;
  text-decoration: none;
  font-size: 20px;
}

.mobile__nav {
  display: none;
}
@media (max-width: 1024px) {
  .mobile__nav--content {
    position: absolute;
    right: 0;
    top: 6rem;
    background: #EBD5A3;
    z-index: 100;
    transform: translate(0, calc(-100% - 5rem));
    transition: 0.5s all ease-in-out;
  }
  .mobile__nav--content ul li {
    display: block;
    padding: 10px;
  }
}

.mobile__nav--button {
  position: relative;
  width: 100%;
  font-family: Arial;
  font-weight: 500;
  display: none;
}
@media (max-width: 1024px) {
  .mobile__nav--button {
    display: block;
  }
}
.mobile__nav--button:after {
  position: absolute;
  content: "≡";
  width: 3rem;
  height: 100%;
  font-size: 55px;
  display: flex;
  align-items: center;
  right: 0;
  will-change: transform;
  cursor: pointer;
  z-index: 120;
}

.mobile__nav--content {
  width: 100%;
}

#navi:checked ~ .mobile__nav--content {
  transform: translate(0, 5px);
  animation: opacity 1.5s forwards;
  border-bottom: 5px solid rgb(21, 17, 16);
}

#navi:checked ~ .mobile__nav--button::after {
  content: "x";
  animation: opacity 0.5s forwards;
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mobile__contact {
  display: none;
}
@media (max-width: 1024px) {
  .mobile__contact {
    display: flex;
    padding-top: 50px;
  }
}
.mobile__contact--phone {
  width: 2rem;
  height: 2rem;
  margin: 1rem;
}
.mobile__contact--mail {
  width: 2rem;
  height: 2rem;
  margin: 1rem;
}

.events_irregular {
  background: #EBD5A3;
  text-align: center;
  padding: 60px 0;
  position: relative;
}
.events_irregular h2 {
  color: #7B2109;
  padding-bottom: 20px;
  position: relative;
  display: inline-block;
}

.gallery {
  background: #EBD5A3;
  text-align: center;
  padding: 60px 0;
  position: relative;
}
@media (max-width: 750px) {
  .gallery {
    text-align: unset;
  }
}
.gallery h2 {
  color: #7B2109;
  padding-bottom: 20px;
  position: relative;
  display: inline-block;
}
.gallery h2::before {
  content: "";
  position: absolute;
  background: url("../lib/images/glas.png");
  width: 10rem;
  height: 6rem;
  background-repeat: no-repeat;
  left: -10rem;
  top: -1rem;
  background-size: contain;
}
@media (max-width: 1024px) {
  .gallery h2::before {
    width: 8rem;
    height: 4rem;
    left: -8rem;
  }
}
@media (max-width: 750px) {
  .gallery h2::before {
    display: none;
  }
}
.gallery p {
  padding: 0 40px 40px 40px;
}
@media (max-width: 750px) {
  .gallery p {
    padding: 0 0 30px 0;
  }
}
@media (max-width: 1024px) {
  .gallery .gallery__card--top {
    padding: unset;
  }
}
.gallery .gallery__card--top .gallery__cards img {
  height: 600px;
  width: 100%;
}
@media (max-width: 1024px) {
  .gallery .gallery__card--top .gallery__cards img {
    height: 400px;
  }
}
@media (max-width: 750px) {
  .gallery .gallery__card--top .gallery__cards img {
    height: 300px;
  }
}
.gallery .gallery__card--middle {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .gallery .gallery__card--middle {
    padding: unset;
  }
}
.gallery .gallery__card--middle .gallery__cards--one {
  flex: 0 0 35%;
  height: 350px;
}
@media (max-width: 1024px) {
  .gallery .gallery__card--middle .gallery__cards--one {
    flex: 0 0 100%;
  }
}
@media (max-width: 750px) {
  .gallery .gallery__card--middle .gallery__cards--one {
    height: 300px;
  }
}
.gallery .gallery__card--middle .gallery__cards--one img {
  height: 100%;
  width: 100%;
}
@media (max-width: 750px) {
  .gallery .gallery__card--middle .gallery__cards--one img {
    height: 300px;
  }
}
.gallery .gallery__card--middle .gallery__cards--two {
  flex: 0 0 33%;
  height: 450px;
}
@media (max-width: 1024px) {
  .gallery .gallery__card--middle .gallery__cards--two {
    flex: 0 0 100%;
    height: 400px;
  }
}
@media (max-width: 750px) {
  .gallery .gallery__card--middle .gallery__cards--two {
    height: 300px;
  }
}
.gallery .gallery__card--middle .gallery__cards--two img {
  height: 100%;
  width: 100%;
}
.gallery .gallery__card--middle .gallery__cards--three {
  flex: 0 0 30%;
  height: 450px;
}
@media (max-width: 1024px) {
  .gallery .gallery__card--middle .gallery__cards--three {
    flex: 0 0 100%;
    height: 400px;
  }
}
@media (max-width: 750px) {
  .gallery .gallery__card--middle .gallery__cards--three {
    height: 300px;
  }
}
.gallery .gallery__card--middle .gallery__cards--three img {
  height: 100%;
  width: 100%;
}
.gallery .gallery__card--bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .gallery .gallery__card--bottom {
    padding: unset;
  }
}
.gallery .gallery__card--bottom .gallery__cards--one {
  flex: 0 0 35%;
  height: 500px;
  margin-top: -100px;
}
@media (max-width: 1024px) {
  .gallery .gallery__card--bottom .gallery__cards--one {
    flex: 0 0 100%;
    margin: unset;
    height: 400px;
  }
}
@media (max-width: 750px) {
  .gallery .gallery__card--bottom .gallery__cards--one {
    height: 300px;
  }
}
.gallery .gallery__card--bottom .gallery__cards--one img {
  height: 100%;
  width: 100%;
}
.gallery .gallery__card--bottom .gallery__cards--two {
  flex: 0 0 64%;
  height: 400px;
}
@media (max-width: 1024px) {
  .gallery .gallery__card--bottom .gallery__cards--two {
    flex: 0 0 100%;
    height: 400px;
  }
}
@media (max-width: 750px) {
  .gallery .gallery__card--bottom .gallery__cards--two {
    height: 300px;
  }
}
.gallery .gallery__card--bottom .gallery__cards--two img {
  height: 100%;
  width: 100%;
}
.gallery .gallery__card img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 10px 0;
  cursor: pointer;
}

.enlarged {
  max-width: none;
  width: auto;
  height: auto;
  cursor: zoom-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 9999;
  transition: all 0.3s ease;
  padding: 7% !important;
  background: rgba(0, 0, 0, 0.8);
  object-fit: contain !important;
  height: 100vh !important;
}

.close-button {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 60px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  z-index: 10000;
}

main {
  color: #151110;
  background: #EBD5A3;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 66px;
  position: relative;
}
@media (max-width: 750px) {
  main {
    text-align: unset;
  }
}
main h1 {
  position: relative;
  color: black;
}
main p {
  font-size: 20px;
  padding: 30px 40px;
}
@media (max-width: 750px) {
  main p {
    padding: 30px 0px;
  }
}
main span.social-icon {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
main span.social-icon a {
  display: flex;
  align-items: center;
  color: black;
  font-size: 14px;
  text-decoration: none;
}
main span.social-icon a:hover {
  text-decoration: underline;
}
main span.social-icon a svg {
  width: 2rem;
  height: 2rem;
  margin-right: 0.25rem;
}
main .about--image {
  width: 150px;
  height: 170px;
}
@media (max-width: 1024px) {
  main .about--image {
    width: 70px;
    height: 90px;
    margin-right: 1rem;
    margin-top: -1rem;
  }
}
@media (max-width: 1024px) {
  main .about--image {
    width: 60px;
    height: 80px;
  }
}

.about__cards {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 3rem;
}
@media (max-width: 1024px) {
  .about__cards {
    justify-content: center;
    flex-direction: row;
  }
}
@media (max-width: 750px) {
  .about__cards {
    flex-direction: column;
  }
}

.about__card--one, .about__card--two, .about__card--three {
  width: 30%;
}
@media (max-width: 750px) {
  .about__card--one, .about__card--two, .about__card--three {
    width: 100%;
  }
}
.about__card--one img, .about__card--two img, .about__card--three img {
  width: 100%;
  transition: 0.5s all linear;
}
.about__card--one img:hover, .about__card--two img:hover, .about__card--three img:hover {
  transform: scale(1.1);
  transition: 0.5s all linear;
}

.contact {
  color: #EBD5A3;
  background: #7B2109;
  padding: 60px 0;
  position: relative;
}
.contact h2 {
  padding-bottom: 30px;
}
.contact .contact__cards {
  width: 100%;
  display: flex;
}
@media (max-width: 750px) {
  .contact .contact__cards {
    flex-wrap: wrap;
  }
}
.contact .contact__cards--left, .contact .contact__cards--right {
  flex: 0 0 50%;
}
@media (max-width: 750px) {
  .contact .contact__cards--left, .contact .contact__cards--right {
    flex: 0 100%;
  }
}
.contact .contact__cards--left--right, .contact .contact__cards--right--right {
  display: flex;
  width: 100%;
}
@media (max-width: 750px) {
  .contact .contact__cards--left--right, .contact .contact__cards--right--right {
    justify-content: center;
  }
}
.contact .contact__cards--left img, .contact .contact__cards--right img {
  width: 100%;
  height: 100%;
  padding-top: 10%;
  max-width: 600px;
  max-height: 600px;
}
@media (max-width: 1024px) {
  .contact .contact__cards--left img, .contact .contact__cards--right img {
    max-width: 400px;
    max-height: 400px;
  }
}
.contact .contact__cards ul li {
  list-style-type: none;
}
.contact .contact__cards ul li.padding-bottom {
  padding-bottom: 50px;
}
@media (max-width: 1024px) {
  .contact .contact__cards ul li.padding-bottom {
    padding-bottom: 40px;
  }
}
@media (max-width: 750px) {
  .contact .contact__cards ul li.padding-bottom {
    padding-bottom: 20px;
  }
}
.contact .contact__cards ul li span {
  font-size: 20px;
  font-family: inherit;
}
@media (max-width: 750px) {
  .contact .contact__cards ul li span {
    font-size: 18px;
  }
}
.contact .contact__cards ul li a {
  text-decoration: underline;
  text-transform: unset;
}
.contact .contact__cards ul li svg {
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
}
.contact .contact__cards ul p {
  color: #FFFFFF;
  list-style-type: none;
  font-size: 22px;
}
@media (max-width: 750px) {
  .contact .contact__cards ul p {
    font-size: 18px;
  }
}

.events {
  text-align: center;
  padding-bottom: 80px;
  background: url("../lib/images/theke.png") rgba(0, 0, 0, 0.38) no-repeat;
  background-size: cover;
  min-height: 600px;
  background-blend-mode: multiply;
  background-attachment: fixed;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 750px) {
  .events {
    background-size: cover;
    background-attachment: unset;
  }
}
.events h2 {
  padding: 80px 0 60px 0;
  color: #FEFAF4;
}

.events__cards {
  display: flex;
  justify-content: space-evenly;
  text-align: left;
  width: 100%;
  /* This container is needed to position the front and back side */
  /* Position the front and back side */
  /* Style the front side (fallback if image is missing) */
  /* Style the back side */
}
@media (max-width: 1024px) {
  .events__cards {
    flex-wrap: wrap;
  }
}
@media (max-width: 750px) {
  .events__cards {
    justify-content: center;
    align-items: center;
  }
}
.events__cards .flip-card {
  flex: 0 0 27%;
  border-radius: 8px;
  font-size: 20px;
  height: 420px; /* ursprünglich 350 */
  min-height: 300px; /* ursprünglich 300 */
  width: 345px;
  min-width: 300px;
  position: relative;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}
@media (max-width: 360px) {
  .events__cards .flip-card {
    min-width: 100%;
  }
}
.events__cards .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
@media (max-width: 1024px) {
  .events__cards .flip-card {
    margin: 20px 0;
  }
}
@media (max-width: 750px) {
  .events__cards .flip-card {
    margin: 20px;
  }
}
.events__cards .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.events__cards .flip-card-front, .events__cards .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  flex: 0 0 27%;
  font-size: 20px;
  background: #EBD5A3;
  padding: 0 50px;
}
@media (max-width: 1250px) {
  .events__cards .flip-card-front, .events__cards .flip-card-back {
    flex: 0 0 30%;
    padding: 0 40px;
  }
}
@media (max-width: 1024px) {
  .events__cards .flip-card-front, .events__cards .flip-card-back {
    flex: 0 0 70%;
    padding: 0 30px;
  }
}
.events__cards .flip-card-front {
  padding: unset;
}
.events__cards .flip-card-front button {
  all: unset;
  height: 100%;
  position: relative;
}
.events__cards .flip-card-front button img {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
}
@media (max-width: 1250px) {
  .events__cards .flip-card-front button img {
    height: 100%;
  }
}
.events__cards .flip-card-back {
  transform: rotateY(180deg);
  padding: 0 50px;
}
@media (max-width: 1250px) {
  .events__cards .flip-card-back {
    padding: 0 40px;
  }
}
@media (max-width: 1024px) {
  .events__cards .flip-card-back {
    padding: 0 30px;
  }
}
.events__cards .flip-card-back h3 {
  color: #7B2109;
  padding: 20px 0 10px 0;
  font-size: 22px;
  font-weight: bold;
}
.events__cards .flip-card-back p {
  font-size: 18px;
}
.events__cards .flip-card-back .infobox {
  background: #002920;
  max-width: 240px;
  text-align: center;
  border-radius: 20px;
  margin: 20px auto;
  padding: 5px 15px;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
}
@media (max-width: 750px) {
  .events__cards .flip-card-back .infobox {
    position: unset;
    margin-top: 18%;
  }
}
.events__cards .flip-card-back .infobox p {
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: calc(100% - 2px);
}

.data-policy {
  text-align: left;
}
.data-policy h2 {
  font-size: 1.65rem;
}
@media (max-width: 750px) {
  .data-policy h2 {
    font-size: 1.3rem;
  }
}
.data-policy h3 {
  font-size: 1.45rem;
}
@media (max-width: 750px) {
  .data-policy h3 {
    font-size: 1.15rem;
  }
}

main.impressum {
  padding-bottom: 50px;
  text-align: left;
}
main.impressum ul li {
  list-style-type: none;
}
main.impressum ul li.padding__top--20 {
  padding-top: 20px;
}

/*# sourceMappingURL=main.css.map */
