@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #101010;
  color: #fff;
  min-height: 200vh;
}

h1 {
  font-weight: 300;
  font-size: 40px;
}

h2 {
  font-weight: 300;
  font-size: 25px;
}

p {
  padding: 0.75em 0 0.25em 0;
  font-weight: 300;
  font-size: 20px;
}

@media (min-width: 1250px) {
  h1 {
    font-weight: 300;
    font-size: 60px;
  }
  h2 {
    font-weight: 300;
    font-size: 35px;
  }
  p {
    padding: 0.75em 0 0.25em 0;
    font-weight: 300;
    font-size: 25px;
  }
}
@media (min-width: 1250px) {
  .desktop-only {
    display: flex;
  }
  .mobile-only {
    display: none !important;
  }
}
@media (max-width: 1250px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: flex;
  }
}
.wrapper {
  width: 85vw;
  max-width: 1250px;
}
.wrapper.large-wrapper {
  width: 100vw;
  max-width: 1550px;
}

.nav-placeholder {
  height: 80px;
}

nav {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #101010;
}
nav .wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}
nav menu {
  left: 0;
  top: 80px;
  position: fixed;
  height: calc(100% - 80px);
  width: 100%;
  background-color: #101010;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: none;
}
nav menu .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 40px;
}
nav menu .group {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
nav menu .group p.small {
  font-size: 15px;
  text-transform: uppercase;
  padding: 15px 20px;
}
nav menu .group a {
  color: #fff;
  text-decoration: none;
  font-size: 40px;
  padding: 15px 20px;
  cursor: pointer;
}
nav menu .group img {
  height: 30px;
  padding: 15px 20px;
  cursor: pointer;
}
nav .burger {
  position: relative;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
nav .burger span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s;
}
nav .burger span:first-child {
  transform: translateY(-5px);
}
nav .burger span:last-child {
  transform: translateY(5px);
}
nav.transparent {
  background-color: transparent;
}
nav.active {
  background-color: #101010;
}
nav.active menu {
  display: flex;
}
nav.active .burger span:first-child {
  transform: rotate(-45deg);
}
nav.active .burger span:last-child {
  transform: rotate(45deg);
}

@media (min-width: 1250px) {
  .nav-placeholder {
    height: 120px;
  }
  nav {
    height: 120px;
  }
  nav menu {
    display: flex !important;
    position: static;
  }
  nav menu .wrapper {
    justify-content: space-around;
    flex-direction: row;
  }
  nav menu .wrapper .group {
    flex-direction: row;
  }
  nav menu .wrapper .group p.small {
    display: none;
  }
  nav menu .wrapper .group a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    padding: 15px 40px;
  }
  nav menu .wrapper .group img {
    height: 30px;
    padding: 15px 20px;
  }
  nav .burger {
    display: none;
  }
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url("Startseite.jpeg");
  background-size: cover;
  background-blend-mode: darken;
  background-position:  center;
  height: 100vh;
  width: 100%;
}
header .logo {
  width: 600px;
  max-width: 63.75vw;
}

section.ueber {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
}
section.ueber .grid {
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
section.ueber .grid .box {
  width: 100%;
  background-color: #709FB7;
}
section.ueber .grid .box img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
section.ueber .grid .box .description {
  padding: 15px;
}
@media (min-width: 1250px) {
  section.ueber {
    padding: 100px 0;
  }
  section.ueber .grid {
    grid-template-columns: 1fr 1fr;
  }
}

section.auftritte {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
section.auftritte .auftritte {
  padding: 50px 0;
  display: column;
  grid-template-columns: 1fr;
  gap: 50px;
}
section.auftritte .auftritte img {
  width: 100%;
}
@media (min-width: 1250px) {
  section.auftritte .auftritte {
  /*  grid-template-columns: 1fr 1fr 1fr; */
  }
}

section.kontakt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
section.kontakt .wrapper {
  padding: 50px 0;
}/*# sourceMappingURL=main.css.map */

.wrapper_Aufritt_table {
  max-width: 800px;
  margin: 0 auto;
}

.table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.row {
  display: table-row;
  border-bottom: 1px solid #ccc;
}

.cell {
  display: table-cell;
  padding: 10px;
  text-align: left;
}

.header {
  font-weight: bold;
  background-color: #709FB7;
}


.container {
  text-align: center; /* Zentriert Text und Bild horizontal */
  padding: 20px; /* Abstände für einen sauberen Look */
}

.centered-image {
  display: block;
  margin: 20px auto; /* Zentriert das Bild horizontal */
  max-width: 70%; /* Bild passt sich der Bildschirmbreite an */
  height: auto; /* Bewahrt das Seitenverhältnis */
}