/* Netzcloud – gemeinsame Styles (Glassmorphism, Reveal, Navigation) */
.glass {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.text-gradient {
  background: linear-gradient(90deg, #67e8f9, #818cf8, #e879f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Aktiver Navigationspunkt */
.nav-link-active {
  color: #fff !important;
  font-weight: 600;
}

/* Volle Viewport-Breite: nur Rand, kein schmaler Content-Kasten */
.page-x {
  width: 100%;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

/* Optional: Bereiche über die volle Breite mit dezentem Hintergrund */
.section-bleed {
  width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
