/* Base font family */
:root {
  --font-base: "Poppins", "Roboto", sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Font sizes */
  --font-size-hero-desktop: 56px;
  --font-size-hero-mobile: 36px;

  --font-size-section-desktop: 34px;
  --font-size-section-mobile: 26px;

  --font-size-cardtitle-desktop: 28px;
  --font-size-cardtitle-mobile: 20px;

  --font-size-nav-desktop: 18px;
  --font-size-nav-mobile: 16px;

  --font-size-body-desktop: 16px;
  --font-size-body-mobile: 14px;

  --font-size-small-desktop: 13px;
  --font-size-small-mobile: 11px;
}

/* Apply base body style */
body {
  font-family: var(--font-base);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-body-desktop);
  line-height: 1.5;
  color: #333;
}

/* Hero / Main Title */
.hero-heading {
  font-size: var(--font-size-hero-desktop);
  font-weight: var(--font-weight-bold);
  margin: 0;
}

/* Section headings */
.section-title {
  font-size: var(--font-size-section-desktop);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1em;
}

/* Card / Module Titles */
.card-title, .plan-title, .ticket-card .plan-title {
  font-size: var(--font-size-cardtitle-desktop);
  font-weight: var(--font-weight-medium);
}

/* Navigation */
.nav-link, .menu-item {
  font-size: var(--font-size-nav-desktop);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}

/* Small / meta text */
.text-small {
  font-size: var(--font-size-small-desktop);
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    font-size: var(--font-size-body-mobile);
  }
  .hero-heading {
    font-size: var(--font-size-hero-mobile);
  }
  .section-title {
    font-size: var(--font-size-section-mobile);
  }
  .card-title, .plan-title {
    font-size: var(--font-size-cardtitle-mobile);
  }
  .nav-link, .menu-item {
    font-size: var(--font-size-nav-mobile);
  }
  .text-small {
    font-size: var(--font-size-small-mobile);
  }
}
