/* -------------------- Grundlayout -------------------- */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #000000;
  text-align: center;
  overflow-x: hidden;
}

/* -------------------- Animierter Farbwechsel-Titel -------------------- */
h1 {
  display: block;
  margin: 150px 0 60px 0;
  font-size: 48px;
  color: transparent;
  -webkit-text-stroke: 2px #4a90e2;
  letter-spacing: 2px;

  background: linear-gradient(270deg, #4a90e2, rgba(255, 51, 102, 0), #4a90e2, rgba(255, 51, 102, 0));
  background-size: 800% 800%;
  -webkit-background-clip: text;
  background-clip: text;

  animation: animatedGradient 5s linear infinite;
}

@keyframes animatedGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* -------------------- Kontaktfeld (performant) -------------------- */
.contact-info {
  display: block;
  margin: 0 auto;
  padding: 40px 55px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  border-radius: 20px;
  background-color: #00eaff;
  box-shadow: 0 8px 30px rgb(0, 0, 0);
  
  /* Sanftes pulsierendes Box-Shadow für Animation */
  animation: shadowPulse 3s ease-in-out infinite;

  transition: transform 0.3s, box-shadow 0.3s;
}

@keyframes shadowPulse {
  0% { box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
  50% { box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
  100% { box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
}

.contact-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 45px rgb(0, 0, 0);
}

/* -------------------- Einträge untereinander -------------------- */
.contact-info p {
  margin: 20px 0;
  font-size: 17px;
  text-align: center;
}

/* -------------------- Links -------------------- */
.contact-info a {
  color: #1e1e2f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.contact-info a:hover {
  color: #0088ff;
  transform: translateX(5px);
}

/* -------------------- Icons (optional) -------------------- */
.contact-info img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}
