/* style.css */

/* ฟอนต์หลัก */
body {
  font-family: 'Kanit', sans-serif;
}

/* ปุ่มหลัก */
.btn-primary {
  @apply bg-yellow-400 text-black px-4 py-2 rounded-lg font-semibold hover:bg-yellow-500 transition-colors duration-300;
}

/* Card hover effect */
.card {
  @apply bg-white p-6 rounded-2xl shadow transition-transform duration-300 hover:scale-105 hover:shadow-lg;
}

/* Hero overlay */
.hero-overlay {
  @apply absolute inset-0 bg-black/50 flex flex-col justify-center items-center text-white text-center;
}

/* Table hover */
.table-hover tbody tr:hover {
  @apply bg-gray-100;
}

/* Section headings */
.section-title {
  @apply text-3xl font-bold text-center mb-10;
}
