/* Shared custom styles for FishSpa Schweiz */
.glass {
  backdrop-filter: saturate(160%) blur(8px);
  background: rgba(255, 255, 255, 0.6);
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card {
  transition: box-shadow 0.2s ease-in-out;
}

.card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }
}

.animate-pulse-soft {
  animation: pulse 2s infinite;
  animation-play-state: paused;
}
