* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Noto Sans', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
    background-color: #faf8f4;
    color: #2c3e50;
    line-height: 1.5;
}

/* 全局容器 */
.app-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-container {
    flex: 1;
}

/* 自定义导航覆盖 element-plus 菜单风格，保留品牌色调 */
.custom-navbar {
    background-color: #2c3e50;
    padding: 0 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.7rem;
    font-weight: 600;
    color: #c49a6c;
}

.logo-icon {
    font-size: 1.9rem;
}
/* 调整菜单文字颜色 */
.el-menu-demo {
    background: transparent !important;
    border-bottom: none !important;
}

.el-menu-item {
    color: #eaecef !important;
    font-weight: 500;
}

    .el-menu-item:hover, .el-menu-item.is-active {
        color: #c49a6c !important;
        background-color: rgba(196,154,108,0.1) !important;
    }

/* Hero 区域 */
.hero-section {
    background: linear-gradient(107deg, #1e2a36 0%, #2c3e50 100%);
    background-image: url('https://picsum.photos/id/104/1920/600?grayscale');
    background-size: cover;
    background-position: center 25%;
    background-blend-mode: overlay;
    position: relative;
    padding: 80px 24px;
}

    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(28, 35, 43, 0.7);
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

    .hero-content h1 {
        font-size: 3.2rem;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 32px;
        opacity: 0.9;
    }
/* 卡片 hover 微动效 */
.custom-card-hover {
    transition: all 0.25s ease;
}

    .custom-card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    }
/* 分类入口卡牌样式 */
.category-entry {
    background: #fff;
    border-radius: 28px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.2s;
    border: 1px solid #f0e7dc;
    cursor: pointer;
    height: 100%;
}

    .category-entry:hover {
        background: #fffaf3;
        border-color: #c49a6c;
        transform: translateY(-4px);
    }

.category-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.tag-group {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.custom-tag {
    background: #f3efe8;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: #4a3b2c;
}
/* 新闻列表特殊样式 */
.news-item-custom {
    border-bottom: 1px dashed #ece1d4;
    padding: 12px 0;
}

.price-cell {
    font-weight: 600;
    color: #bc8a5a;
}

.footer-custom {
    background: #2c3e50;
    color: #cccbc8;
    margin-top: 48px;
    padding: 40px 24px 24px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
}

.footer-col h4 {
    color: #c49a6c;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col a, .footer-col p {
    color: #cdd0cf;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.8;
}

    .footer-col a:hover {
        color: #c49a6c;
    }

.copyright {
    text-align: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #415a6e;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .logo-area span {
        font-size: 1.3rem;
    }
}
