@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800&display=swap")
layer(base);

/* @import "tailwindcss"; */

@custom-variant dark (&:is(.dark *));

@theme {
  --font-*: initial;
  --font-mulish: "Mulish", sans-serif;

  --color-*: initial;
  --color-current: currentColor;
  --color-transparent: transparent;
  --color-white: #ffffff;
  --color-black: #07102d;
  --color-dark: #1d2144;
  --color-primary: #8b5cf6;
  --color-body-color: #9699a6;
  --color-gradient-1: #e4f2fe;
  --color-gradient-2: #ffeefe;

  --breakpoint-*: initial;
  --breakpoint-sm: 540px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1140px;
  --breakpoint-2xl: 1320px;

  --shadow-primary-hover: 0px 11px 20px rgba(139, 92, 246, 0.2);
  --shadow-black-hover: 0px 11px 30px rgba(7, 16, 45, 0.15);
  --shadow-award: 0px 3px 100px rgba(11, 5, 22, 0.07);
  --shadow-testimonial: 0px 5px 50px rgba(178, 152, 236, 0.05);
  --shadow-faq: 0px 4px 50px rgba(0, 0, 0, 0.03);
  --shadow-shape-1: 0px 0px 100px rgba(0, 0, 0, 0.03);
  --shadow-sticky: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);

  --drop-shadow-image: 25px 40px 100px rgba(0, 0, 0, 0.1);

  --z-index--1: -1;
}

@utility container {
  margin-inline: auto;
  padding-inline: 1rem;
}

/*
  The default border color has changed to `currentColor` in Tailwind CSS v4,
  so we've added these compatibility styles to make sure everything still
  looks the same as it did with Tailwind CSS v3.

  If we ever want to remove these styles, we need to add an explicit border
  color utility to any element that depends on these defaults.
*/
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    border-color: var(--color-gray-200, currentColor);
  }
}

@utility sticky {
  @apply fixed transition z-9999 bg-white/80;
  backdrop-filter: blur(5px);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);

  & .header-logo {
    @apply py-3 lg:py-2;
  }

  & .menu-scroll.active {
    @apply text-primary;
  }
}

@utility header-logo {
  .sticky & {
    @apply py-3 lg:py-2;
  }
}

@utility menu-scroll {
  .sticky &.active {
    @apply text-primary;
  }
}

@utility active {
  .sticky &.menu-scroll {
    @apply text-primary;
  }
}

@utility box {
  input#checkboxLabel:checked ~ & span {
    @apply opacity-100;
  }
}

@layer base {
  html {
    scroll-behavior: smooth;
  }
  body {
    @apply font-mulish;
  }
}
