@layer base {
  body {
    @apply bg-slate-50 text-slate-900 antialiased;
  }
}
#mobile-menu {
  transition: transform 0.3s ease;
}
#mobile-menu.open {
  transform: translateX(0%);
}
#mobile-menu.closed {
  transform: translateX(100%);
}
.hero-carousel img {
  transition: opacity 0.5s ease;
}
.btn-primary,
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #34d399;
  color: #ffffff;
  font-weight: 600;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  box-shadow: 0 10px 15px -3px rgba(52, 211, 153, 0.4);
}
.btn-primary {
  font-size: 0.875rem;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
}
.btn-primary-sm {
  font-size: 0.75rem;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 6px 12px -4px rgba(52, 211, 153, 0.35);
}
.btn-primary:hover,
.btn-primary-sm:hover {
  background-color: #2bb179;
  transform: translateY(-1px);
}
.btn-primary:focus-visible,
.btn-primary-sm:focus-visible {
  outline: 2px solid rgba(167, 243, 208, 0.8);
  outline-offset: 2px;
}
