#footer-reveal {
  position: relative;
  z-index: -100;
  height: 100vh;
  width: 100vw;
  background: #0f0f1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content {
  width: 100%;
  height: 100%;
  color: #fff;
  flex-direction: column;
  font-size: 2rem;
}

.footer-text {
  position: relative;
  padding: 10%;
  padding-bottom: 2rem;
}

.footer-text h1 {
  font-size: clamp(3rem, 10vw + 1rem, 10rem);
  font-weight: 500;
  padding-bottom: 5%;
  line-height: 90%;
}

.logo-wrapper {
  position: absolute; /* oder fixed */
  top: 25%;
  right: 10%;
  width: 200px;
  height: 200px;
  perspective: 1000px;
  z-index: 10;
}

.logo-3d {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

.logo-3d .face {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Rückseite umdrehen */
.logo-3d .back {
  transform: rotateY(180deg);
}

.footer-text p {
  font-size: clamp(1rem, 2vw + 1rem, 8rem);
  margin-bottom: 5%;
  font-weight: 400;
}

.footer-nav {
  display: flex;
  position: relative;
  justify-content: space-between !important;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 10px;
  gap: 20px;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
}
.footer-nav li {
  list-style: none;
}

.footer-nav .socials {
  display: flex;
  flex-direction: column;
  width: auto;
}

.footer-nav .socials a {
  font-size: 1.5rem;
}

.footer-nav .links {
  display: flex;
  flex-direction: column;
  width: auto;
}

.footer-nav .links a {
  font-size: 1.5rem;
}

.impressum li {
  list-style: none;
  font-size: 1rem;
}

.footer-content a {
  position: relative;
  display: inline-block;
  text-decoration: none; /* keine Standard-Unterstreichung */
  overflow: hidden; /* sorgt für sauberen Effekt */
}

.footer-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px; /* leicht unterhalb des Textes */
  height: 2px; /* Dicke des Unterstrichs */
  width: 100%;
  background: #ffffff; /* Farbe wie im Menü */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.6, 0, 0.4, 1);
}

.footer-content a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

hr {
  gap: 10%;
}
