/* 香港非遗页面特定样式 */
.hongkong-content {
    padding-top: 60px;
}

/* 英雄区域样式 */
.hero-section {
    height: 500px;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hongkong/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-text {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-text p {
    font-size: 1.8rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* 香港非遗概述部分 */
.hk-intro {
    padding: 60px 0;
    background-color: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-text p {
    color: #666;
    line-height: 1.6;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* 主要非遗类别部分 */
.heritage-categories {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.heritage-categories h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 20px;
}

.category-content h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.category-content p {
    color: #666;
    text-align: center;
    margin-bottom: 15px;
}

.category-items {
    list-style: none;
    padding: 0;
}

.category-items li {
    padding: 8px 0;
    text-align: center;
    color: #666;
    border-bottom: 1px solid #eee;
}

.category-items li:last-child {
    border-bottom: none;
}

/* 保护措施部分 */
.protection-measures {
    padding: 60px 0;
    background-color: #fff;
}

.protection-measures h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.measures-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.measure-item {
    padding: 30px;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.measure-item:hover {
    transform: translateY(-5px);
}

.measure-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.measure-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.measure-item p {
    color: #666;
    line-height: 1.6;
}

/* 发展前景部分 */
.future-development {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.future-development h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.development-content {
    max-width: 800px;
    margin: 0 auto;
}

.development-text {
    text-align: center;
    margin-bottom: 40px;
}

.development-text p {
    color: #666;
    line-height: 1.6;
}

.development-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.point-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.point-item:hover {
    transform: translateY(-5px);
}

.point-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.point-item p {
    color: #666;
    line-height: 1.6;
} 