/**
 * 页脚样式 - 熏习15分钟
 * Footer Styles - 移动端优化
 */

.site-footer {
    background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-secondary) 100%);
    padding: 28px 20px 24px;
    text-align: center;
    border-top: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

/* 页脚装饰 */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

/* 页脚品牌 */
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-seal {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.2);
}

.footer-seal::before {
    content: '熏';
    font-family: var(--font-serif);
    font-size: 14px;
    color: #fff;
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.footer-quote {
    color: var(--text-light);
    font-family: var(--font-serif);
    font-size: var(--font-size-sm);
    margin-bottom: 14px;
    letter-spacing: 1px;
    position: relative;
    padding: 0 20px;
}

.footer-quote::before,
.footer-quote::after {
    content: '"';
    color: var(--primary-light);
    opacity: 0.4;
    font-size: 16px;
}

.footer-quote::before {
    margin-right: 2px;
}

.footer-quote::after {
    margin-left: 2px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    transition: all var(--transition-fast);
    padding: 4px 12px;
    border-radius: 12px;
    background: transparent;
}

.footer-link:hover {
    color: var(--primary-color);
    background: rgba(139, 115, 85, 0.08);
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: var(--border-color);
    margin: 12px auto;
}

.footer-copyright {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* 页脚核心理念标签 */
.footer-values {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
}

.footer-value-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: rgba(139, 115, 85, 0.08);
    border-radius: 10px;
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 500;
}
