/* ==========================================================
   品萱國際時尚美學 - 常見問題頁專用 (faq.css)
   ========================================================== */

/* --- 1. 內頁結構基礎 --- */
.inner-page-main {
    position: relative;
    width: 100%;
    padding: 60px 0 10px;
}

.inner-page-main section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 80px;
    clear: both;
}

.section-sub-title {
    font-family: "Cactus Classical Serif", serif;
    font-size: 28px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.15em;
	font-weight: 600;
}

/* --- 2. 大圖區 (FAQ 專用) --- */
.page-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 550px;
    background: url('../images/faq-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.25) 0%, rgba(255, 230, 235, 0.4) 100%);
    display: flex; align-items: center; justify-content: center; text-align: center;
}

/* --- 內頁大圖標題文字優化 --- */
.serif-title {
    font-family: "Cactus Classical Serif", serif;
    font-size: clamp(32px, 5vw, 52px);
    
    /* 核心修正：明確設定為細體或正常體，取消預設加粗 */
    font-weight: 400; 
    
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 0.15em;
    
    /* 修正：稍微調細陰影擴散，避免視覺上產生模糊的增厚感 */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4), 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-family: "Cactus Classical Serif", serif;
    font-size: clamp(16px, 2vw, 20px);
    
    /* 同步將副標題也設定為 400 */
    font-weight: 400; 
    
    color: var(--white);
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

/* --- 3. 貼心服務須知 (Notice) --- */
.notice-section { padding: 60px 0;  border-radius: 20px; }
.notice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.notice-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.notice-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.notice-icon { color: var(--accent-color); font-size: 14px; }
.notice-item h3 { font-family: "Cactus Classical Serif", serif; font-size: 20px; color: var(--primary-color); margin: 0; }

/* --- 4. 自訂區塊 (Custom Box) --- */
.custom-box {
    background: rgba(246, 244, 242, 0.7);
    border: 1px solid rgba(203, 175, 144, 0.3);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    max-width: 700px;
    margin: 0 auto;
}

/* 補回缺失的副標題樣式 */
.page-subtitle {
    font-family: "Cactus Classical Serif", serif;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--white);
    letter-spacing: 0.1em;
    /* 增加陰影以確保在背景圖上清晰 */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6), 0px 0px 10px rgba(0, 0, 0, 0.4);
    opacity: 1; 
}



/* 手機版 RWD */
@media (max-width: 768px) {
    .inner-page-main section { width: 92%; margin-bottom: 60px; }
    .page-hero { aspect-ratio: 4 / 3; }
    .notice-grid { grid-template-columns: 1fr; }
    .custom-box { width: 100%; box-sizing: border-box; }
}