@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    --background: 222 47% 6%;
    --foreground: 210 40% 96%;
    --card: 222 44% 10%;
    --card-foreground: 210 40% 96%;
    --popover: 222 44% 10%;
    --popover-foreground: 210 40% 96%;
    --primary: 217 91% 60%;
    --primary-foreground: 222 47% 6%;
    --secondary: 222 40% 16%;
    --secondary-foreground: 210 40% 96%;
    --muted: 222 40% 14%;
    --muted-foreground: 215 20% 55%;
    --accent: 230 80% 70%;
    --accent-foreground: 222 47% 6%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 222 30% 18%;
    --input: 222 30% 18%;
    --ring: 217 91% 60%;
    --chart-1: 217 91% 60%;
    --chart-2: 230 80% 70%;
    --chart-3: 200 70% 50%;
    --chart-4: 260 60% 60%;
    --chart-5: 180 60% 50%;
    --radius: 0.75rem;
    --sidebar-background: 222 44% 8%;
    --sidebar-foreground: 210 40% 96%;
    --sidebar-primary: 217 91% 60%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 222 40% 14%;
    --sidebar-accent-foreground: 210 40% 96%;
    --sidebar-border: 222 30% 18%;
    --sidebar-ring: 217 91% 60%;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
  }

  .dark {
    --background: 222 47% 6%;
    --foreground: 210 40% 96%;
    --card: 222 44% 10%;
    --card-foreground: 210 40% 96%;
    --popover: 222 44% 10%;
    --popover-foreground: 210 40% 96%;
    --primary: 217 91% 60%;
    --primary-foreground: 222 47% 6%;
    --secondary: 222 40% 16%;
    --secondary-foreground: 210 40% 96%;
    --muted: 222 40% 14%;
    --muted-foreground: 215 20% 55%;
    --accent: 230 80% 70%;
    --accent-foreground: 222 47% 6%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --border: 222 30% 18%;
    --input: 222 30% 18%;
    --ring: 217 91% 60%;
    --chart-1: 217 91% 60%;
    --chart-2: 230 80% 70%;
    --chart-3: 200 70% 50%;
    --chart-4: 260 60% 60%;
    --chart-5: 180 60% 50%;
    --sidebar-background: 222 44% 8%;
    --sidebar-foreground: 210 40% 96%;
    --sidebar-primary: 217 91% 60%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 222 40% 14%;
    --sidebar-accent-foreground: 210 40% 96%;
    --sidebar-border: 222 30% 18%;
    --sidebar-ring: 217 91% 60%;
  }
}

@layer base {
  * {
    @apply border-border outline-ring/50;
  }

  body {
    @apply bg-background text-foreground;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
}
