
/* Base font size increase */
html, body {
  font-size: 18px !important;
}

/* Heading increases */
h1 {
  font-size: 2.2rem !important;
}

h2 {
  font-size: 2rem !important;
}

h3 {
  font-size: 1.75rem !important;
}

h4 {
  font-size: 1.3rem !important;
}

h5 {
  font-size: 1.25rem !important;
}

h6 {
  font-size: 1.125rem !important;
}

/* Paragraph and text increases */
p {
  font-size: 1.1rem !important;
}

span, div {
  font-size: inherit;
}

/* Tailwind text size overrides */
.text-xs {
  font-size: 0.8rem !important;
}

.text-sm {
  font-size: 1rem !important;
}

.text-base {
  font-size: 1.15rem !important;
}

.text-lg {
  font-size: 1.25rem !important;
}

.text-xl {
  font-size: 1.35rem !important;
}

.text-2xl {
  font-size: 1.5rem !important;
}

.text-3xl {
  font-size: 1.875rem !important;
}

.text-4xl {
  font-size: 2rem !important;
}

.text-5xl {
  font-size: 2.5rem !important;
}

.text-6xl {
  font-size: 3rem !important;
}

/* Specific overrides for common elements */
.news-title {
  font-size: 1.4rem !important;
}

.modern-list li {
  font-size: 1.1rem !important;
}

.nav-link {
  font-size: 0.94rem !important;
}

.submenu-link {
  font-size: 1rem !important;
}

.cta-button {
  font-size: 1.1rem !important;
}

.section.three-column > div > p {
  font-size: 1rem !important;
}

.vision-section p, .mission-section p {
  font-size: 1.1rem !important;
}

.news-list li {
  font-size: 1.0rem !important;
}

/* Table font increases */
#staff-details-table {
  font-size: 1.1rem !important;
}

#staff-details-table thead th,
#staff-details-table td {
  font-size: 1rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  html, body {
    font-size: 16px !important;
  }

  h1 {
    font-size: 2.25rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  h3 {
    font-size: 1.5rem !important;
  }

  .text-lg {
    font-size: 1.2rem !important;
  }

  .text-xl {
    font-size: 1.25rem !important;
  }

  .text-2xl {
    font-size: 1.4rem !important;
  }

  .text-3xl {
    font-size: 1.6rem !important;
  }
}