/*
 * Placeholder Tailwind output — replaced when you run:
 *   uv run python manage.py tailwind install
 *   uv run python manage.py tailwind start
 *
 * The real output goes to theme/static/css/dist/styles.css after
 * django-tailwind is bootstrapped. For now this file ships minimal
 * design tokens + utility shims so the templates render before npm
 * is available.
 */

:root {
  --background: 210 20% 98%;
  --foreground: 215 25% 17%;
  --card: 0 0% 100%;
  --card-foreground: 215 25% 17%;
  --primary: 213 52% 24%;
  --primary-foreground: 210 40% 98%;
  --secondary: 215 20% 95%;
  --secondary-foreground: 215 25% 27%;
  --muted: 215 20% 95%;
  --muted-foreground: 215 16% 47%;
  --accent: 215 20% 95%;
  --accent-foreground: 215 25% 27%;
  --border: 214 25% 90%;
  --sidebar-bg: 215 28% 10%;
  --sidebar-foreground: 210 40% 98%;
  --radius: 0.5rem;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }

/* Minimal layout helpers used by templates — Tailwind will replace these */
.bg-background { background: hsl(var(--background)); }
.text-foreground { color: hsl(var(--foreground)); }
.bg-card { background: hsl(var(--card)); }
.text-card-foreground { color: hsl(var(--card-foreground)); }
.bg-primary { background: hsl(var(--primary)); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.bg-secondary { background: hsl(var(--secondary)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.border-border { border-color: hsl(var(--border)); }
.bg-sidebar { background: hsl(var(--sidebar-bg)); color: hsl(var(--sidebar-foreground)); }
.text-sidebar-foreground { color: hsl(var(--sidebar-foreground)); }

.min-h-full { min-height: 100vh; }
.h-full { height: 100%; }
.flex { display: flex; }
.grid { display: grid; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.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-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.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-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.max-w-xl { max-width: 36rem; margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.rounded-md { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + 0.25rem); }
.rounded-full { border-radius: 9999px; }
.border { border: 1px solid hsl(var(--border)); }
.border-b { border-bottom: 1px solid hsl(var(--border)); }
.border-t { border-top: 1px solid hsl(var(--border)); }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.transition { transition: all 0.2s ease; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:bg-secondary:hover { background: hsl(var(--secondary)); }
.hover\:bg-white\/10:hover { background: rgba(255,255,255,0.1); }
.hover\:text-foreground:hover { color: hsl(var(--foreground)); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.hover\:underline:hover { text-decoration: underline; }
.divide-y > * + * { border-top: 1px solid hsl(var(--border)); }
.divide-border > * + * { border-color: hsl(var(--border)); }
.bg-emerald-500 { background: rgb(16,185,129); }
.bg-emerald-600 { background: rgb(5,150,105); }
.text-white { color: #fff; }
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.w-7 { width: 1.75rem; }
.h-7 { height: 1.75rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-full { width: 100%; }
.fixed { position: fixed; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.z-50 { z-index: 50; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.list-disc { list-style: disc; }
.pl-6 { padding-left: 1.5rem; }
.prose p { margin: 0.75rem 0; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.5rem; }
.prose ul li { margin: 0.25rem 0; }
.pt-4 { padding-top: 1rem; }
.mt-auto { margin-top: auto; }
.antialiased { -webkit-font-smoothing: antialiased; }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.col-span-full { grid-column: 1 / -1; }
.font-mono { font-family: ui-monospace, "SF Mono", "Cascadia Code", monospace; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:flex-col { flex-direction: column; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-\[240px_1fr\] { grid-template-columns: 240px 1fr; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:p-10 { padding: 2.5rem; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
