/* Work Stack 360 - Custom Styles */
/* Theme matching kraftisol-website */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

body {
  color: #1e293b; /* slate-800 */
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(to right, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Primary Button - Gradient */
.btn-primary {
  background: linear-gradient(to right, #2563eb, #9333ea);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: linear-gradient(to right, #1d4ed8, #7c3aed);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(1.05);
}

/* Secondary Button - Outline */
.btn-secondary {
  background: white;
  border: 2px solid #2563eb;
  color: #2563eb;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #2563eb;
  color: white;
}

/* Card */
.card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

/* Feature Icon Backgrounds */
.icon-blue {
  background: linear-gradient(to right, #3b82f6, #2563eb);
}

.icon-purple {
  background: linear-gradient(to right, #a855f7, #9333ea);
}

.icon-green {
  background: linear-gradient(to right, #22c55e, #16a34a);
}

.icon-indigo {
  background: linear-gradient(to right, #6366f1, #4f46e5);
}

.icon-pink {
  background: linear-gradient(to right, #ec4899, #db2777);
}

.icon-cyan {
  background: linear-gradient(to right, #06b6d4, #0891b2);
}

/* Glassmorphism Navbar */
.glass-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
