/*INHALT

1.Farbdefinitionen
2.Schriften Monserrat und Bebas Neue
3.Seiten Aufbau (Horizontal Scroll)
4.Navigation Header
5.Footer
6.Content Home
7.Content Arbeiten
8.Content Über Mich
9.Content Kontakt
10.Diverses

*/

/*Farbdefinitionen*/
farben {
  color: #33332f;
  color: #e5e5e5;
  color: #a6465f;
  color: #8c3545;
  color: #591b26;
}

/*Schriften Monserrat und Bebas Neue*/
@font-face {
  font-family: "Montserrat";
  src: url(/fonts/Montserrat-Light.ttf);
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Montserrat";
  src: url(/fonts/Montserrat-Regular.ttf);
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url(/fonts/Montserrat-Medium.ttf);
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Montserrat";
  src: url(/fonts/Montserrat-Bold.ttf);
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Bebas Neue";
  src: url(/fonts/BebasNeue-Regular.ttf);
  font-style: normal;
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

/*Seiten Aufbau (Horizontal Scroll)*/
body,
html {
  height: 100vh;
}

.blende {
  z-index: 999;
  position: absolute;
  margin: 0;
  width: 100vw;
  height: 100vh;
  background-color: #8c3545;
  animation-name: blende;
  animation-duration: 1900ms;
  animation-fill-mode: forwards;
  animation-delay: 2.8s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blende2 {
  position: absolute;
  z-index: 998;
  animation-name: blende;
  animation-duration: 2000ms;
  animation-fill-mode: forwards;
  animation-delay: 2.8s;
  background-color: #ffffff;
  width: 100vw;
  height: 100vh;
}

@keyframes blende {
  0% {
    transform: translateY(0%);
  }
  40% {
    transform: translateY(0%);
  }
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

.logo {
  position: relative;
  width: 50mm;
  animation-name: logo;
  animation-duration: 800ms;
  animation-fill-mode: forwards;
  animation-delay: 2.8s;
}

@keyframes logo {
  0% {
    transform: scale(100%);
  }
  50% {
    transform: scale(100%);
  }
  100% {
    opacity: 0;
    transform: scale(30%);
  }
}

#logo {
  width: 150px;
  align-self: center;
  justify-self: center;
}

#u1L {
  stroke-dasharray: 413px;
  stroke-dashoffset: 413px;
  animation: line-anim 0.7s ease-in forwards 1s;
}

#u2E {
  stroke-dasharray: 98px;
  stroke-dashoffset: 98px;
  animation: line-anim 0.5s ease forwards 1.8s;
}

#u3T {
  stroke-dasharray: 6px;
  stroke-dashoffset: 6px;
  animation: line-anim 0.1s ease forwards 2.4s;
}

#u4T {
  stroke-dasharray: 14px;
  stroke-dashoffset: 14px;
  animation: line-anim 0.1s ease forwards 2.6s;
}

#u5P {
  stroke-dasharray: 1px;
  stroke-dashoffset: 1px;
  animation: line-anim 0.1s ease forwards 2.8s;
}

@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}

.st0 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.6228;
  stroke-linecap: round;
}

.slide {
  scroll-snap-align: start;
  width: 100vw;
  height: calc(100vh - 150px);
}

.outer-wrapper {
  width: 100vh;
  height: 100vw;
  transform: rotate(-90deg) translateX(-100vh);
  transform-origin: top left;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.wrapper {
  z-index: 2;
  display: grid;
  grid-template-columns: 100vw 100vw 100vw 100vw;
  grid-template-rows: 110px auto 40px;
  grid-template-areas:
    "header header header header"
    "home arbeiten uebermich kontakt"
    "footer footer footer footer";
  width: 400vw;
  transform: rotate(90deg) translateY(-100vh);
  transform-origin: top left;
  background-image: radial-gradient(
    circle at center center,
    #8c3545,
    #33332f,
    #33332f
  );
  background-size: 200% 200%;

  animation: move-bg 25s linear infinite;
}

@keyframes move-bg {
  0% {
    background-position: left top;
  }
  25% {
    background-position: right top;
  }
  50% {
    background-position: right bottom;
  }
  75% {
    background-position: left bottom;
  }
  100% {
    background-position: left top;
  }
}

/*Footer*/
.footer {
  align-items: center;
  justify-content: space-around;
  grid-area: footer;
  display: flex;
  position: bottom;
  color: #fff;
  background: #33332f;
  border-top: solid #fff 1px;
}

.footer h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 0.8em;
}

/*Content Home*/
.home {
  grid-area: home;
  display: flex;
  position: absolut;
  align-items: center;
  justify-content: center;
}

.home_content {
  position: relative;
  align-self: center;
  justify-self: center;
  background: #8c3545;
  color: #fff;
  width: 950px;
  height: 500px;
  border: solid white 1px;
  overflow: hidden;
  animation: home_content 1000ms ease-in-out;
  animation-delay: 4800ms;
  animation-fill-mode: backwards;
}

@keyframes home_content {
  0% {
    opacity: 0;
    transform: scale(300%);
  }
  100% {
    transform: scale(100%);
  }
}

.home_meine {
  display: flex;
  justify-content: flex-start;
  margin-left: 25px;
  margin-top: 0px;
  font-family: "Bebas Neue", cursive;
  font-weight: normal;
  font-size: 140px;
  animation: home_meine 1200ms cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-delay: 4800ms;
  animation-fill-mode: backwards;
}

@keyframes home_meine {
  0% {
    transform: translateY(-200%);
  }
  100% {
    transform: translateY(0);
  }
}

.home_passion {
  display: flex;
  justify-content: flex-start;
  margin-left: 25px;
  margin-top: -72px;
  font-family: "Bebas Neue", cursive;
  font-weight: normal;
  font-size: 140px;
  animation: home_passion 1000ms cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-delay: 4800ms;
  animation-fill-mode: backwards;
}

@keyframes home_passion {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.home_content h2 {
  font-size: 32px;
  margin-left: 28px;
  margin-top: -20px;
}

.home_content hr {
  color: #fff;
  margin-top: 15px;
  margin-left: 28px;
  margin-bottom: 24px;
  width: 343px;
  animation: home_hr 1500ms cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-delay: 4800ms;
  animation-fill-mode: backwards;
}

@keyframes home_hr {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.home_content p {
  margin-top: 0px;
  margin-left: 28px;
  font-weight: 300;
  animation: home_h2 4800ms ease-in;
}

.home_wartisch {
  height: 100%;
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: 99;
}

.home_wartisch h3 {
  font-family: "Bebas Neue", cursive;
  font-weight: normal;
  font-size: 100px;
}

.home_content a {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  height: 60px;
  background: #fff;
  text-decoration: none;
  color: #33332f;
  font-size: 1.43em;
  margin-top: 49px;
  padding-right: 32px;
  font-weight: 700;
}

.home_content:hover a {
  color: #fff;
  background: #8c3545;
}

.home_content:hover {
  color: #33332f;
  background: #33332f;
  border: solid #fff 1px;
  transition: 0.5s ease-in-out;
  cursor: wait;
}

.home_content:hover .home_wartisch {
  opacity: 1;
  transition-delay: 4s;
  pointer-events: none;
}

.home_content:hover .home_wartisch h3 {
  color: #fff;
}

.home_content:hover hr {
  color: #fff;
  margin-left: -1px;
  width: 100%;
  transform: translateY(111px);
  transition: 0.6s ease-in-out;
}

/*Content Arbeiten*/
.arbeiten {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  grid-area: arbeiten;
  position: absolute;
}

.arbeiten_card {
  margin: 10px;
  width: auto;
  max-width: 300px;
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  overflow: hidden;
  text-decoration: none;
}
.arbeiten_card .arbeiten_circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.arbeiten_card .arbeiten_circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #a6465f;
  clip-path: circle(120px at center);
  transition: 0.5s;
}
.arbeiten_card:hover .arbeiten_circle::before {
  background: #fff;
  clip-path: circle(400px at center);
}

.arbeiten_card h1 {
  color: #fff;
  font-family: "Bebas Neue", cursive;
  font-size: 140px;
}

.arbeiten_card .F {
  position: absolute;
  top: 260px;
  left: 120px;
  transform: translate(-50%, -50%);
  height: 250px;
  pointer-events: none;
  clip-path: circle(120px at center);
  transition: 0.5s;
}

.arbeiten_card:hover .F {
  clip-path: circle(400px at center);
  top: 239px;
  left: 30px;
  transition: 0.5s ease-in;
}

.arbeiten_card:hover .F h1 {
  opacity: 0%;
  font-size: 70px;
  transition: 0.5s ease-in;
}

.arbeiten_card .G {
  position: absolute;
  top: 190px;
  left: 90px;
  transform: translate(-50%, -50%);
  height: 250px;
  pointer-events: none;
  clip-path: circle(120px at center);
  transition: 0.5s;
}

.arbeiten_card:hover .G {
  clip-path: circle(400px at center);
  top: 239px;
  left: 85px;
  height: 250px;
  transition: 0.5s ease-in;
}

.arbeiten_card:hover .G h1 {
  opacity: 0%;
  font-size: 70px;
  transition: 0.5s ease-in;
}

.arbeiten_card .K {
  position: absolute;
  top: 210px;
  left: 200px;
  transform: translate(-50%, -50%);
  height: 250px;
  pointer-events: none;
  clip-path: circle(120px at center);
  transition: 0.5s;
}

.arbeiten_card:hover .K {
  clip-path: circle(400px at center);
  top: 246px;
  left: 37px;
  transition: 0.5s ease-in;
}

.arbeiten_card:hover .K h1 {
  opacity: 0%;
  font-size: 70px;
  transition: 0.5s ease-in;
}

.arbeiten_card .arbeiten_content {
  width: 100%;
  padding: 15px;
  position: relative;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.arbeiten_card:hover .arbeiten_content {
  opacity: 1;
  visibility: visible;
}
.arbeiten_card .arbeiten_content h2 {
  color: #33332f;
  font-family: "Bebas Neue", cursive;
  text-transform: uppercase;
  font-size: 70px;
  line-height: 1em;
  margin-bottom: 15px;
  text-align: center;
}
.arbeiten_card .arbeiten_content p {
  font-size: 0.8em;
  text-align: center;
  color: #33332f;
  padding-bottom: 10px;
}

.arbeiten_card:hover {
  height: 400px;
}

/*Content Über Mich*/
.uebermich {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  grid-area: uebermich;
  position: absolute;
}

.uebermich_card {
  position: relative;
  width: 950px;
  height: 500px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  overflow: hidden;
}
.uebermich_card .uebermich_circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.uebermich_card .uebermich_circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: circle(120px at center);
  transition: 0.5s;
  cursor: pointer;
}

.uebermich_card .uebermich_circle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: circle(120px at center);
  transition: 0.5s;
  cursor: pointer;
}

.uebermich_trigger {
  position: absolute;
  left: 355px;
  width: 240px;
  height: 240px;
  z-index: 1000;
}

.uebermich_trigger .trigger {
  opacity: 0;
  cursor: pointer;
}

.uebermich_card .uebermich_circle::before {
  background: #8c3545;
  clip-path: circle(600px at center);
}

.uebermich_card .uebermich_circle::after {
  opacity: 0;
}

.uebermich_card img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 250px;
  pointer-events: none;
  clip-path: circle(120px at center);
  transition: 0.5s;
}
.uebermich_card img {
  left: 80%;
  height: 510px;
  clip-path: circle(400px at center);
}

.uebermich_card {
  border: 1px solid #fff;
}

.uebermich_card .filter-green {
  filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(320deg)
    brightness(118%) contrast(119%);
}

.uebermich_card .uebermich_content {
  position: relative;
  width: 50%;
  height: 100%;
  padding-top: 10px;
  padding-left: 40px;
  transition: 0.5s;
  left: 0%;
  opacity: 1;
  visibility: visible;
}

.uebermich_Timon {
  color: #fff;
  text-transform: uppercase;
  font-family: "Bebas Neue", cursive;
  font-weight: normal;
  font-size: 140px;
}
.uebermich_Lehmann {
  color: #fff;
  text-transform: uppercase;
  margin-top: -72px;
  margin-bottom: 50px;
  font-family: "Bebas Neue", cursive;
  font-weight: normal;
  font-size: 140px;
}

.uebermich_card .uebermich_content p {
  font-size: 1em;
  text-align: left;
  color: #fff;
}

/*Content Kontakt*/
.kontakt {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: kontakt;
  position: absolut;
}

/*main div */
.kontakt_container {
  width: 950px;
  height: 500px;
  display: grid;
  grid-gap: 0;
  grid-template-columns: 3fr 2fr 3fr;
}

/*form-left styling */

.form-left {
  background-color: #8c3545;
  padding: 20px 30px 0px 30px;
  border: solid white 1px;
}

.form-left h1,
.form-right h1 {
  color: #fff;
  text-transform: uppercase;
  font-family: "Bebas Neue", cursive;
  font-weight: normal;
  font-size: 67px;
}

.kontakt_anliegen {
  margin-top: -30px;
}

.form-left h2 {
  font-weight: 600;
  font-size: 1.2em;
  color: #fff;
  padding-top: 12px;
  padding-bottom: 10px;
  margin: 0;
}

.form-left h4,
.form-right h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1em;
  color: #fff;
  font-weight: 600;
}

.line {
  border-bottom: 2px solid #a6465f;
  width: 150px;
  padding-top: 5px;
}

.form-left span {
  color: #fff;
  font-weight: 200;
}

.form-left hr {
  width: 100%;
  margin-top: 10px;
  color: #fff;
}

/*form-middle styling */

.form-middle {
  background: #33332f;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid white 1px;
  padding: 0;
}
.citymap {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: url(/img/map.jpg);
  background-position: top;
  background-size: cover;
  transition: 2s;
}
.citymap:hover {
  background-position: center;
}
.citymap:hover .standort {
  transition: ease-in-out 800ms;
  scale: 1.25;
}
.standort {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  margin: 70px;
}

.standort::before,
.standort::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 50%;
}

.standort::before {
  border: solid 5px #a6465f;
  z-index: 10;
}
.standort:hover::after {
  border: solid 5px #a6465f;
  z-index: 1;
  animation: pulse 1200ms infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.95;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/*form-right styling */
.form-right {
  padding: 20px 30px 0px 30px;
  color: #fff;
  background-color: #33332f;
  border: solid white 1px;
}

form input {
  height: 30px;
  padding: 0.6rem;
  width: 100%;
  border: none;
  background-color: rgba(136, 133, 133, 0.3);
  color: #fff;
  outline: none;
  border: none;
  font-size: 0.8em;
}

form input:focus {
  background-color: rgba(166, 70, 95, 0.3);
}

form textarea {
  height: 70px;
  padding: 0.6rem;
  width: 100%;
  border: none;
  background-color: rgba(136, 133, 133, 0.3);
  color: #fff;
  outline: none;
  border: none;
  font-size: 0.8em;
}

form textarea:focus {
  background-color: rgba(166, 70, 95, 0.3);
}

form button {
  width: 9rem;
  background: #a6465f;
  padding: 5px;
  outline: none;
  border-color: transparent;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 0.9rem;
}

form button:hover {
  width: 100%;
  background: #fff;
  color: #a6465f;
  cursor: pointer;
  transition: 0.8s;
}

/*Diverses*/
::-webkit-scrollbar {
  display: none;
}

::selection {
  background-color: #a6465f;
  color: #33332f;
}
