body {
  background: #000;
  font-family: Quicksand, sans-serif;
  font-size: 36px;
  color: #fff;
  margin: 0;
  overflow: hidden;
}

/* Abstand zwischen Absätzen reduzieren, aber normalen Zeilenabstand beibehalten */
p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

@media (width <= 900px) {
  body {
    font-size: 24px;
  }

  .nav-link {
    font-size: 24px !important;
  }
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.navigation {
  position: relative;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

#commissioned, #personal, #about {
  position: absolute;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 36px;
  transition: color 0s;
  white-space: nowrap;
}

.nav-link:hover {
  color: #F60;
}

.hover-image {
  position: absolute;
  z-index: 1;
  display: none;
  pointer-events: none;
}

.hover-image img {
  width: auto;
  height: auto;
  max-width: none;
}

.fade-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 1000;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.fade-overlay.fadeout {
  opacity: 0;
}

@media (width <= 900px) {
  .navigation {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: static;
    width: 100vw;
    gap: 32px;
  }
  .nav-link {
    position: static !important;
    left: unset !important;
    transform: none !important;
    display: block;
    text-align: center;
    width: 100%;
  }
} 