/* fs:/projects/untitled/src/index.css */
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url(https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600;700&display=swap);
@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;
    --primary: 269 87% 65%;
    --primary-foreground: 210 40% 98%;
    --secondary: 45 93% 95%;
    --secondary-foreground: 269 87% 25%;
    --muted: 45 23% 97%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --accent: 25 95% 63%;
    --accent-foreground: 210 40% 98%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 269 87% 65%;
    --radius: 0.5rem;
    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 240 5.9% 10%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
  .dark {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;
    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;
    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;
    --primary: 269 87% 65%;
    --primary-foreground: 210 40% 98%;
    --secondary: 269 20% 20%;
    --secondary-foreground: 210 40% 98%;
    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;
    --accent: 25 95% 63%;
    --accent-foreground: 210 40% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 262 83% 58%;
    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 224.3 76.3% 48%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
}
@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground;
    font-family:
      "Inter",
      system-ui,
      sans-serif;
  }
  h1,
  h2,
  h3 {
    font-family: "Crimson Text", serif;
    font-weight: 600;
  }
}
@layer components {
  .bookstr-gradient {
    background:
      linear-gradient(
        135deg,
        hsl(269, 87%, 65%) 0%,
        hsl(25, 95%, 63%) 100%);
  }
  .bookstr-text-gradient {
    background:
      linear-gradient(
        135deg,
        hsl(269, 87%, 65%) 0%,
        hsl(25, 95%, 63%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .book-card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .book-card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  }
  .literary-pattern {
    background-image:
      radial-gradient(
        circle at 25px 25px,
        hsl(269, 87%, 95%) 2px,
        transparent 2px),
      radial-gradient(
        circle at 75px 75px,
        hsl(25, 95%, 95%) 2px,
        transparent 2px);
    background-size: 100px 100px;
    background-position: 0 0, 50px 50px;
  }
  .hero-gradient {
    background:
      linear-gradient(
        135deg,
        hsl(269, 87%, 97%) 0%,
        hsl(25, 95%, 97%) 50%,
        hsl(269, 87%, 95%) 100%);
  }
}
