/* assets/css/style.css */

/* Use a modern font stack */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Base button styles */
.btn {
    display: inline-block;
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600; /* semibold */
    text-align: center;
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Prose styles for legal pages */
.prose h1 { @apply text-3xl font-bold mb-4; }
.prose h2 { @apply text-2xl font-bold mt-6 mb-3; }
.prose p, .prose ul { @apply text-gray-700 mb-4; }
.prose ul { @apply list-disc list-inside; }
.prose a { @apply text-blue-600 hover:underline; }