/* 希望綠豆湯 全域品牌主題 CSS 變數 */
:root {
  --primary-dark: #2a765f;       /* 主深綠 (人文平靜，品牌主色) */
  --primary-mint: #81c8a9;       /* 亮粉綠 (清新自然，裝飾邊框) */
  --pure-black: #000000;         /* 純粹黑 (大標排版，閱讀深度) */
  --award-gold: #F2B705;         /* 伴手禮金 (得獎亮點，標籤徽章) */
  --bg-beige: #FAF8F5;           /* 人文柔米白 (仿手工未塗布紙張底色) */
  --card-bg: #FCFAF7;            /* 卡片背景 */
  --border-light: #E8E2D9;       /* 優雅細線 */
  --text-primary: #2C2924;       /* 主要內文深灰 */
  --text-muted: #7A7266;         /* 輔助文字淺灰 */
  --white: #FFFFFF;
  
  /* 字型系統 */
  --font-serif: "Noto Serif TC", Georgia, "Times New Roman", serif;
  --font-sans: "Noto Sans TC", system-ui, -apple-system, sans-serif;
  
  /* 精緻過渡效果 */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease-out;
  
  /* 陰影系統 */
  --shadow-subtle: 0 4px 20px rgba(42, 118, 95, 0.04);
  --shadow-hover: 0 12px 30px rgba(42, 118, 95, 0.08);
}

/* 平滑滾動與基礎重設樣式 */
.hemung-widget-wrapper {
  font-family: var(--font-sans);
  color: var(--text-primary);
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.hemung-widget-wrapper h1, 
.hemung-widget-wrapper h2, 
.hemung-widget-wrapper h3, 
.hemung-widget-wrapper h4 {
  font-family: var(--font-serif);
  color: var(--pure-black);
  font-weight: 600;
}
