/* Indonesian Language Font Optimization */
/* 印尼语字体优化 - 基于英文页面样式 */

/* 导入适合印尼语的字体 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* 印尼语页面字体优化 */
.lang-id {
    font-family: 'Inter', sans-serif;
}

/* 标题字体优化 - 使用Poppins替代Playfair Display以更好支持印尼语 */
.lang-id h1,
.lang-id h2,
.lang-id h3,
.lang-id h4,
.lang-id h5,
.lang-id h6,
.lang-id .hero-title,
.lang-id .section-title,
.lang-id .content-title,
.lang-id .warehouse-title {
    font-family: 'Poppins', sans-serif;
}

/* 正文字体优化 - 使用Inter替代Montserrat以更好支持印尼语 */
.lang-id p, .lang-id li, .lang-id span, .lang-id div, .lang-id a,
.lang-id .intro-text, .lang-id .feature-text, .lang-id .stat-label,
.lang-id .nav-item, .lang-id .category-item {
    font-family: 'Inter', sans-serif !important;
    line-height: 1.6;
    font-weight: 400;
}

/* 表单元素字体优化 */
.lang-id input,
.lang-id textarea,
.lang-id select,
.lang-id button {
    font-family: 'Inter', sans-serif;
}

/* 确保所有文本元素都使用优化的字体 */
.lang-id * {
    font-family: inherit;
}

/* 团队介绍部分布局调整 - 移动到右侧 */
.lang-id .team-layout {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.lang-id .team-photo-section {
    flex: 2;
    order: 1;
}

.lang-id .team-default-card-section {
    flex: 1;
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lang-id .team-introduction-section {
    order: 3;
    margin-left: auto;
    max-width: calc(350px + 40%);
    transform: translateX(400px) translateY(-270px);
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .lang-id .team-layout {
        flex-direction: column;
    }
    
    .lang-id .team-photo-section,
    .lang-id .team-default-card-section,
    .lang-id .team-introduction-section {
        order: initial;
        margin-left: 0;
        max-width: 100%;
    }
} 