/**
 * Mobile Typography Enhancement
 * Garantisce leggibilità su tutti i dispositivi mobile
 */

@media (max-width: 767.98px) {
  /* Base Typography */
  body {
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Headings */
  h1, .h1 { font-size: 1.75rem; font-weight: 700; line-height: 1.3; }
  h2, .h2 { font-size: 1.5rem; font-weight: 700; line-height: 1.35; }
  h3, .h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.4; }
  h4, .h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.4; }
  h5, .h5 { font-size: 1rem; font-weight: 600; line-height: 1.5; }
  h6, .h6 { font-size: 0.95rem; font-weight: 600; line-height: 1.5; }

  /* Body Text */
  p, .text-body {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  /* Small Text - NEVER sotto 0.875rem */
  small, .small, .text-small {
    font-size: 0.9rem !important;
    line-height: 1.5;
  }

  /* Muted Text */
  .text-muted {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(15, 23, 42, 0.65);
  }

  /* Labels */
  .form-label,
  label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--bs-body-color);
  }

  /* Tabelle */
  .table {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .table thead th {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .table tbody td {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Badge e Tag */
  .badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    line-height: 1.3;
  }

  /* Buttons */
  .btn {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .btn-sm {
    font-size: 0.875rem;
  }

  /* Alert */
  .alert {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Card */
  .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 0.875rem;
  }

  /* Pagination */
  .pagination {
    font-size: 0.9rem;
  }
}

/* Schermi molto piccoli - MANTIENI leggibilità */
@media (max-width: 390px) {
  body {
    font-size: 0.95rem; /* Non scendere sotto */
  }

  h1, .h1 { font-size: 1.5rem; }
  h2, .h2 { font-size: 1.35rem; }
  h3, .h3 { font-size: 1.125rem; }

  /* Tabelle - NON scendere sotto 0.875rem */
  .table {
    font-size: 0.9rem;
  }

  .table thead th {
    font-size: 0.8rem;
  }

  .table tbody td {
    font-size: 0.9rem;
  }

  /* Small text minimo assoluto */
  small, .small {
    font-size: 0.875rem !important;
  }
}

/* Dark Mode Typography */
:root[data-bs-theme='dark'] {
  body {
    color: rgba(226, 232, 240, 0.95);
  }

  .text-muted {
    color: rgba(226, 232, 240, 0.6) !important;
  }

  .form-label,
  label {
    color: rgba(226, 232, 240, 0.9);
  }
}
