/* Alibaba-style Font Size Adjustments */

/* Base font size adjustments */
html {
  font-size: 14px; /* Base font size for the entire site */
}

body {
  font-size: 1rem;
  line-height: 1.5;
}

/* Typography scale */
h1, .h1 {
  font-size: 1.8rem;
  line-height: 1.3;
}

h2, .h2 {
  font-size: 1.6rem;
  line-height: 1.35;
}

h3, .h3 {
  font-size: 1.4rem;
  line-height: 1.4;
}

h4, .h4 {
  font-size: 1.2rem;
  line-height: 1.45;
}

h5, .h5 {
  font-size: 1.1rem;
  line-height: 1.5;
}

h6, .h6 {
  font-size: 1rem;
  line-height: 1.5;
}

/* Display headings */
.display-1 {
  font-size: 3rem;
  font-weight: 700;
}

.display-2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.display-3 {
  font-size: 2rem;
  font-weight: 700;
}

.display-4 {
  font-size: 1.8rem;
  font-weight: 700;
}

.display-5 {
  font-size: 1.6rem;
  font-weight: 700;
}

.display-6 {
  font-size: 1.4rem;
  font-weight: 700;
}

/* Paragraph text */
p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  font-weight: 400;
}

/* Navigation */
.navbar-brand {
  font-size: 1.3rem;
}

.navbar .nav-link {
  font-size: 0.95rem;
}

.dropdown-item {
  font-size: 0.95rem;
}

/* Buttons */
.btn {
  font-size: 0.95rem;
}

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

.btn-lg {
  font-size: 1.1rem;
}

/* Cards */
.card-title {
  font-size: 1.2rem;
}

.card-subtitle {
  font-size: 0.95rem;
}

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

/* Form elements */
.form-label {
  font-size: 0.95rem;
}

.form-control {
  font-size: 0.95rem;
}

.form-text {
  font-size: 0.85rem;
}

/* Badges and small elements */
.badge {
  font-size: 0.8rem;
}

.small, small {
  font-size: 0.85rem;
}

/* Dashboard elements */
.stat-value {
  font-size: 1.6rem !important;
}

.stat-label {
  font-size: 0.9rem !important;
}

/* Footer */
footer {
  font-size: 0.95rem;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
  html {
    font-size: 13px;
  }
  
  .display-1 {
    font-size: 2.5rem;
  }
  
  .display-2 {
    font-size: 2.2rem;
  }
  
  .display-3 {
    font-size: 1.8rem;
  }
  
  .display-4 {
    font-size: 1.6rem;
  }
  
  .display-5 {
    font-size: 1.4rem;
  }
  
  .display-6 {
    font-size: 1.2rem;
  }
}