@import "./reset.css";

/* System */
@import "./system/general.css";
@import "./system/shadows.css";
@import "./system/scrollbar.css";

/* Layout */
@import "./layout/general.css";
@import "./layout/app.css";
@import "./layout/sections.css";

/* Components */
@import "./components/button.css";
@import "./components/font.css";
@import "./components/input.css";

* {
  scroll-behavior: smooth;
  font-family: "Nunito", sans-serif;
  user-select: none;
}

html {
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  min-height: 100svh;
  height: 100svh;
}

#gradient {
  background: hsl(var(--secondary));
  background: linear-gradient(
    to left,
    hsl(var(--secondary)) 0%,
    hsl(var(--secondary)) 100%
  );
}

/* #gradient {
  background: hsl(var(--primary));
  background: linear-gradient(
    to left,
    hsl(var(--primary)) 0%,
    hsl(var(--primary)) 100%
  );
} */

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 222 46.4% 11%;

    --muted: 218 21% 21%;
    --muted-foreground: 215.4 16.3% 46.9%;

    --popover: 0 0% 100%;
    --popover-foreground: 222.2 47.4% 11.2%;

    --card: 0 0% 100%;
    --card-foreground: 222.2 47.4% 11.2%;

    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;

    --primary: 232 41.1% 32%;
    --primary-foreground: 210 40% 98%;

    --secondary: 193 28% 55.9%;
    --secondary-foreground: 210 40% 98%;

    --accent: 22 84.2% 47.1%;
    --accent-foreground: 210 40% 98%;

    --destructive: 0 92% 38%;
    --destructive-foreground: 210 40% 98%;

    --ring: 215 20.2% 65.1%;

    --radius: 0.25rem;

    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  }

  * {
    @apply border-border;
  }

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