/* Eleganter CTA-Button mit subtilen Animationen */
@keyframes elegant-scale {
  0%, 100% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
  50% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }
}

.shiny-cta {
  position: relative;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  background: var(--secondary);
  color: var(--neutral);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.shiny-cta:hover {
  transform: translateY(-2px);
  animation: elegant-scale 1.5s infinite ease-in-out;
}

.shiny-cta:active {
  transform: scale(0.97);
}

.shiny-cta span {
  position: relative;
  z-index: 2;
}

/* Subtile Glanz-Animation beim Hover */
.shiny-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-150%);
  transition: transform 0.5s ease;
}

.shiny-cta:hover::before {
  transform: translateX(150%);
}

/* Fokus für Barrierefreiheit */
.shiny-cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 163, 204, 0.3);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .shiny-cta {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}