@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

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

* {
  @apply box-border;
}

html {
  @apply scroll-smooth;
}

body {
  @apply bg-background text-on-surface font-body text-body-md;
}

h1 {
  @apply font-headline text-headline-lg;
}

h2 {
  @apply font-headline text-headline-md;
}

h3 {
  @apply font-headline text-headline-sm;
}

h4, h5, h6 {
  @apply font-headline text-title-lg;
}

/* Material Symbols Outlined */
.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
  font-feature-settings: "liga";
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-flex;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}

.material-symbols-outlined.sm {
  font-size: 20px;
}

.material-symbols-outlined.md {
  font-size: 24px;
}

.material-symbols-outlined.lg {
  font-size: 32px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  @apply bg-surface-container-low;
}

::-webkit-scrollbar-thumb {
  @apply bg-outline rounded-full hover:bg-on-surface-variant;
}

/* Transitions */
@layer components {
  .transition-base {
    @apply transition-all duration-200 ease-in-out;
  }

  .focus-ring {
    @apply outline-none ring-2 ring-primary ring-offset-2;
  }

  .focus-ring-offset-surface {
    @apply outline-none ring-2 ring-primary ring-offset-surface;
  }
}
