.social-icons {
  display: flex;
  gap: 14px;
  padding: 12px 0;
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
  color: #111; /* Ausgangsfarbe: schwarz */
}

.social-link svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-link:hover {
  transform: scale(1.1);
}

/* Hoverfarben je nach Dienst */
.social-link.facebook:hover    { color: #1877F2; }
.social-link.youtube:hover     { color: #FF0000; }
.social-link.x:hover           { color: #000000; }
.social-link.pinterest:hover   { color: #E60023; }
.social-link.instagram:hover   { color: #E4405F; }
.social-link.rss:hover         { color: #FFA500; }
.social-link.tripadvisor:hover { color: #34E0A1; }