/* ==========================================================================
   Typography Styles - Google Fonts & Scale
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,200;1,300&family=Questrial&display=swap');

/* Typography Scale */
.display-title {
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 0.86;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--color-gray-dark);
  text-align: center;
}

.section-heading-white {
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--color-white);
}

.section-heading-lg {
  font-family: var(--font-heading);
  font-size: 50px;
  line-height: 1.22;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
}

.section-description {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 300;
  color: var(--color-gray-dark);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.section-description-white {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 300;
  color: var(--color-white);
}

.section-header-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* Card Typography */
.card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--color-gray-dark);
}

.card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--color-gray-dark);
}

.meta-text {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-gray-light);
}

/* ==========================================================================
   Global Responsive Typography Scale
   ========================================================================== */
@media (max-width: 1024px) {
  .display-title {
    font-size: 56px;
    line-height: 1;
  }

  .section-heading,
  .section-heading-white {
    font-size: 34px;
    line-height: 1.22;
  }

  .section-heading-lg {
    font-size: 38px;
    line-height: 1.22;
  }

  .section-description,
  .section-description-white {
    font-size: 18px;
    line-height: 1.45;
  }

  .section-header-block {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .display-title {
    font-size: 42px;
    line-height: 1.1;
  }

  .section-heading,
  .section-heading-white {
    font-size: 30px;
    line-height: 1.25;
  }

  .section-heading-lg {
    font-size: 32px;
    line-height: 1.25;
  }

  .section-description,
  .section-description-white {
    font-size: 16px;
    line-height: 1.5;
  }

  .section-header-block {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .display-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .section-heading,
  .section-heading-white {
    font-size: 26px;
    line-height: 1.25;
  }

  .section-heading-lg {
    font-size: 28px;
    line-height: 1.25;
  }

  .section-description,
  .section-description-white {
    font-size: 15px;
    line-height: 1.5;
  }

  .section-header-block {
    gap: 12px;
  }
}

