@import 'css/reset.css';
@import 'css/variables.css';
@import 'css/typo.css';
@import 'css/nav.css';
@import 'css/base.css';
@import 'css/slideshow.css';
@import 'css/sections.css';
@import 'css/scrolling.css';

/*-----------------------------------------------------------------Intro*/

#intro_image {
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: var(--z-index-back-100);
  object-fit: cover;
  filter: brightness(0.8) saturate(1.3) contrast(0.85);
}

#intro_frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(var(--sizing-gap-general)*2);
  width: 100%;
}

#intro_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  gap: 20px;
}

#shape-circle {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-radius: 100%;
  background-color: var(--color-intro-text);
  text-align: center;
  margin: 35px;
  aspect-ratio: 1;
  width: 40%;
  max-width: 500px;
  overflow: hidden;
  animation: breathe 4s ease-in-out infinite;
}


@keyframes breathe {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* Größer */
  }
  100% {
    transform: scale(1); /* Zurück */
  }
}

#shape-circle img {
  width: 130%;
  object-fit: cover;
  aspect-ratio: 1;
  padding-top: 5%;
  background-color: white;
  filter: hue-rotate(135deg);
  mix-blend-mode: multiply;
}

#intro_header_title {
  display: flex;
  width: 100%;
}

#intro_header_title h1 {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: clamp(18px, 5vw, 60px);
  letter-spacing: 1.5px;
  line-height: 1.1;
  text-align: center;
}

#intro_header_line {
  display: none;
}

#intro_header_text {
  display: flex;
  width: 100%;
}

#intro_header_text h2 {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 26px;
  font-size: clamp(12px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: 1px;
  text-align: center;
}

#intro_continue {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
}

@media (max-width: 600px) {
  #intro_header { 
    gap: 0;
  }

  #intro_header_line {
    display: flex;
    width: 100%;
    margin: 10px;
  }
  #intro_header_title h1 {
    line-height: 1.3;
  }
}

/*-----------------------------------------------------------------Anreise*/

#map {
  transition: all var(--transition-responsive);
  /*border: var(--border-fat);*/
  background-color: var(--color-body);
  aspect-ratio: 1/1;
  max-width: var(--sizing-width-max);
  overflow: hidden;
  color: var(--color-brand-anthracite);
}

#map:active, #map:hover {
  transform: scale(1.01);
}

/*-----------------------------------------------------------------Feedback*/

#feedback_citations {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 30px;
  width: 100%;
  max-width: var(--sizing-width-max);
}

@media (max-width: 600px) {
  #feedback_citations {
    width: 100%;
  }
}

/*-----------------------------------------------------------------Footer*/

#footer_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}