body{
  margin:0;
  font-family:Arial, sans-serif;
  background: #f2f6ff;
}

/* Animierter Hintergrund-Canvas */
#bg-canvas {
  display: block;  /* verhindert inline-Lücke unter dem Canvas */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

nav{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:center;
  gap:30px;
  padding:18px;
  background:rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
}

nav a{
  text-decoration:none;
  color:#111;
  font-weight:600;
}

nav a:hover{
  color:#1D71B8;
}

.container{
  position: relative;
  z-index: 10;
  display:flex;
  justify-content:center;
  align-items:center;
  height:100vh;
  flex-direction:column;
  text-align:center;
  padding-top:80px;
}

.logo{
  width:90vw;
  max-width:1200px;
  cursor:pointer;
  transition:0.35s ease;
  filter: drop-shadow(0 15px 40px rgba(0,120,255,0.15));
}

.logo:hover{
  transform:scale(1.08);
  /* filter: drop-shadow(0 30px 80px rgba(0,120,255,0.35));  */
}

.card{
  max-width:850px;
  background:white;
  padding:40px;
  border-radius:20px;
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.hidden{
  display:none;
}

.claim {
    font-size: 36px;
    margin-top: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 2.3s ease forwards;
    animation-delay: 0.3s;
}

/* Highlight Effekt */
.claim .highlight {
    color: #1D71B8;
    text-shadow: 0 0 2px rgba(29, 113, 184, 0.4);
}

/* Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections über Canvas */
.hero {
  position: relative;
  z-index: 10;
}

.section {
  position: relative;
  z-index: 10;
  background: #ffffff;
}