@import 'tailwindcss';
@import "tw-animate-css";

@layer base {
  * {
    @apply border-border;
  }
  
  body {
    font-family: 'Poppins', 'Noto Sans KR', sans-serif;
  }
  
  /* Korean text improvements */
  html[lang="ko"] body {
    font-family: 'Noto Sans KR', 'Poppins', sans-serif;
    letter-spacing: -0.01em;
  }
  
  html[lang="ko"] h1, html[lang="ko"] h2, html[lang="ko"] h3, html[lang="ko"] h4, html[lang="ko"] h5, html[lang="ko"] h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
  }
}

:root {
  --background: oklch(0.96 0.03 80);
  --foreground: oklch(0.3 0.05 160);
  --card: oklch(0.92 0.02 70);
  --card-foreground: oklch(0.3 0.05 160);
  --popover: oklch(0.92 0.02 70);
  --popover-foreground: oklch(0.3 0.05 160);
  --primary: oklch(0.3 0.05 160);
  --primary-foreground: oklch(0.96 0.03 80);
  --secondary: oklch(0.92 0.02 70);
  --secondary-foreground: oklch(0.3 0.05 160);
  --muted: oklch(0.92 0.02 70);
  --muted-foreground: oklch(0.6 0.03 160);
  --accent: oklch(0.42 0.04 140);
  --accent-foreground: oklch(0.96 0.03 80);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.96 0.03 80);
  --border: oklch(0.88 0.02 70);
  --input: oklch(0.88 0.02 70);
  --ring: oklch(0.42 0.04 140);
  --radius: 0.75rem;
  --chart-1: oklch(0.42 0.04 140);
  --chart-2: oklch(0.6 0.15 80);
  --chart-3: oklch(0.7 0.1 200);
  --chart-4: oklch(0.5 0.2 300);
  --chart-5: oklch(0.8 0.05 60);
}

@theme {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);

  --radius-sm: calc(var(--radius) * 0.5);
  --radius-md: var(--radius);
  --radius-lg: calc(var(--radius) * 1.5);
  --radius-xl: calc(var(--radius) * 2);
  --radius-2xl: calc(var(--radius) * 3);
  --radius-full: 9999px;
}