@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700&display=swap');

html {
  direction: rtl;
  lang: he;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  color: var(--color-charcoal);
  background-color: var(--color-offwhite);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-size: var(--text-5xl);
  font-weight: var(--fw-bold);
  line-height: 1.2;
}

h2 {
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  line-height: 1.3;
}

h3 {
  font-size: var(--text-xl);
  font-weight: var(--fw-medium);
  line-height: 1.4;
}

h4 {
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
}

p {
  font-size: var(--text-base);
  line-height: 1.8;
}

@media (max-width: 768px) {
  h1 {
    font-size: var(--text-4xl);
  }

  h2 {
    font-size: var(--text-2xl);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: var(--text-3xl);
  }
}
