/* Basic reset and utilities */
* { box-sizing: border-box; }

body { margin: 0; font-family: system-ui, -apple-system, sans-serif; }

/* Utility classes */
.min-h-screen { min-height: 100vh; }

.text-center { text-align: center; }

.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.h-16 { height: 4rem; }

.h-12 { height: 3rem; }

.aspect-square { aspect-ratio: 1 / 1; }

/* Category card backgrounds */
.bg-blue-100 { background-color: #dbeafe; }

.bg-cyan-100 { background-color: #cffafe; }

.bg-teal-100 { background-color: #ccfbf1; }

.bg-pink-100 { background-color: #fce7f3; }

.bg-amber-100 { background-color: #fef3c7; }

.bg-green-100 { background-color: #dcfce7; }

.bg-purple-100 { background-color: #f3e8ff; }

.bg-orange-100 { background-color: #fed7aa; }

.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

.mb-8 { margin-bottom: 2rem; }

.mb-12 { margin-bottom: 3rem; }

.text-4xl { font-size: 2.25rem; }

.font-light { font-weight: 300; }

.tracking-wider { letter-spacing: 0.05em; }

.uppercase { text-transform: uppercase; }

.w-full { width: 100%; }

.h-96 { height: 24rem; }

.object-cover { object-fit: cover; }

.max-w-4xl { max-width: 56rem; }

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.pb-16 { padding-bottom: 4rem; }

.text-gray-800 { color: #1f2937; }

.leading-relaxed { line-height: 1.625; }

.text-lg { font-size: 1.125rem; }

.text-xl { font-size: 1.25rem; }

.italic { font-style: italic; }

.font-medium { font-weight: 500; }

.mt-12 { margin-top: 3rem; }

.mt-16 { margin-top: 4rem; }

.bg-gray-800 { background-color: #1f2937; }

.text-white { color: white; }

.text-sm { font-size: 0.875rem; }

.bg-white { background-color: white; }

.text-black { color: black; }

.font-sans { font-family: system-ui, -apple-system, sans-serif; }

/* Form and grid styles */
.space-y-6 > * + * { margin-top: 1.5rem; }

.space-y-4 > * + * { margin-top: 1rem; }

.underline { text-decoration: underline; }

.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

.rounded-lg { border-radius: 0.5rem; }

.grid { display: grid; }

.md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }

.lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

.gap-8 { gap: 2rem; }

.border { border-width: 1px; }

.border-gray-300 { border-color: #d1d5db; }

.border-gray-200 { border-color: #e5e7eb; }

.rounded-md { border-radius: 0.375rem; }

.focus\:outline-none:focus { outline: none; }

.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2); }

.focus\:ring-gray-500:focus { box-shadow: 0 0 0 2px #6b7280; }

.hover\:bg-gray-700:hover { background-color: #374151; }

.hover\:text-black:hover { color: black; }

.transition-colors { transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out; }

.text-gray-500 { color: #6b7280; }

.text-gray-600 { color: #4b5563; }

.text-gray-700 { color: #374151; }

.text-green-600 { color: #059669; }

.text-red-600 { color: #dc2626; }

.inline-block { display: inline-block; }

.rounded-2xl { border-radius: 1rem; }

.border-gray-100 { border-color: #f3f4f6; }

.text-gray-900 { color: #111827; }

.space-y-8 > * + * { margin-top: 2rem; }

.pt-4 { padding-top: 1rem; }

.p-12 { padding: 3rem; }

.mb-12 { margin-bottom: 3rem; }

.gap-6 { gap: 1.5rem; }

.gap-8 { gap: 2rem; }

.mb-3 { margin-bottom: 0.75rem; }

.mb-6 { margin-bottom: 1.5rem; }

.mr-2 { margin-right: 0.5rem; }

.text-xs { font-size: 0.75rem; }

.font-medium { font-weight: 500; }

/* Radio button styling */
input[type="radio"] { width: 1rem; height: 1rem; border: 1px solid #d1d5db; cursor: pointer; }

input[type="radio"]:checked { background-color: #000; border-color: #000; }

fieldset { border: none; padding: 0; margin: 0; }

legend { padding: 0; }

/* Inline error styling */
.field-error { color: #dc2626; font-size: 0.875rem; margin-top: 0.25rem; min-height: 1.25rem; }

/* Modern form styling */
.form-group { position: relative; }

.form-input, .form-textarea, .form-select { width: 100%; padding: 1rem; border: 1px solid #d1d5db; background: white; font-size: 1rem; transition: all 0.3s ease; outline: none; }

.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: #000; background: white; }

.form-input.error, .form-textarea.error { border-color: #dc2626; }

.form-input.error:focus, .form-textarea.error:focus { border-color: #dc2626; }

/* Accessibility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Navigation styling */
.justify-between { justify-content: space-between; }

.bg-gray-900 { background-color: #111827; }

.text-gray-300 { color: #d1d5db; }

.hover\:text-gray-300:hover { color: #d1d5db; }

.form-label { position: absolute; left: 1rem; top: 1rem; color: #6b7280; font-size: 1rem; transition: all 0.3s ease; pointer-events: none; background: transparent; }

.form-input:focus + .form-label, .form-input:not(:placeholder-shown) + .form-label, .form-textarea:focus + .form-label, .form-textarea:not(:placeholder-shown) + .form-label { top: -0.5rem; left: 0.75rem; font-size: 0.875rem; color: #374151; background: white; padding: 0 0.5rem; }

.form-label-select { position: absolute; left: 0.75rem; top: -0.5rem; color: #374151; font-size: 0.875rem; background: white; padding: 0 0.5rem; pointer-events: none; }

.btn-primary { background: #000; color: white; padding: 1rem 2.5rem; font-size: 1rem; font-weight: 500; border: none; cursor: pointer; transition: all 0.3s ease; }

.btn-primary:hover { background: #333; }

.btn-primary:disabled { opacity: 0.7; cursor: not-allowed; }

.bg-gray-50 { background-color: #f9fafb; }

.bg-gray-100 { background-color: #f3f4f6; }

.border-b { border-bottom-width: 1px; }

.space-x-8 > * + * { margin-left: 2rem; }

.justify-center { justify-content: center; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.p-8 { padding: 2rem; }

.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }

.px-8 { padding-left: 2rem; padding-right: 2rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.mb-2 { margin-bottom: 0.5rem; }

.mb-4 { margin-bottom: 1rem; }

.mb-6 { margin-bottom: 1.5rem; }

.mb-16 { margin-bottom: 4rem; }

.max-w-2xl { max-width: 42rem; }

.max-w-3xl { max-width: 48rem; }

.h-48 { height: 12rem; }

.flex { display: flex; }

.items-center { align-items: center; }

.justify-center { justify-content: center; }

.block { display: block; }
