/* 朴子市召會 深色模式樣式 — 由 html.dark 觸發
 * 從 public/assets/home.css 抽出，可供其他頁面獨立載入
 * 使用方式：<link rel="stylesheet" href="/assets/dark-mode.css">
 *           並在 JS 中 document.documentElement.classList.toggle('dark')
 */
html.dark body { background: #1a1a2e; color: #e0e0e0; }
html.dark .bg-white, html.dark .bg-ivory-50, html.dark .bg-ivory-100 { background: #16213e !important; }
html.dark .bg-gray-50, html.dark .bg-gray-100 { background: #1a1a2e !important; }
html.dark .bg-gold-50 { background: #2a2a1e !important; }
html.dark .text-gray-800, html.dark .text-gray-900 { color: #e8e8e8 !important; }
html.dark .text-gray-700 { color: #d0d0d0 !important; }
html.dark .text-gray-600 { color: #b0b0b0 !important; }
html.dark .text-gray-500 { color: #999 !important; }
html.dark .text-gray-400 { color: #777 !important; }
html.dark .border-gold-100, html.dark .border-gold-200, html.dark .border-gray-100, html.dark .border-gray-200 { border-color: #333355 !important; }
html.dark .card-elegant { background: #16213e !important; border-color: #333355 !important; }
html.dark footer { background: #0f0f23 !important; }
html.dark nav { background: rgba(22, 33, 62, 0.95) !important; backdrop-filter: blur(20px); }
html.dark input, html.dark select, html.dark textarea { background: #1a1a2e; color: #e0e0e0; border-color: #333355; }
html.dark .shadow-sm, html.dark .shadow-md { box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important; }
