/* Text.css：統一網站文字樣式與響應式設計 */

/* 基本字型設定 */
body {
  font-family: 'Noto Sans TC', 'Noto Sans', Arial, sans-serif;
  color: #222;
  line-height: 1.7;
  font-size: 18px;
}

/* 標題樣式 */
h1, .text-h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.8em;
}
h2, .text-h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.7em;
}
h3, .text-h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6em;
}

/* 內文樣式 */
p, .text-body {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1em;
}

/* 標籤/小標 */
.text-label {
  font-size: 1.2rem;
  font-weight: 00;
  color: #363636;
  letter-spacing: 0.05em;
}

/* 超連結 */
a {
  color: #007aff;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover {
  color: #0056b3;
}

/* 響應式設計：手機版 */
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  h1, .text-h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8em;
  }
  h2, .text-h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.7em;
  }
  h3, .text-h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6em;
  }
  p, .text-body {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1em;
  }
  .text-label {
    font-size: 1rem;
    font-weight: 700;
    color: #363636;
    letter-spacing: 0.05em;
  }
  a {
    color: #007aff;
    text-decoration: underline;
    transition: color 0.2s;
  }
  a:hover {
    color: #0056b3;
  }
} 