
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.datasite {
  animation: pulse 3s ease-in-out infinite;
  transition: transform 0.2s ease;
  transition: color 0.3s ease, text-shadow 0.3s ease;
    user-select: none;        /* verhindert Text-/Bildauswahl */
  -webkit-user-drag: none;
  -webkit-user-select: none; /* Für Safari */
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
  width: 150px;
  height: auto;
  transition: opacity 0.3s ease;


}


.datasitespan:active {
  transform: scale(0.95);
  transition: transform 0.1s ease, filter 0.1s ease;
}


.logo-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;        /* verhindert Text-/Bildauswahl */
  -webkit-user-drag: none;
  -webkit-user-select: none; /* Für Safari */
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
}


.shield-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  
}

/* Effekt beim Klick */
.logo-container:active .shield-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.logo-container:active .datasite {
  opacity: 0.4;
}

@media (max-width: 800px) {
  .shield-icon svg {
    width: 40px;
    height: 40px;
  }

  .datasitespan:active {
  transform: scale(1.0);
  transition: transform 0.1s ease, filter 0.1s ease;
}

}


@media (max-width: 480px) {
  .shield-icon svg {
    width: 25px;
    height: 25px;
  }

  .datasitespan:active {
  transform: scale(1.5);
  transition: transform 0.1s ease, filter 0.1s ease;
}

.logo-container:hover .shield-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.logo-container:hover .datasite {
  opacity: 0.4;
}

}




@keyframes fadeInUnderline {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineGrow {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}

.impressum-heading {
  display: inline-block;
  position: relative;
  animation: fadeInUnderline 1.0s ease-in-out forwards;
}


.impressum-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 2px;
  background-color: #d3d3d3;
  box-shadow: 0 0 6px #ffffff;
  width: 0%;
  left: 0;
  animation: underlineGrow 1.2s ease-out forwards;
  animation-delay: 1.0s;
}


.impressum {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.impressum:active {
  transform: scale(1.55);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}
