@charset "utf-8";

/* 1. 全域設定 */
body {
    background-color: #fbf9cc;
    font-family: "Microsoft JhengHei", "Heiti TC", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

/* 2. 連結設定 */
a {
    color: #6fbb9a;
    text-shadow: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff705b;
    text-decoration: none;
}

/* 3. 頁首與導覽列 */
header {
    text-align: center;
    padding: 20px;
}

h1 {
    display: inline-block;
    margin: 40px auto;
    padding: 20px 40px;
    border: 5px solid #95dbbd;
    background-color: #6fbb9a;
    color: #fff !important; /* 確保標題是白色 */
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.2;
}

nav {
    text-align: center;
    margin-bottom: 30px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

/* 4. 主要內容區塊 */
#contents {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px 80px;
    border: 1px solid #6fbb9e;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* 5. 標題與文字樣式 */
h2 {
    color: brown;
}

.h {
    padding: 10px;
    margin: 20px 0;
    border: 1px dotted #94c8b1;
    border-left: 10px solid #d0e35b;
    color: #6fbb9a;
}

.h-sub span {
    font-weight: normal;
    font-size: 0.9em;
    color: #777;
}

/* 6. 圖片處理 */
img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    display: block;
}

/* 7. 區塊間距 */
#contents > section + section {
    margin-top: 80px;
    border-top: 1px dashed #eee;
    padding-top: 40px;
}

.cat-item {
    margin-bottom: 40px;
}

/* 8. 詳細資料列表 (dl/dt/dd) */
dt {
    font-weight: bold;
    color: #6fbb9a;
    margin-top: 15px;
}

dd {
    margin-left: 0;
    padding-left: 20px;
    border-left: 2px solid #fbf9cc;
    margin-bottom: 10px;
}

/* 9. 頁尾 */
footer {
    text-align: center;
    padding: 40px 0;
    background-color: #eee;
    font-size: 0.8rem;
}

/* 10. 更多介紹連結 */
.more {
    text-align: right;
    font-weight: bold;
}