/**
 * footer.css - 页脚样式（水墨风格）
 */

/* ==================== 页脚容器 ==================== */
.site-footer {
    background: linear-gradient(180deg, #2b1e10 0%, #1a1208 100%);
    color: #d4c3a3;
    padding: 32px 24px 24px;
    font-size: 14px;
    text-align: center;
    border-top: 2px solid var(--color-gold-dark, #b89b6b);
    margin-top: 40px;
    font-family: var(--font-body, "Noto Serif SC", "楷体", KaiTi, serif);
    position: relative;
    overflow: hidden;
}

/* 顶部水墨装饰线 */
.site-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(218, 165, 32, 0.3) 20%,
        rgba(218, 165, 32, 0.6) 50%,
        rgba(218, 165, 32, 0.3) 80%,
        transparent 100%);
}

/* 底部水墨晕染 */
.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

/* ==================== 免责声明 ==================== */
.footer-disclaimer {
    text-align: center;
    line-height: 1.9;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(184, 155, 107, 0.3);
    position: relative;
    z-index: 1;
}

.footer-disclaimer p {
    margin: 4px 0;
    color: #c4b393;
}

.footer-disclaimer .footer-brand {
    font-family: var(--font-brush, "Ma Shan Zheng", cursive);
    font-size: 18px;
    color: var(--color-gold, #e6c687);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-disclaimer .contact {
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.85;
}

.footer-disclaimer a {
    color: var(--color-gold, #e6c687);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
}

.footer-disclaimer a:hover {
    opacity: 0.8;
}

/* ==================== 移动端适配 ==================== */
@media (max-width: 768px) {
    .site-footer {
        padding: 24px 16px 20px;
        margin-top: 30px;
    }

    .footer-disclaimer {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .footer-disclaimer .footer-brand {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 20px 12px 16px;
    }

    .footer-disclaimer {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-disclaimer .footer-brand {
        font-size: 15px;
    }
}
