/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #2c5aa0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container Styles */
.hjw-container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hjw-container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.hjw-header-container {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hjw-header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.hjw-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hjw-logo-icon {
    width: 32px;
    height: 32px;
    color: #2c5aa0;
}

.hjw-site-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.hjw-h1-inline {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
}

.hjw-home-link {
    color: #1a1a1a;
}

.hjw-home-link:hover {
    color: #2c5aa0;
}

.hjw-nav-menu {
    display: flex;
    gap: 32px;
}

.hjw-nav-item {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    position: relative;
    padding: 8px 0;
}

.hjw-nav-item:hover,
.hjw-nav-item.hjw-nav-active {
    color: #2c5aa0;
}

.hjw-nav-item.hjw-nav-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #2c5aa0;
}

.hjw-mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hjw-menu-line {
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Banner Styles */
.hjw-hero-banner {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hjw-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hjw-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hjw-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hjw-hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hjw-keyword-link {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.5);
}

.hjw-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hjw-btn-primary,
.hjw-btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.hjw-btn-primary {
    background: #fff;
    color: #667eea;
}

.hjw-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
    color: #667eea;
}

.hjw-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid #fff;
}

.hjw-btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    color: #fff;
}

/* Page Hero Styles */
.hjw-page-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hjw-hero-food {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.hjw-hero-travel {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.hjw-hero-fashion {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.hjw-hero-health {
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
}

.hjw-hero-home {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

/* Breadcrumb Styles */
.hjw-breadcrumb-section {
    background: #f8f9fa;
    padding: 16px 0;
}

.hjw-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.hjw-breadcrumb-item {
    color: #2c5aa0;
}

.hjw-breadcrumb-separator {
    color: #999;
}

.hjw-breadcrumb-current {
    color: #333;
    font-weight: 500;
}

/* Section Styles */
.hjw-featured-section,
.hjw-category-showcase,
.hjw-latest-articles,
.hjw-testimonial-section,
.hjw-content-section {
    padding: 80px 0;
}

.hjw-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.hjw-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.hjw-section-desc {
    font-size: 18px;
    color: #666;
}

/* Featured Cards */
.hjw-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hjw-featured-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hjw-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hjw-card-large {
    grid-row: span 2;
}

.hjw-card-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.hjw-card-large .hjw-card-image {
    height: 350px;
}

.hjw-card-content {
    padding: 24px;
}

.hjw-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #e3f2fd;
    color: #2c5aa0;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
}

.hjw-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.hjw-card-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.hjw-card-link {
    color: #2c5aa0;
    font-weight: 600;
    font-size: 15px;
}

/* Image Backgrounds */
.hjw-image-food {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23fa709a" width="800" height="600"/><text x="400" y="300" font-size="48" fill="white" text-anchor="middle" font-family="Arial">美食料理</text></svg>');
}

.hjw-image-travel {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%2330cfd0" width="800" height="600"/><text x="400" y="300" font-size="48" fill="white" text-anchor="middle" font-family="Arial">旅行风景</text></svg>');
}

.hjw-image-fashion {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23a8edea" width="800" height="600"/><text x="400" y="300" font-size="48" fill="%23333" text-anchor="middle" font-family="Arial">时尚穿搭</text></svg>');
}

.hjw-img-cuisine,
.hjw-img-homecook {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%23ff6b6b" width="800" height="400"/><circle cx="400" cy="200" r="80" fill="white" opacity="0.3"/></svg>');
}

.hjw-img-mountain,
.hjw-img-watertown {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%234ecdc4" width="800" height="400"/><polygon points="200,400 400,100 600,400" fill="white" opacity="0.3"/></svg>');
}

.hjw-img-style,
.hjw-img-wardrobe {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%23d4a5a5" width="800" height="400"/><rect x="300" y="100" width="200" height="200" fill="white" opacity="0.3" rx="10"/></svg>');
}

.hjw-img-wellness,
.hjw-img-exercise {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%239896f1" width="800" height="400"/><path d="M400 150 L450 200 L400 250 L350 200 Z" fill="white" opacity="0.3"/></svg>');
}

.hjw-img-interior,
.hjw-img-design {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%23f7b731" width="800" height="400"/><rect x="250" y="100" width="300" height="200" fill="white" opacity="0.3"/></svg>');
}

.hjw-img-cafe,
.hjw-img-knife,
.hjw-img-street,
.hjw-img-market,
.hjw-img-restaurant {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%23a29bfe" width="800" height="400"/><circle cx="400" cy="200" r="100" fill="white" opacity="0.2"/></svg>');
}

.hjw-img-autumn,
.hjw-img-historic,
.hjw-img-planning {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%23fd79a8" width="800" height="400"/><polygon points="400,100 500,300 300,300" fill="white" opacity="0.3"/></svg>');
}

.hjw-img-colors,
.hjw-img-bodyshape,
.hjw-img-accessories {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%23fdcb6e" width="800" height="400"/><rect x="300" y="150" width="200" height="100" fill="white" opacity="0.3" rx="5"/></svg>');
}

.hjw-img-nutrition,
.hjw-img-mental,
.hjw-img-sleep {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%2355efc4" width="800" height="400"/><ellipse cx="400" cy="200" rx="150" ry="80" fill="white" opacity="0.3"/></svg>');
}

.hjw-img-storage,
.hjw-img-renovation,
.hjw-img-decoration {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%2374b9ff" width="800" height="400"/><rect x="250" y="100" width="300" height="200" fill="white" opacity="0.3" rx="10"/></svg>');
}

/* Category Showcase */
.hjw-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.hjw-category-item {
    background: #fff;
    padding: 32px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.hjw-category-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hjw-category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hjw-category-icon svg {
    width: 32px;
    height: 32px;
}

.hjw-cat-food .hjw-category-icon {
    background: #ffe5e5;
    color: #ff6b6b;
}

.hjw-cat-travel .hjw-category-icon {
    background: #e5f7ff;
    color: #4ecdc4;
}

.hjw-cat-fashion .hjw-category-icon {
    background: #f5e5ff;
    color: #d4a5a5;
}

.hjw-cat-health .hjw-category-icon {
    background: #e5ffe5;
    color: #9896f1;
}

.hjw-cat-home .hjw-category-icon {
    background: #fff5e5;
    color: #f7b731;
}

.hjw-category-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.hjw-category-count {
    font-size: 14px;
    color: #999;
}

/* Articles Grid */
.hjw-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hjw-article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.hjw-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hjw-article-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.hjw-article-meta {
    padding: 16px 20px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hjw-article-tag {
    font-size: 12px;
    font-weight: 600;
    color: #2c5aa0;
    background: #e3f2fd;
    padding: 4px 10px;
    border-radius: 4px;
}

.hjw-article-date {
    font-size: 13px;
    color: #999;
}

.hjw-article-title {
    padding: 0 20px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.hjw-article-summary {
    padding: 0 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.hjw-article-readmore {
    display: inline-block;
    padding: 0 20px 20px;
    color: #2c5aa0;
    font-weight: 600;
    font-size: 14px;
}

/* Testimonial Section */
.hjw-testimonial-section {
    background: #f8f9fa;
}

.hjw-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hjw-testimonial-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hjw-testimonial-stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 16px;
}

.hjw-testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.hjw-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hjw-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hjw-author-avatar.hjw-avatar-1 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.hjw-author-avatar.hjw-avatar-2 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.hjw-author-avatar.hjw-avatar-3 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.hjw-author-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.hjw-author-location {
    font-size: 13px;
    color: #999;
}

/* Content Layout */
.hjw-content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
}

.hjw-intro-block {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 48px;
}

.hjw-intro-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.hjw-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Article Styles */
.hjw-food-article,
.hjw-travel-article,
.hjw-fashion-article,
.hjw-health-article,
.hjw-home-article {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 32px;
}

.hjw-article-header {
    margin-bottom: 24px;
}

.hjw-article-category {
    display: inline-block;
    padding: 6px 14px;
    background: #e3f2fd;
    color: #2c5aa0;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 16px;
}

.hjw-article-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hjw-article-meta-info {
    font-size: 14px;
    color: #999;
}

.hjw-meta-divider {
    margin: 0 8px;
}

.hjw-article-image-wrapper {
    margin-bottom: 32px;
}

.hjw-article-cover {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.hjw-article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.hjw-paragraph {
    margin-bottom: 20px;
}

.hjw-subheading {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 32px 0 16px;
}

/* Sidebar Styles */
.hjw-sidebar-widget {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.hjw-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
}

.hjw-widget-list {
    list-style: none;
}

.hjw-widget-item {
    margin-bottom: 12px;
}

.hjw-widget-link {
    color: #555;
    font-size: 15px;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.hjw-widget-link:hover {
    color: #2c5aa0;
    padding-left: 8px;
}

.hjw-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hjw-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #fff;
    color: #555;
    font-size: 13px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.hjw-tag:hover {
    background: #2c5aa0;
    color: #fff;
}

/* Footer Styles */
.hjw-footer-section {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 24px;
}

.hjw-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 40px;
}

.hjw-footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hjw-footer-tagline {
    font-size: 16px;
    color: #999;
    margin-bottom: 12px;
}

.hjw-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
}

.hjw-footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hjw-footer-list {
    list-style: none;
}

.hjw-footer-list li {
    margin-bottom: 10px;
}

.hjw-footer-list a {
    color: #999;
    font-size: 14px;
    transition: color 0.3s ease;
}

.hjw-footer-list a:hover {
    color: #fff;
}

.hjw-footer-text {
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
}

.hjw-social-links {
    display: flex;
    gap: 12px;
}

.hjw-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hjw-social-icon:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.hjw-social-icon svg {
    width: 20px;
    height: 20px;
}

.hjw-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}

.hjw-copyright {
    font-size: 14px;
    color: #999;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hjw-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hjw-content-layout {
        grid-template-columns: 1fr;
    }

    .hjw-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hjw-nav-menu {
        display: none;
    }

    .hjw-mobile-menu-btn {
        display: flex;
    }

    .hjw-hero-title {
        font-size: 36px;
    }

    .hjw-hero-subtitle {
        font-size: 18px;
    }

    .hjw-featured-grid {
        grid-template-columns: 1fr;
    }

    .hjw-card-large {
        grid-row: span 1;
    }

    .hjw-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hjw-articles-grid {
        grid-template-columns: 1fr;
    }

    .hjw-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hjw-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hjw-section-title {
        font-size: 28px;
    }

    .hjw-article-heading {
        font-size: 24px;
    }

    .hjw-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hjw-hero-title {
        font-size: 28px;
    }

    .hjw-hero-actions {
        flex-direction: column;
    }

    .hjw-btn-primary,
    .hjw-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hjw-category-grid {
        grid-template-columns: 1fr;
    }

    .hjw-food-article,
    .hjw-travel-article,
    .hjw-fashion-article,
    .hjw-health-article,
    .hjw-home-article {
        padding: 24px;
    }
}
