/* DesignVault - Main Stylesheet */

/* Custom animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 8px rgba(129, 91, 252, 0.6); }
  50% { box-shadow: 0 0 16px rgba(129, 91, 252, 0.8); }
  100% { box-shadow: 0 0 8px rgba(129, 91, 252, 0.6); }
}

/* Custom classes */
.float-animation {
  animation: float 6s ease-in-out infinite;
}

.pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(135deg, #6366f1, #8b5cf6, #d946ef);
}

.glass-morphism {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(241, 241, 241, 0.8);
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(129, 91, 252, 0.5);
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(129, 91, 252, 0.7);
}

/* Enhancing Tailwind classes */
.neo-brutalist {
  border: 3px solid #000;
  box-shadow: 5px 5px 0px #000;
}

.blob-shape {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* For modern card designs */
.modern-card {
  transition: all 0.3s ease;
}

.modern-card:hover {
  transform: translateY(-5px);
} 