/* Compiled Tailwind CSS - TPC Theme */
/* Note: In production, run `npm run build` to compile from src/style.css */

/* Base styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #f5f0e8; color: #1a1a1a; min-height: 100vh; }
h1, h2, h3, h4, h5, h6 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; }

/* Utility classes */
.container-wide { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.container-narrow { max-width: 48rem; margin: 0 auto; padding: 0 1rem; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.text-center { text-align: center; }
.text-white { color: white; }
.text-ink { color: #1a1a1a; }
.text-muted { color: #7a7060; }
.text-accent { color: #e63329; }
.bg-paper { background: #f5f0e8; }
.bg-cream { background: #faf8f5; }
.bg-ink { background: #1a1a1a; }
.bg-white { background: white; }
.bg-accent { background: #e63329; }
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b-4 { border-bottom-width: 4px; }
.border-border { border-color: #e0d9ce; }
.border-accent { border-color: #e63329; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.shadow-card { box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05); }
.sticky { position: sticky; }
.top-0 { top: 0; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.h-16 { height: 4rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.ml-2 { margin-left: 0.5rem; }
.font-display { font-family: 'Bebas Neue', sans-serif; }
.font-body { font-family: 'DM Sans', sans-serif; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-7xl { font-size: 4rem; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-wide { letter-spacing: 0.02em; }
.leading-none { line-height: 1; }
.transition { transition: all 0.2s; }
.hover\:text-white:hover { color: white; }
.hover\:text-accent:hover { color: #e63329; }
.hover\:bg-white:hover { background: white; }
.group:hover .group-hover\:text-accent { color: #e63329; }
.-translate-y-1 { transform: translateY(-0.25rem); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.duration-200 { transition-duration: 200ms; }
.opacity-10 { opacity: 0.1; }
.pointer-events-none { pointer-events: none; }

/* Responsive */
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:hidden { display: none; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:text-7xl { font-size: 4rem; }
    .md\:gap-6 { gap: 1.5rem; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; font-weight: 500; border-radius: 0.25rem; cursor: pointer; transition: all 0.2s; border: none; text-decoration: none; }
.btn-primary { background: #e63329; color: white; }
.btn-primary:hover { background: #c42a21; }
.btn-outline { background: transparent; border: 2px solid #1a1a1a; color: #1a1a1a; }
.btn-outline:hover { background: #1a1a1a; color: white; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }

/* Cards */
.card { background: white; border-radius: 0.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05); padding: 1.5rem; border: 2px solid transparent; }
.card:hover { border-color: #e63329; }

/* Form elements */
.input { width: 100%; padding: 0.75rem 1rem; background: #faf8f5; border: 1px solid #e0d9ce; border-radius: 0.25rem; font-family: inherit; color: #1a1a1a; }
.input:focus { outline: none; border-color: #e63329; ring: 1px solid #e63329; }
.label { display: block; font-size: 0.875rem; color: #7a7060; margin-bottom: 0.5rem; font-weight: 500; }

/* Staff panel specific */
.staff-sidebar { background: #1a1a1a; min-height: 100vh; }
.staff-content { background: #f5f0e8; min-height: 100vh; }
.kanban-column { background: #faf8f5; border-radius: 0.5rem; min-height: 400px; }
.kanban-card { background: white; border-radius: 0.375rem; padding: 1rem; margin-bottom: 0.75rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); cursor: grab; }
.kanban-card:active { cursor: grabbing; }
