/* fs:/projects/love-flux/src/index.css */
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 327 82% 35%;
    --card: 0 0% 100%;
    --card-foreground: 327 82% 35%;
    --popover: 0 0% 100%;
    --popover-foreground: 327 82% 35%;
    --primary: 327 82% 70%;
    --primary-foreground: 0 0% 100%;
    --secondary: 270 60% 85%;
    --secondary-foreground: 327 82% 35%;
    --muted: 300 50% 95%;
    --muted-foreground: 327 50% 40%;
    --accent: 300 60% 85%;
    --accent-foreground: 327 82% 35%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 300 30% 90%;
    --input: 300 30% 90%;
    --ring: 327 82% 60%;
    --radius: 0.5rem;
    --sidebar-background: 300 50% 95%;
    --sidebar-foreground: 327 50% 40%;
    --sidebar-primary: 327 82% 60%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 270 60% 85%;
    --sidebar-accent-foreground: 327 82% 35%;
    --sidebar-border: 300 30% 90%;
    --sidebar-ring: 327 82% 60%;
  }
  .dark {
    --background: 327 50% 10%;
    --foreground: 300 60% 90%;
    --card: 327 50% 12%;
    --card-foreground: 300 60% 90%;
    --popover: 327 50% 12%;
    --popover-foreground: 300 60% 90%;
    --primary: 327 82% 70%;
    --primary-foreground: 0 0% 100%;
    --secondary: 270 60% 25%;
    --secondary-foreground: 300 60% 90%;
    --muted: 300 50% 20%;
    --muted-foreground: 300 40% 70%;
    --accent: 270 60% 25%;
    --accent-foreground: 300 60% 90%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 300 30% 20%;
    --input: 300 30% 20%;
    --ring: 327 82% 70%;
    --sidebar-background: 327 50% 15%;
    --sidebar-foreground: 300 60% 90%;
    --sidebar-primary: 327 82% 70%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 270 60% 25%;
    --sidebar-accent-foreground: 300 60% 90%;
    --sidebar-border: 300 30% 20%;
    --sidebar-ring: 327 82% 70%;
  }
}
@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground;
  }
}
@keyframes wave {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.animate-wave {
  background-size: 600% 600%;
  animation: wave 12s ease-in-out infinite;
}
