/* Brand component classes */
.btn-primary {
  @apply bg-primary text-white px-6 py-3 rounded-lg font-semibold
         hover:bg-[#d4553e] transition-all duration-200 shadow-sm;
}

.btn-secondary {
  @apply border-2 border-primary text-primary px-6 py-3 rounded-lg font-semibold
         hover:bg-primary hover:text-white transition-all duration-200;
}

.form-input {
  @apply w-full px-4 py-3 border border-gray-300 rounded-lg bg-white
         focus:ring-2 focus:ring-primary/20 focus:border-primary outline-none;
}

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

/*# sourceMappingURL=main.css.map */