/**
 * OasysFly - Hong Kong (Traditional Chinese) Locale Stylesheet
 * Language-specific styles for Hong Kong (HK)
 */

@import url('./base.css');

/* ============================================
   TRADITIONAL CHINESE FONT CONFIGURATION
   ============================================ */

/* 
 * Traditional Chinese (HK) does NOT use monospace font for Chinese text.
 * This is because monospace fonts don't render Chinese characters well.
 * 
 * Instead, we use the sans-serif font stack that includes:
 * - Inter (for Latin characters)
 * - PingFang TC (for Traditional Chinese on macOS/iOS)
 * - Microsoft YaHei (for Windows)
 * - Noto Sans SC (fallback)
 */

/* Navigation - uses sans-serif for better Chinese readability */
.nav-items {
    font-family: "Inter", "PingFang TC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

/* GET STARTED button - uses sans-serif for Chinese text */
.cta-button {
    font-family: "Inter", "PingFang TC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

/* Footer bottom section - uses sans-serif for Chinese text */
.footer-bottom {
    font-family: "Inter", "PingFang TC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

/* ============================================
   TRADITIONAL CHINESE SPECIFIC OVERRIDES
   ============================================ */

/* Improve line height for Traditional Chinese */
.zh-hk-content {
    line-height: 1.8;
}

/* Slightly larger font size for better Chinese readability */
.zh-hk-nav {
    font-size: 0.9rem;
}