@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
  border-color: #e5e7eb;
}

body {
  background-color: white;
  color: #1f2937;
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-gradient {
  background: linear-gradient(
    to bottom,
    rgba(31, 41, 55, 0.6) 0%,
    rgba(31, 41, 55, 0.4) 100%
  );
}

.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
  background-color: #15803d;
  color: white;
  border-radius: 9999px;
  padding: 0.75rem;
}

.search-button-gradient {
  background: hsl(68, 70%, 55%);
  color: hsl(220, 20%, 10%);
  font-weight: 600;
  transition: all 0.2s;
}

.search-button-gradient:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.category-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.category-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(21, 128, 61, 0.3);
  transform: translateY(-4px);
}

.nav-link {
  color: rgba(31, 41, 55, 0.8);
  transition: color 0.2s;
  font-weight: 500;
}

.nav-link:hover {
  color: #1f2937;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

.animate-delay-100 {
  animation-delay: 0.1s;
}

.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-300 {
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

