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

/* === Custom CSS Variables === */
:root {
  --font-body: "Manrope", system-ui, sans-serif;
  --font-body-small: "Manrope", system-ui, sans-serif;
  --font-h-1: "Manrope", system-ui, sans-serif;
  --font-h-2: "Manrope", system-ui, sans-serif;
  --font-body-size: 18px;
  --font-body-small-size: 14px;
  --font-h-1-size: 42px;
  --font-h-2-size: 24px;
  --font-body-style: normal;
  --font-body-small-style: normal;
  --font-h-1-style: normal;
  --font-h-2-style: normal;
  --font-body-weight: 300;
  --font-body-small-weight: 300;
  --font-h-1-weight: 700;
  --font-h-2-weight: 700;
  --font-body-letter-spacing: -0.18px;
  --font-body-small-letter-spacing: -0.14px;
  --font-h-1-letter-spacing: 0px;
  --font-h-2-letter-spacing: 0px;
  --font-body-line-height: normal;
  --font-body-small-line-height: normal;
  --font-h-1-line-height: 50.6px;
  --font-h-2-line-height: normal;
}

@media (min-width: 1024px) {
  :root {
    --font-h-1-size: 56px;
    --font-h-1-line-height: 66px;
    --font-h-2-size: 24px;
    --font-h-2-line-height: 32px;
    --font-body-size: 20px;
    --font-body-line-height: 28px;
    --font-body-small-size: 16px;
    --font-body-small-line-height: 22px;
  }
}

/* === Custom Tailwind Layers === */
@layer components {
  .all-\[unset\] {
    all: unset;
  }
}

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 0 0% 3.9%;
    --muted: 0 0% 96.1%;
    --muted-foreground: 0 0% 45.1%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 3.9%;
    --border: 0 0% 89.8%;
    --input: 0 0% 89.8%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 3.9%;
    --primary: 0 0% 9%;
    --primary-foreground: 0 0% 98%;
    --secondary: 0 0% 96.1%;
    --secondary-foreground: 0 0% 9%;
    --accent: 0 0% 96.1%;
    --accent-foreground: 0 0% 9%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --ring: 0 0% 3.9%;
    --radius: 0.5rem;
    --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%;
  }

  .dark {
    --background: 0 0% 3.9%;
    --foreground: 0 0% 98%;
    --muted: 0 0% 14.9%;
    --muted-foreground: 0 0% 63.9%;
    --accent: 0 0% 14.9%;
    --accent-foreground: 0 0% 98%;
    --popover: 0 0% 3.9%;
    --popover-foreground: 0 0% 98%;
    --border: 0 0% 14.9%;
    --input: 0 0% 14.9%;
    --card: 0 0% 3.9%;
    --card-foreground: 0 0% 98%;
    --primary: 0 0% 98%;
    --primary-foreground: 0 0% 9%;
    --secondary: 0 0% 14.9%;
    --secondary-foreground: 0 0% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --ring: 0 0% 83.1%;
    --radius: 0.5rem;
    --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%;
  }

  * {
    @apply border-border;
  }

  body {
    @apply bg-background text-foreground;
    font-feature-settings: "rlig" 1, "calt" 1;
  }
}

/* === Hide Browser Scrollbar === */
@layer components {
  .hide-scrollbar {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  .hide-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
  }
}






