/*
Theme Name: 森洋學院 - 專業金融主題
Theme URI: https://allmoneyinone.com/
Author: Antigravity AI
Description: 為森洋學院量身打造的高質感金融教學主題，採用森林綠與暖陽黃配色，具備玻璃擬態效果。
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: senyang-theme
*/

/* 全域變數 */
:root {
    --primary-color: #22422c;
    --secondary-color: #ffe169;
    --accent-color: #34d399;
    --bg-color: #f9fbf9;
    --text-color: #333333;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', 'Noto Sans TC', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* 玻璃擬態卡片 */
.sy-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 暖陽黃按鈕 */
.sy-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffe169 0%, #ffd43b 100%);
    color: #22422c !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 225, 105, 0.2);
    border: none;
    cursor: pointer;
}

.sy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 225, 105, 0.4);
}

/* 文章卡片樣式 */
.sy-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.sy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(34, 66, 44, 0.12);
}
