/* 
 * les bobos 自定义样式
 * 此文件作为 Tailwind CSS 的补充样式
 * 注意：网站主要使用 Tailwind CSS CDN，此文件仅用于自定义覆盖
 */

/* 自定义 CSS 变量 */
:root {
    --primary-brown: #D2B48C;
    --light-brown: #F5E6D3;
    --dark-brown: #8B7355;
}

/* 基础样式 */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 自定义按钮样式 */
.btn-brown {
    background: linear-gradient(135deg, #D2B48C 0%, #A0826D 100%);
    color: white;
    transition: all 0.3s ease;
}

.btn-brown:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(210, 180, 140, 0.3);
}

/* 文章内容样式 */
.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.article-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #4b5563;
}

/* 导航链接悬停效果 */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-brown);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}