@charset "UTF-8";
/* CSS Document */

@font-face {
  font-family: 'helvetica';
  src: url('font/Helvetica.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'helvetica';
  src: url('font/Helvetica-Bold.ttf') format('ttf');
  font-weight: bold;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "helvetica", sans-serif;
  background-color: #000;
  color: #000;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0.01rem;
}

.wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  padding-top: 	20px;
  padding-bottom: 0px;
  max-width: 800px;
  margin: 60px auto;
  //border: solid 0.0001rem #fff;
  margin-bottom: 10px;
}

.header {
  color: white;
  padding: 100px 60px 60px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mutual-logo {
    fill: #fff;
  }

.header h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  overflow: hidden;
}

.header .subtitle, .header .floor {
  margin-left: 0px;
}
.header .subtitle {
  margin-top: 1rem;
  font-size: 1.5rem;
}
.header .floor {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: 100;
}

.people {
  color: white;
  padding: 60px;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.person {
}
.person h3 {
  font-size: 1.4rem;
  display: block;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.person a {
  color: white;
  text-decoration: none;
}

.bt-kontakt {
  display: inline-block;
  background-color: #fff;
  margin-top: 2.3rem;
  padding: 0.4rem 1.2rem;
  border: solid 1px #fff;
  border-radius: 9999px;
  font-size: 1.2rem;
  text-decoration: none;
  width: fit-content;
  align-self: flex-start;
  color: #000;
  text-decoration: none;
}
.bt-kontakt:hover {
  background-color: #000;
  color: #fff;
  border: solid 1px #fff;
}

.footer {
  color: white;
  text-align: center;
  margin: 0.2rem auto;
  padding: 10px;
  font-size: 0.9rem;
  width: 300px
}

.footer a {
  color: #333;
  text-decoration: none;
  margin: 0 1rem;
}

.wrapper {
position: relative; /* wichtig für das Badge-Positionieren relativ zum Wrapper */
}

/*.corner-badge {
  position: absolute;
  bottom: -20px;  
  right: -20px;
  background-color: yellow;
  color: black;
  font-size: 1.1rem;
  padding: 1.4rem 1.2rem;
  border-radius: 50%;
  transform: rotate(-15deg);
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  z-index: 10;
  font-family: 'helvetica', sans-serif;
  text-align: center;
  white-space: nowrap;
} 

.corner-badge {
  position: absolute;
  background-color: yellow;
  color: black;
  font-size: 1.1rem;
  padding: 1.4rem 1.2rem;
  border-radius: 50%;
  transform: rotate(-15deg);
  box-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.3),
    -1px -1px 0 rgba(255, 255, 255, 0.4) inset;
  z-index: 10;
  font-family: 'helvetica', sans-serif;
  text-align: center;
  white-space: nowrap;
  filter: brightness(0.95) contrast(0.95) saturate(1.2);
  background-image: 
    repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 2px, transparent 2px, transparent 4px),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 70%);
  background-blend-mode: multiply;
  backdrop-filter: blur(0.3px);
  transition: transform 0.3s ease;
  animation: wobble 6s infinite ease-in-out;
}*/

.badge-container {
  position: absolute;
  top: -10px;
  right: 20px;
}
.corner-badge-2 {
  height: 4rem;
  width: 4rem;
  text-align: center;
  background-color: yellow;
  color: black;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 1.8rem 1.6rem 1.4rem 1.6rem;
  border-radius: 50%;
  transform: rotate(-15deg);
  display: flex;
  justify-content: center;
  align-items: center;
}


@media (min-width: 768px) {
  .wrapper {
    flex-direction: row;
    justify-content: space-between;
    //border: solid 0.0001rem #666 !important;
  }
  .header, .people {
    width: 48%;
  }
  .header h1 {
    font-size: 10rem;
  }
  .header .subtitle, .header .floor {
    margin-left: 12px;
  }
}

/* loading animation */
.badge-container {
  -moz-animation-name:droptxtbox;
  -moz-animation-iteration-count:1;
  -moz-animation-timing-function:ease-out;
  -moz-animation-duration:1.6s;
  -webkit-animation-name:droptxtbox;
  -webkit-animation-iteration-count:1;
  -webkit-animation-timing-function:ease-out;
  -webkit-animation-duration:1.6s;
  animation-name:droptxtbox;
  animation-iteration-count:1;
  animation-timing-function:ease-out;
  animation-duration:1.6s;
}
@-moz-keyframes droptxtbox {
  0% {
    -moz-transform:translateY(30px);
  }
  100% {
    -moz-transform:translateY(0);
  }
}
@-webkit-keyframes droptxtbox {
  0% {
    -webkit-transform:translateY(30px);
  }
  100% {
    -webkit-transform:translateY(0);
  }
}
@keyframes droptxtbox {
  0% {
    transform:translateY(30px);
  }
  100% {
    transform:translateY(0);
  }
}