@charset "UTF-8";
@import "resets/_normalize.css";
:root {
  --pink: #C725BB;
  --red: #BF0000;
  --greige: #CEC7C7;
  --swiper-theme-color: #C725BB;
}

@font-face {
  font-family: "FKScreamer";
  src: url("../fonts/FKScreamer-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Suisse";
  src: url("../fonts/SuisseIntl-Regular-WebS.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Suisse";
  src: url("../fonts/SuisseIntl-Medium-WebS.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
.FKScreamer {
  font-family: "FKScreamer", sans-serif;
}

.Suisse {
  font-family: "Suisse", sans-serif;
}

.fontSizeL {
  font-size: 7rem;
}

.fontSizeM {
  font-size: 5rem;
}

.fontSizeS {
  font-size: 1.2rem;
  line-height: 1.6rem;
}

body {
  background: var(--pink);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

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

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
  font-weight: inherit;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

input {
  font-weight: inherit;
}

ul, ol, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

img, video {
  width: 100%;
  height: auto;
}

input {
  border-radius: 0;
}

code, pre {
  font-family: inherit;
  font-size: inherit;
  margin: 0;
}

body {
  font-family: "Suisse", sans-serif;
  padding: 0;
  margin: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
body h1,
body h2,
body h3 {
  margin: 0;
}
body *,
body *::before,
body *::after {
  box-sizing: border-box;
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

.questions {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(5, 1fr);
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
}
.questions.loaded {
  opacity: 1;
  width: 2000px;
  height: 4000px;
}
@media (min-width: 501px) {
  .questions.loaded {
    width: 8000px;
    height: 4000px;
  }
}
.questions > .question-kachel {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
.questions > .question-kachel .question-container {
  position: relative;
  line-height: 0;
  pointer-events: all;
}
.questions > .question-kachel .question-container.open.pink {
  background: var(--pink);
}
.questions > .question-kachel .question-container.open.pink .question-popup p {
  background: var(--pink);
}
.questions > .question-kachel .question-container.open.red {
  background: var(--red);
}
.questions > .question-kachel .question-container.open.red .question-popup p {
  background: var(--red);
}
.questions > .question-kachel .question-container.open .question-popup {
  visibility: visible;
}
.questions > .question-kachel .question-container.open .question-bubble {
  filter: invert(1) saturate(0);
}
.questions > .question-kachel .question-container .question-bubble {
  width: 55px;
  height: 55px;
  background-size: contain;
}
@media (min-width: 501px) {
  .questions > .question-kachel .question-container .question-bubble {
    width: 110px;
    height: 110px;
  }
}
.questions > .question-kachel .question-container .question-bubble.bubble-pink {
  background-image: url("../img/frage-bubble-pink.svg");
}
.questions > .question-kachel .question-container .question-bubble.bubble-red {
  background-image: url("../img/frage-bubble-red.svg");
}
.questions > .question-kachel .question-container .question-popup {
  position: absolute;
  visibility: hidden;
}
.questions > .question-kachel .question-container .question-popup > p {
  position: absolute;
  max-width: 31ch;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.13;
  text-align: center;
  color: var(--greige);
}
.questions > .question-kachel .question-container .question-popup.ol {
  top: 0;
  right: 55px;
}
@media (min-width: 501px) {
  .questions > .question-kachel .question-container .question-popup.ol {
    right: 110px;
  }
}
.questions > .question-kachel .question-container .question-popup.or {
  top: 0;
  left: 55px;
}
@media (min-width: 501px) {
  .questions > .question-kachel .question-container .question-popup.or {
    left: 110px;
  }
}
.questions > .question-kachel .question-container .question-popup.ul {
  bottom: 0;
  right: 55px;
}
@media (min-width: 501px) {
  .questions > .question-kachel .question-container .question-popup.ul {
    right: 110px;
  }
}
.questions > .question-kachel .question-container .question-popup.ur {
  bottom: 0;
  left: 55px;
}
@media (min-width: 501px) {
  .questions > .question-kachel .question-container .question-popup.ur {
    left: 110px;
  }
}

.mainNav {
  z-index: 15;
  position: fixed;
  top: 0.3rem;
  right: 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.mainNav button {
  font-size: 4rem;
  font-family: "FKScreamer", serif;
  padding: 0 1rem;
  margin: 0.6rem 0 0 0;
  border: none;
}
@media (min-width: 769px) {
  .mainNav button {
    font-size: 5rem;
  }
}
.mainNav button:first-child {
  color: var(--pink);
  background-color: var(--greige);
  opacity: 0.93;
}
.mainNav button:nth-child(2) {
  color: var(--red);
  background-color: var(--greige);
  opacity: 0.93;
}
.mainNav button:hover {
  background-color: #f0f0f0;
}
.mainNav button#menu {
  display: none;
  font-family: "Suisse", sans-serif;
  background: var(--greige);
  color: var(--red);
  padding: 0.4rem;
  margin-top: 0;
  text-transform: lowercase;
  font-size: 1.2rem;
}

.popup {
  display: none;
}
.popup.open {
  display: block;
}

body.popup-open .mainNav button {
  display: none;
}
body.popup-open .mainNav button#menu {
  display: block;
}

.popup {
  padding: 0.6rem;
  z-index: 11;
  position: fixed;
  top: 0;
  overflow-y: auto;
  height: 100%;
  width: 100vw;
}
.popup .close {
  font-family: "Suisse", sans-serif;
  background: var(--red);
  color: var(--greige);
  padding: 0.4rem;
  margin-top: 0;
}
.popup section {
  margin-bottom: 20px;
  opacity: 0.93;
}
.popup section h2,
.popup section h3,
.popup section div.content > div {
  width: 90%;
}
@media (min-width: 769px) {
  .popup section h2,
  .popup section h3,
  .popup section div.content > div {
    width: 60%;
  }
}
.popup section h2, .popup section h3 {
  font-family: "FKScreamer", serif;
  font-size: 4rem;
}
@media (min-width: 769px) {
  .popup section h2, .popup section h3 {
    font-size: 5rem;
  }
}
.popup section h2 {
  margin-bottom: 10px;
  margin-top: 0.6rem;
}
.popup section h2 span {
  background: var(--greige);
  margin-right: 5px;
  padding: 0 0.6rem;
}
.popup section h2 span:last-of-type {
  margin-right: 0;
}
.popup section h3 span {
  background: var(--greige);
  margin-right: 10px;
  padding: 0 0.6rem;
}
.popup section h3 span:last-of-type {
  margin-right: 0;
}
.popup section article {
  margin-bottom: 10px;
}
.popup section article h3 {
  display: flex;
  justify-content: space-between;
}
.popup section article h3 span:first-of-type {
  flex: 1;
}
.popup section article h3 span.title {
  line-height: 1;
  padding: 0.6rem 0.6rem 0.6rem 0.6rem;
}
.popup section article h3 span:not(.title) {
  height: calc(1em + 1.2rem);
  margin-top: auto;
}
.popup section article > div.content {
  display: flex;
  flex-direction: column;
}
.popup section article > div.content > div {
  padding: 10px;
  background: var(--greige);
  font-family: "Suisse", sans-serif;
  font-size: 1.3rem;
  line-height: 1.8rem;
}
.popup section.pink h2 {
  color: var(--pink);
}
.popup section.pink h3 span {
  color: var(--pink);
}
.popup section.pink .inv {
  background: var(--pink);
  color: var(--greige);
}
.popup section.pink article div.content > div {
  background: var(--pink);
  color: var(--greige);
}
.popup section.pink article div.content > div:nth-of-type(even) {
  align-self: end;
}
.popup section.pink article:first-of-type h3 span {
  background: var(--pink);
  color: var(--greige);
}
.popup section.pink article:first-of-type div.content > div {
  background: var(--greige);
  color: var(--pink);
}
.popup section.red h2,
.popup section.red h3 {
  margin-left: 10%;
}
@media (min-width: 769px) {
  .popup section.red h2,
  .popup section.red h3 {
    margin-left: 40%;
  }
}
.popup section.red h2 {
  text-align: right;
  color: var(--red);
}
.popup section.red h3 span {
  color: var(--red);
}
.popup section.red .inv {
  background: var(--red);
  color: var(--greige);
}
.popup section.red article div.content > div {
  color: var(--greige);
  background: var(--red);
}
.popup section.red article div.content > div:nth-child(odd) {
  align-self: end;
}
.popup section.red article:first-of-type h3 span {
  background: var(--red);
  color: var(--greige);
}
.popup section.red article:first-of-type div.content > div {
  background: var(--greige);
  color: var(--red);
}

.swiper {
  width: 100%;
  margin-top: 0.6rem;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: auto !important;
}
.swiper-slide figcaption {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
}
.swiper-slide img {
  height: 60vh !important; /* gleiche Höhe wie der Swiper */
  width: auto;
}

.swiper-button-next,
.swiper-button-prev {
  width: 100px; /* adjust size as needed */
  height: 100px; /* adjust size as needed */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Remove default Swiper arrow content */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

/* Your existing arrow image rules */
.swiper-button-prev {
  background-image: url("../img/arrow-l.svg") !important;
}

.swiper-button-next {
  background-image: url("../img/arrow-r.svg") !important;
}

/* Optional: Add hover states */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.8;
}

/* Optional: Style disabled state */
.swiper-button-disabled {
  opacity: 0.3;
}

.swiper-button-prev {
  left: 10px; /* adjust as needed */
}

.swiper-button-next {
  right: 10px; /* adjust as needed */
}/*# sourceMappingURL=index.css.map */