/* styles.css */

/* Shared custom styles for Elite Chauffeurs */
body {
  font-family: 'Inter', sans-serif;
}

/* Reusable button style */
.btn-primary {
  @apply px-6 py-3 bg-yellow-500 text-black font-semibold rounded-lg shadow hover:bg-yellow-400 transition;
}

/* Section titles */
.section-title {
  @apply text-3xl font-bold text-center mb-12;
}

/* Form fields */
.form-input,
.form-textarea,
.form-select {
  @apply border p-3 rounded w-full;
}

/* Container padding */
.container-padding {
  @apply py-16 px-6;
}

/* Card styling with hover shadow */
.card {
  @apply bg-white rounded-lg shadow-md overflow-hidden transition-shadow duration-300 hover:shadow-lg;
}
