/* Base */
body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
  font-family: 'Inter', sans-serif;
}

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

.subtle-border {
  border-color: rgba(26, 26, 26, 0.08);
}

.text-balance {
  text-wrap: balance;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Selection */
::selection {
  background-color: rgba(26, 26, 26, 0.1);
}

/* Fade-in animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-visible {
  opacity: 1;
  transform: translateY(0);
}
