/* ------------------------------------------- */
/* CSS 樣式：專業、嚴謹、藏文友好 */
/* ------------------------------------------- */

/* 基礎重置 */
body {
    font-family: 'TCRC Youtso Unicode', sans-serif;
    font-size: 1.5rem; /* 整体字体放大1.5倍 */
    line-height: 1.8; /* 藏文排版行高要高，保證易讀性 */
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* 淺灰色背景 */
}

/* 專業配色方案 */
:root {
    --color-primary: #1A537A; /* 深藍色，代表醫學專業 */
    --color-secondary: #007bff; /* 輔助藍色 */
    --color-accent: #B03A2E; /* 略帶朱紅色的強調色，用於 CTA 按鈕 */
    --color-text: #333;
    --color-light-bg: #fff;
    --color-note-box: #f0f8ff; /* 淺藍色用於警示框 */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* ------------------- 導航欄 (Header) ------------------- */
.main-header {
    background: var(--color-primary);
    color: white;
    padding: 1em 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.main-header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-header nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.main-header nav ul li a:hover {
    color: #ffd700; /* 藏式金色高亮 */
}

/* ------------------- 横幅 (Hero Section) ------------------- */
.hero {
    background: url('hero-background.jpg') no-repeat center center/cover; /* 請替換為專業的、積極的背景圖 */
    background-color: #e6f2ff; /* 淺藍色覆蓋，若無圖時使用 */
    color: var(--color-primary);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 5px solid var(--color-accent);
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-accent);
    color: white;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #a32c21;
}

/* ------------------- 內容模塊 (Content Modules) ------------------- */
.content-module {
    background: var(--color-light-bg);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.content-module h2 {
    color: var(--color-primary);
    border-bottom: 3px solid #eee;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    font-size: 1.8em;
}

.content-module h3 {
    color: var(--color-secondary);
    margin-top: 1.5em;
    font-size: 1.2em;
}

.icon {
    font-size: 1.2em;
    margin-right: 10px;
}

/* 網格佈局用於症狀和傳播 */
.module-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.grid-item {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* 列表樣式 */
.bullet-list {
    list-style-type: none;
    padding-left: 0;
}

.bullet-list li {
    background: url('star.svg') no-repeat left 8px; /* 可以替換為藏族吉祥結的 svg 圖標 */
    padding-left: 30px;
    margin-bottom: 10px;
}

/* 特別提醒/警示框 */
.note-box {
    background-color: var(--color-note-box);
    border-left: 5px solid var(--color-secondary);
    padding: 1.5em;
    margin: 2em 0;
    font-style: italic;
    border-radius: 5px;
}

/* 治療強調框 (U=U) */
.treatment-highlight {
    background-color: #f6f0ff;
    border: 1px solid #9c27b0;
    padding: 1.5em;
    margin-top: 1.5em;
    border-radius: 5px;
    text-align: center;
}

.treatment-highlight strong {
    color: #9c27b0;
}


/* ------------------- 頁腳 (Footer) ------------------- */
.main-footer {
    background: var(--color-primary);
    color: #ddd;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        text-align: center;
    }

    .main-header nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    .main-header nav ul li {
        margin: 5px 0;
    }

    .module-grid {
        flex-direction: column;
    }
}