body {
  background-color: #fff;
}

@font-face {
  font-family: satoshi;
  src: url(/Document_fonts/Satoshi-Light.otf);
}

@font-face {
  font-family: modus;
  src: url(/Document_fonts/Modus-Regular.otf);
}

@font-face {
  font-family: calibre;
  src: url(/Document_fonts/Calibre-Light.otf);
}

.back-menu,
.menu,
.contact,
.contact2 {
  pointer-events: auto;
  cursor: pointer;
}

.menu,
.contact {
  position: absolute;
  /* oder absolute, je nach Layout */
  z-index: 6;
  /* höher als floating-images */
}

.back-menu {
  z-index: 10;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 8vh;
  padding: 0.65%;
  mix-blend-mode: difference;
}

.menu {
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: space-between;
  bottom: 0;
  padding: 0.8%;
  padding-bottom: 0;
  box-sizing: border-box;
  mix-blend-mode: difference;
}

.spacer {
  width: 0.8rem;
}

.hi {
  text-decoration: none;
  font-size: 2.5rem;
  color: #fff;
  font-family: modus;
  transition: filter .2s ease-in-out;
  filter: blur(0px);
  cursor: pointer;

}

.hi.active {
  filter: blur(2px);
}

.hi:hover {
  filter: blur(2px);
}


.phone {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: color 0.5s ease-in-out;
  filter: blur(0px);
}

.phone::after {
  content: "SCHREIB DOCH GERNE EINE MAIL :)";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, filter 0.2s ease-in-out;
  white-space: nowrap;
  color: #fff;
}

.phone:hover {
  color: transparent;
  filter: blur(2px);
}

.phone:hover::after {
  opacity: 1;
}


.logo {
  height: 5rem;
  position: fixed;
  right: 0.7rem;
  top: 0.7rem;
  z-index: 100;
  cursor: pointer;
}


.burger { display: none; }


@media (min-width: 801px) {
  .burger { display: none; }
}
@media (max-width: 800px) {

  .burger { display: block; }
  .burger.hidden { display: none; }
  
  .burger {
    display: block;
    position: absolute;
    top: -0.01rem;
    right: 1rem;
    font-size: 3rem;
    cursor: pointer;
    z-index: 20;
    color: #fff;
    mix-blend-mode: difference;
  }

  .menu {
    position: absolute;
    width: fit-content;
    flex-direction: column;
    display: none;
    align-items: flex-end;
    top: 0.5rem;
    right: 0.6rem;
    align-self: flex-start;
    mix-blend-mode: normal;
    z-index: 14;
  }

  .menu.open {
    display: flex;
  }
  .hi {
    color: black;
    font-size: 2rem;
    mix-blend-mode: normal;
    position: relative;
  }

  .hi.active {
    backdrop-filter: blur(3px);
  }
  
  .hi:hover {
    filter: blur(0px);
  }
  

  .hi::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(245, 245, 245, 0.88);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: -1;
    filter: blur(1px);
    inset: -5% -8%;
  }
}

