@charset "UTF-8";
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Definition von Variablen */
@font-face {
  font-family: "Noteworthy Light";
  font-style: normal;
  font-weight: normal;
  src: local("Noteworthy Light"), url("../fonts/Noteworthy-Lt.woff") format("woff");
}
.debugborder {
  outline: red 2px solid;
}

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

a:hover {
  text-decoration: underline;
}

li {
  list-style: none;
}

html {
  font-family: "Open Sans", sans-serif;
  color: #073055;
}

h1,
h2,
h3 {
  font-family: "Noteworthy Light", serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

body {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

form .form-field {
  padding: 1rem;
  border: 2px solid #073055;
  border-radius: 8px;
  width: 100%;
  font-size: 1.1rem;
}
form label {
  display: block;
}
form input[type=file] {
  font-size: 1.4rem;
}
form div.help {
  font-size: 0.8rem;
  margin-top: 16px;
}
form input.button {
  margin-top: 2rem;
  background: none;
  border: 2px solid #073055;
  border-radius: 8px;
  padding: 8px 32px;
  font-size: 1.4rem;
  font-family: "Noteworthy Light", serif;
  font-weight: 400;
  font-style: normal;
}
form input.button:hover {
  background-color: #073055;
  color: white;
  cursor: pointer;
}

.alert,
.success {
  margin-top: 2rem;
  margin-bottom: 1rem;
  border: 2px solid #073055;
  border-radius: 8px;
  padding: 8px 32px;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  font-family: "Open Sans", sans-serif;
}
.alert p,
.success p {
  padding: 0;
  margin: 0;
}

.alert {
  border-color: red;
}

.success {
  border-color: greenyellow;
}

/* Andere Grids je nach Bildschirmgrösse */
/* Grids zuordnen */
.staticBG {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -10;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

header {
  position: fixed;
}
header #mainmenu {
  flex-grow: 1;
}

.hamburgermenu {
  display: none;
}

main {
  margin-top: 120px;
  flex: 1;
  display: flex;
  flex-flow: row;
}

article {
  flex: 1 1 auto;
}

aside {
  flex-shrink: 2;
  display: none;
}

footer.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
footer.footer .socialmedialinks {
  display: flex;
  flex-wrap: nowrap;
}
footer.footer .socialmedialinks div {
  margin-right: 20px;
}
footer.footer .socialmedialinks img {
  height: 36px;
  width: auto;
}
footer.footer .socialmedialinks h2,
footer.footer .socialmedialinks p {
  display: none;
}

/* Allgemeine Styles */
header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #073055;
  line-height: 16px;
  background-color: rgba(255, 255, 255, 0.78);
  mix-blend-mode: normal;
  z-index: 10;
}
header .logo a {
  font-family: "Noteworthy Light";
  font-size: 2em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .logo a img {
  margin: 8px 16px;
}

#mainmenu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  padding-right: 16px;
  max-width: 540px;
}
#mainmenu .closebtn,
#mainmenu .hamburgermenu {
  display: none;
}
#mainmenu a {
  flex-grow: 1;
  padding: 8px 8px;
  display: block;
  text-align: center;
}

aside nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

main > article {
  margin: 16px 10vw;
  padding: 32px;
  max-width: 1280px;
  margin: 0 auto;
  background-color: white;
  border: 2px solid #073055;
  margin: 32px auto;
  height: -moz-max-content;
  height: max-content;
}
main > article > h1 {
  font-size: 64px;
}
main > article img {
  max-width: 100%;
}
main > article div h1 {
  font-size: 40px;
  margin-top: 16px;
  margin-bottom: 32px;
}
main > article div h2 {
  font-size: 32px;
  margin-top: 16px;
}
main > article div h3 {
  font-size: 24px;
  margin-top: 16px;
}
main > article div p {
  margin-bottom: 32px;
}
main .grid {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 16px;
}
main .back,
main .readon,
main .author {
  text-align: right;
  font-size: 12.8px;
}
main .readonBig {
  font-size: 32px;
}
main li.button {
  margin-right: 8px;
  padding: 8px 16px;
  font-size: 16px;
  border: 1px solid white;
  border-radius: 8px;
}
main span {
  font-weight: 700;
}

/* Allgemeine Styles */
.fliesstext {
  max-width: 800px;
}

aside {
  background-color: rgba(3, 35, 80, 0.6901960784);
  overflow: hidden;
}
aside nav .active {
  font-weight: bold;
  display: block;
  background-color: #073055;
}
aside nav ul li {
  color: white;
}
aside nav ul li a {
  padding: 8px 32px;
  display: block;
}
aside nav ul.events {
  margin-left: 2px;
}
aside nav ul ul.subpages {
  margin-left: 10px;
}
aside nav ul ul.subpages a {
  color: rgba(255, 255, 255, 0.75);
}
aside nav ul ul.subpages li.active a,
aside nav ul ul.subpages li a:hover {
  color: white;
}

.heromenu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 128px;
}
.heromenu a {
  flex-grow: 1;
  text-align: center;
  margin: 8px 16px 8px 0;
  padding: 16px 32px;
  font-size: 32px;
  border: 2px solid #073055;
  border-radius: 8px;
  font-family: "Noteworthy Light", serif;
  font-weight: 400;
  font-style: normal;
}
.heromenu a:hover {
  background-color: #073055;
  color: white;
}

footer.footer {
  padding: 8px 32px;
  text-align: right;
  color: white;
  border-top: 3px solid #073055;
}

/* Spezielle Styles pro bestimmte Seiten */
main#home {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: -10vh;
}
main#home article {
  border: none;
  background-color: transparent;
}
main#home h1 {
  font-size: 64px;
  text-align: center;
}
main#home .heromenu a {
  border-color: white;
  background-color: transparent;
  display: block;
}
main#home .heromenu a:hover {
  background-color: white;
  color: #073055;
}

main.article article .content {
  max-width: 800px;
  margin: 0 auto 128px auto;
}
main.article article .content ul,
main.article article .content ol {
  padding-left: 32px;
  margin-bottom: 32px;
}
main.article article .content ul li {
  list-style: disc;
}
main.article article .content ol li {
  list-style: decimal;
}
main.article article .content a {
  display: inline-block;
  background-color: #ddebf1;
  padding: 0 4px;
}

main.article#contact article ul {
  padding-left: 0;
}
main.article#contact article ul li {
  list-style: none;
}
main.article#contact article a {
  background-color: transparent;
}

main.about .preview,
main.currents .preview {
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #073055;
  margin: 16px auto;
}
main.about .preview div,
main.currents .preview div {
  max-width: 960px;
  margin: 8px auto;
}
main.about .readon,
main.about .author,
main.currents .readon,
main.currents .author {
  float: right;
}

main#contact .card {
  margin: 16px 0;
  padding-bottom: 32px;
  text-align: center;
}
main#contact .card .l-portrait img {
  border-radius: 8px;
}

main#social-media article.div {
  display: flex;
}

main.jahresprogramme article {
  border: none;
  background-color: transparent;
  color: #073055;
}
main.jahresprogramme article > h1 {
  display: block;
  background-color: white;
  padding: 16px;
  text-align: center;
  width: 100%;
  margin-bottom: 32px;
  box-shadow: 7px 9px 20px 0px rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  border: 1px solid #073055;
}
main.jahresprogramme .grid {
  display: grid;
  grid-template-columns: min-content 1fr min-content;
  grid-template-rows: 3fr max-content max-content 1fr;
}
main.jahresprogramme .grid:hover {
  cursor: pointer;
}
main.jahresprogramme .grid.left {
  grid-template-areas: "fig . ." "fig titel ." "fig text ." "fig . .";
}
main.jahresprogramme .grid.right {
  grid-template-areas: ". . fig" ". titel fig" ". text fig" ". . fig";
}
main.jahresprogramme .grid figure {
  grid-area: fig;
  min-width: 360px;
  padding: 32px;
}
main.jahresprogramme .grid .title {
  grid-area: titel;
  z-index: 2;
  padding: 0 32px;
}
main.jahresprogramme .grid .text {
  max-height: 1000px;
  grid-area: text;
  z-index: 2;
  padding: 0 32px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 32px;
}
main.jahresprogramme .grid.closed .text {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
main.jahresprogramme .grid figure {
  text-align: center;
}
main.jahresprogramme .grid figure img {
  z-index: 8;
  position: relative;
  border-radius: 50%;
  border: 8px solid white;
  box-shadow: 0 0 0 4px #073055, 2px 2px 12px 8px rgba(0, 0, 0, 0.25);
  width: 360px;
  transition: all 0.3s ease-in-out;
}
main.jahresprogramme .grid.open figure img {
  width: 200px;
  transition: all 0.3s ease-in-out;
  margin: 64px;
}
main.jahresprogramme .grid .bghelper {
  grid-column: 1/-1;
  grid-row: 2/-2;
  background-color: white;
  z-index: 1;
  box-shadow: 7px 9px 20px 0px rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  border: 1px solid #073055;
}
main.jahresprogramme section .flex {
  display: flex;
  flex-wrap: wrap;
}
main.jahresprogramme section .flex a + a {
  margin-left: 3rem;
}

main.event {
  /* Modal Content */
  /* Grid */
  /* The Close Button */
  /* Next & previous buttons */
}
main.event .infosZumAnlass {
  border: 2px solid #073055;
  border-radius: 8px;
  padding: 48px;
  margin-bottom: 64px;
}
main.event .infosZumAnlass h3 {
  margin: 32px 0 16px;
}
main.event .infosZumAnlass a {
  display: inline-block;
  background-color: #ddebf1;
  padding: 0 4px;
}
main.event .wann,
main.event .wo {
  font-size: 24px;
  margin-bottom: 32px;
}
main.event .wann h1,
main.event .wo h1 {
  margin-bottom: 0;
}
main.event .prevNext {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
main.event .prevNext > div a {
  font-size: 12px;
  display: block;
  padding: 12px 0;
}
main.event .gallery {
  margin: 8px auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
  grid-auto-flow: dense;
}
main.event .gallery figure {
  position: relative;
  margin: 0;
  /* figure hat sonst einen browsereigenen Abstand! */
}
main.event .gallery figure.portrait {
  grid-row-end: span 2;
}
main.event .gallery img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  height: auto;
}
main.event .modal {
  display: none;
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: white;
}
main.event .modal-content {
  display: grid;
  height: 100vh;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: min-content max-content 1fr;
  justify-content: space-between;
  align-items: center;
  color: #073055;
}
@media (orientation: landscape) {
  main.event .modal-content {
    grid-template-areas: ". title close" " prev foto next" ". text .";
    align-items: stretch;
  }
  main.event .modal-content img {
    max-width: 75vw;
    max-height: 70vh;
    width: auto;
    height: auto;
  }
  main.event .modal-content .prev,
  main.event .modal-content .next {
    display: block;
    padding-top: 25vh;
  }
}
@media (orientation: portrait) {
  main.event .modal-content {
    grid-template-areas: "title title title" "foto foto foto" "prev close next";
    align-items: end;
  }
  main.event .modal-content img {
    max-width: 95vw;
    max-height: 70vh;
    width: auto;
    height: auto;
  }
}
main.event .modal-title {
  grid-area: title;
}
main.event .next {
  grid-area: next;
  text-align: right;
}
main.event .prev {
  grid-area: prev;
  text-align: left;
}
main.event .modal-fotos {
  grid-area: foto;
}
main.event .mySlides {
  z-index: 3;
  align-self: normal;
  justify-self: center;
  margin: 4px;
}
main.event .mySlides figure {
  padding: 32px;
  border-radius: 16px;
  background-color: white;
  border: 1px solid #cacaca;
  text-align: center;
}
main.event .mySlides figure img {
  border: 2px solid #073055;
  -o-object-fit: contain;
     object-fit: contain;
}
main.event .close {
  grid-area: close;
  padding-bottom: 16px;
  text-align: right;
  margin-top: 8px;
  margin-right: 16px;
}
main.event .close:hover,
main.event .close:focus {
  text-decoration: underline;
  cursor: pointer;
}
main.event .mySlides {
  display: none;
}
main.event .cursor {
  cursor: pointer;
}
main.event .prev,
main.event .next {
  cursor: pointer;
  font-weight: bold;
  font-size: 32px;
  transition: 0.3s ease;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  padding: 32px;
}
main.event .prev a,
main.event .next a {
  text-decoration: none;
}
main.event figcaption {
  display: flex;
  justify-content: space-between;
}

main.leiterinnen .card,
main.gruppen .card {
  padding: 12.8px 16px 16px 16px;
  border: 2px solid white;
  border-radius: 8px;
  transition: all 0.3s ease;
}
main.leiterinnen .card:hover,
main.gruppen .card:hover {
  border-color: #073055;
  box-shadow: 3px 4px 4px 1px rgba(0, 0, 0, 0.3137254902);
}
main.leiterinnen .card:hover img,
main.gruppen .card:hover img {
  border-radius: 4px;
  border: none;
}
main.leiterinnen .card figcaption,
main.gruppen .card figcaption {
  font-family: "Noteworthy Light", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  text-align: center;
}
main.leiterinnen .card img,
main.gruppen .card img {
  width: 100%;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 3px solid #073055;
}

main.leiterin .flex,
main.gruppe .flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: white;
  padding: 64px;
}
main.leiterin .l-portrait,
main.gruppe .l-portrait {
  flex: 1 0 200px;
  background-color: white;
  align-self: start;
  text-align: center;
  margin-bottom: 64px;
}
main.leiterin .l-portrait span.border,
main.gruppe .l-portrait span.border {
  padding: 16px;
  border: 3px solid #073055;
  border-radius: 16px;
  margin: 0 auto;
  display: inline-block;
}
main.leiterin .l-portrait img,
main.gruppe .l-portrait img {
  border-radius: 8px;
}
main.leiterin .infos,
main.gruppe .infos {
  flex: 2 1 0;
  margin-left: 48px;
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: repeat(7, min-content);
  grid-gap: 16px;
  align-items: baseline;
}
main.leiterin .infos .label,
main.gruppe .infos .label {
  grid-column: 1;
  text-align: right;
}
main.leiterin .infos .value,
main.gruppe .infos .value {
  grid-column: 2;
  font-family: "Noteworthy Light", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
}

main.fotos .grid,
main.year .grid {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 16px;
}
main.fotos li,
main.year li {
  border: 2px solid transparent;
  text-align: center;
  display: block;
}
main.fotos li:hover,
main.year li:hover {
  border-radius: 8px;
  border-color: #073055;
}
main.fotos li a:hover,
main.year li a:hover {
  text-decoration: none;
}
main.fotos li li,
main.year li li {
  border: none;
}
main.fotos li li a:hover,
main.year li li a:hover {
  text-decoration: underline;
}
main.fotos .card,
main.year .card {
  padding: 12.8px 16px 16px 16px;
  border: 2px solid white;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-media-entries {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.social-media-entries a {
  display: block;
  text-decoration: none;
}
.social-media-entries a .social-media-entry {
  display: flex;
  flex: 1;
  align-items: flex-end;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #073055;
  margin: 16px auto;
}
.social-media-entries a .social-media-entry img {
  max-width: 160px;
  height: auto;
  margin-bottom: 8px;
  border-radius: 4px;
}
.social-media-entries a .social-media-entry h2 {
  color: #073055;
  font-size: 3rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
}
.social-media-entries a .social-media-entry p {
  color: black;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .social-media-entries.social-media-entry {
    width: calc(50% - 16px);
  }
}
@media (max-width: 600px) {
  .social-media-entries.social-media-entry {
    width: 100%;
  }
}
/* Media queris ================================================================ */
@media screen and (max-width: 992px) {
  aside {
    display: none;
  }
  main.event .close {
    font-size: 12px;
  }
  main.event .modal-title {
    font-size: 16px;
    padding: 4px;
    margin: 0;
  }
  main.event .modal-title h1 {
    font-size: 16px;
    margin: 4px;
  }
  main.event .mySlides figure {
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  main.event .close {
    justify-self: center;
  }
  main.event .close span {
    font-size: 12px;
  }
  main.jahresprogramme .grid {
    grid-template-areas: "image image image" "image image image" "titel titel titel" "text text text";
  }
  main.jahresprogramme.left figure, main.jahresprogramme.right figure {
    grid-area: image;
  }
  main.jahresprogramme.left .title, main.jahresprogramme.right .title {
    grid-area: titel;
  }
  main.jahresprogramme.left .text, main.jahresprogramme.right .text {
    grid-area: text;
  }
}
@media screen and (max-width: 600px) {
  body .hamburgermenu {
    display: block;
    padding: 8px;
  }
  body > header img {
    max-height: 32px;
    width: auto;
  }
  body > header a {
    font-size: 24px;
  }
  body #mainmenu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: #073055;
    overflow-x: hidden;
    transition: 0.5s;
    padding: 0 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 24px;
  }
  body #mainmenu a {
    flex-grow: 0;
    display: block;
    padding: 16px;
    font-family: "Noteworthy Light", serif;
    font-weight: 400;
    font-style: normal;
    color: white;
  }
  body #mainmenu .closebtn {
    display: block;
    margin-bottom: 32px;
  }
  body main {
    padding: 16px 2vw;
  }
  body main h1 {
    font-size: 2rem;
    margin: 8px;
    text-align: center;
  }
  body main h2 {
    font-size: 1.2rem;
  }
  body main h3 {
    font-size: 1rem;
  }
  body main > article {
    padding: 16px;
  }
  body .heromenu a {
    margin: 4px;
    padding: 8px 16px;
    font-size: 32px;
  }
  body main.event .modal-content h1 {
    font-size: 16px;
  }
  body main.event .close {
    grid-area: close;
    font-size: 10px;
  }
  body main.jahresprogramme section {
    margin-bottom: 48px;
  }
  body main.jahresprogramme .grid {
    grid-template-columns: min-content 1fr min-content;
    grid-template-rows: max-content max-content 1fr;
  }
  body main.jahresprogramme .grid.left, body main.jahresprogramme .grid.right {
    grid-template-areas: "fig fig fig" "titel titel titel" "text text text";
  }
  body main.jahresprogramme .grid figure {
    min-width: 0;
    padding: 0;
  }
  body main.jahresprogramme .grid img {
    width: 106%;
    margin: -20px;
  }
  body main.jahresprogramme .grid .bghelper {
    grid-column: 1/-1;
    grid-row: 1/-1;
  }
  body main.leiterin .flex,
  body main.gruppe .flex {
    flex-direction: column;
    padding: 0;
  }
  body main.leiterin .infos,
  body main.gruppe .infos {
    margin-left: 0;
    margin-top: 64px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(14, min-content);
    grid-gap: 0;
  }
  body main.leiterin .infos .label,
  body main.gruppe .infos .label {
    padding-top: 8px;
    text-align: left;
  }
  body main.leiterin .infos .value,
  body main.gruppe .infos .value {
    grid-column: 1;
  }
}/*# sourceMappingURL=style.css.map */