/*
    File Location: /assets/css/style.css
    Description: Main stylesheet for the public-facing website.
*/

/* General Body Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; /* A slightly off-white for a softer look */
}

/* Custom Button Styles */
.btn {
    @apply font-bold py-3 px-6 rounded-lg transition-transform duration-300 ease-in-out;
}

.btn-primary {
    @apply bg-blue-600 text-white hover:bg-blue-700 shadow-md hover:shadow-lg transform hover:-translate-y-0.5;
}

.btn-secondary {
    @apply bg-orange-500 text-white hover:bg-orange-600 shadow-md hover:shadow-lg transform hover:-translate-y-0.5;
}

/* Section Heading Styles */
.section-heading {
    @apply text-3xl font-bold text-center text-slate-800 mb-2;
}

.section-subheading {
    @apply text-center text-slate-500 mb-10 max-w-2xl mx-auto;
}

/* Card Styles */
.feature-card {
    @apply bg-white p-6 rounded-xl shadow-sm text-center hover:shadow-xl hover:-translate-y-1 transition-all duration-300;
}

.testimonial-card {
    @apply bg-white p-8 rounded-xl shadow-sm;
}
