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

body {
  font-family: 'Manrope', sans-serif;
}

@layer base {
  :root {
    --background: 48 96% 96%;
    --foreground: 20 14% 4%;
    --card: 48 96% 98%;
    --card-foreground: 20 14% 4%;
    --popover: 48 96% 98%;
    --popover-foreground: 20 14% 4%;
    --primary: 142 76% 36%;
    --primary-foreground: 36 100% 98%;
    --secondary: 36 44% 95%;
    --secondary-foreground: 20 14% 4%;
    --muted: 36 44% 95%;
    --muted-foreground: 20 8% 40%;
    --accent: 25 95% 53%;
    --accent-foreground: 36 100% 98%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 36 33% 88%;
    --input: 36 33% 88%;
    --ring: 142 71% 45%;
    --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;

    /* Preloader Season Colors */
    --preloader-winter: hsl(205 90% 78%);
    --preloader-autumn: hsl(25 95% 70%);
    --preloader-spring: hsl(130 60% 80%);
    --preloader-summer: hsl(45 100% 75%);
  }
  .dark {
    --background: 220 10% 10%;
    --foreground: 220 10% 95%;
    --card: 220 10% 15%;
    --card-foreground: 220 10% 95%;
    --popover: 220 10% 15%;
    --popover-foreground: 220 10% 95%;
    --primary: 142 66% 46%;
    --primary-foreground: 36 100% 98%;
    --secondary: 220 10% 20%;
    --secondary-foreground: 220 10% 95%;
    --muted: 220 10% 20%;
    --muted-foreground: 220 10% 60%;
    --accent: 25 85% 63%;
    --accent-foreground: 25 85% 10%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --border: 220 10% 25%;
    --input: 220 10% 25%;
    --ring: 142 71% 45%;
    --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%;

    /* Dark Preloader Season Colors */
    --preloader-winter: hsl(205 70% 35%);
    --preloader-autumn: hsl(25 75% 40%);
    --preloader-spring: hsl(130 40% 30%);
    --preloader-summer: hsl(45 80% 45%);
  }
}

@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground;
  }
}
