 /*
 Theme Name: Shufeng Knife Art Custom
 Theme URI: https://shufengknifeart.com
 Description: 为蜀风刀画社定制的中式美学主题。
 Author: WP Tech Expert
 Version: 1.0
 Tags: chinese, art, knife-painting, ink-wash
 */
 
 :root {
     --ink-black: #2F4F4F;
     --vermilion: #E60000;
     --xuan-paper: #F5F5DC;
     --text-color: #333333;
 }
 
 body {
     background-color: var(--xuan-paper);
     font-family: 'Noto Serif SC', serif;
     color: var(--text-color);
     line-height: 1.8;
 }
 
 h1, h2, h3, .site-title {
     color: var(--ink-black);
     font-weight: 700;
     letter-spacing: 0.05em;
 }
 
 /* 按钮效果 */
 .button-shufeng {
     background-color: var(--vermilion);
     color: #fff;
     padding: 12px 30px;
     border-radius: 0;
     border: 1px solid var(--vermilion);
     transition: all 0.3s ease;
     text-transform: uppercase;
     display: inline-block;
 }
 
 .button-shufeng:hover {
     background-color: transparent;
     color: var(--vermilion);
 }
 
 /* 瀑布流画廊 */
 .artwork-gallery {
     column-count: 3;
     column-gap: 20px;
     padding: 40px;
 }
 
 .artwork-item {
     display: inline-block;
     width: 100%;
     margin-bottom: 20px;
     background: #fff;
     box-shadow: 0 4px 15px rgba(0,0,0,0.05);
     transition: transform 0.3s ease;
 }
 
 .artwork-item:hover {
     transform: translateY(-5px);
 }
