@charset "UTF-8";
/* Brand component classes — Hoi An Yellow palette */
.btn-primary {
  @apply bg-primary text-white px-6 py-3 rounded-lg font-semibold
         hover:bg-yellow-700 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;
}

.btn-warm {
  @apply bg-secondary text-white px-6 py-3 rounded-lg font-semibold
         hover:opacity-90 transition-all duration-200 shadow-sm;
}

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

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

/* Heading font class */
.font-heading {
  font-family: "Playfair Display", Georgia, serif;
}

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