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

@layer base {
  :root {
    --background: 210 20% 98%;
    --foreground: 220 15% 20%;
    --header-foreground: 210 40% 98%;
    --card: 0 0% 100%;
    --card-foreground: 220 15% 20%;
    --popover: 0 0% 100%;
    --popover-foreground: 220 15% 20%;
    --primary: 217 60% 30%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 30% 94%;
    --secondary-foreground: 220 15% 20%;
    --muted: 210 30% 94%;
    --muted-foreground: 220 10% 45%;
    --accent: 35 80% 55%;
    --accent-foreground: 220 15% 20%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 210 20% 88%;
    --input: 0 0% 100%;
    --ring: 217 60% 50%;
    --chart-1: 12 76% 61%;
    --chart-2: 173 58% 39%;
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --radius: 0.5rem;
  }

  .dark {
    --background: 220 15% 10%;
    --foreground: 210 40% 98%;
    --header-foreground: 210 40% 98%;
    --card: 220 15% 15%;
    --card-foreground: 210 40% 98%;
    --popover: 220 15% 10%;
    --popover-foreground: 210 40% 98%;
    --primary: 210 40% 98%;
    --primary-foreground: 217 60% 30%;
    --secondary: 220 15% 25%;
    --secondary-foreground: 210 40% 98%;
    --muted: 220 15% 25%;
    --muted-foreground: 210 40% 98%;
    --accent: 40 90% 60%;
    --accent-foreground: 220 15% 10%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 220 15% 30%;
    --input: 220 15% 30%;
    --ring: 210 40% 98%;
    --chart-1: 220 70% 50%;
    --chart-2: 160 60% 45%;
    --chart-3: 30 80% 55%;
    --chart-4: 280 65% 60%;
    --chart-5: 340 75% 55%;
  }
}

@layer base {
  * {
    @apply border-border;
  }
  html,
  body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: clip;
  }
  section {
    @apply w-full py-12 md:py-24 lg:py-32;
  }
}

@layer utilities {
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  .animate-scroll-left {
    animation: scroll-left 40s linear infinite;
  }
}
