/* 省份横幅 */
.province-banner {
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1547975863-9b3b7b30b0dd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
}

.banner-content {
    max-width: 900px;
    z-index: 2;
}

.province-banner h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.province-banner p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.banner-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    background: rgba(44, 94, 26, 0.7);
    padding: 15px 30px;
    border-radius: 10px;
    min-width: 150px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #d4a017;
}

/* 内容容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c5e1a;
    position: relative;
    padding-bottom: 15px;
}

.title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #d4a017;
    border-radius: 2px;
}

/* 景点介绍 */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.attraction-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.attraction-img {
    height: 250px;
    overflow: hidden;
}

.attraction-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card:hover .attraction-img img {
    transform: scale(1.1);
}

.attraction-content {
    padding: 25px;
}

.attraction-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c5e1a;
    display: flex;
    align-items: center;
}

.attraction-name i {
    margin-right: 10px;
    color: #d4a017;
}

.attraction-desc {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.attraction-info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.info-item {
    text-align: center;
}

.info-label {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.info-value {
    font-weight: bold;
    color: #2c5e1a;
}

/* 行程规划 */
.itinerary-div {
    background: linear-gradient(45deg, rgba(102, 132, 161, 0.05), rgba(193, 210, 255, 0.05), rgba(224, 195, 255, 0.05));
    padding: 60px 0;
}

.itinerary-steps {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.itinerary-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 4px;
    background: #d4a017;
    z-index: 1;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2c5e1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c5e1a;
    display: flex;
    align-items: center;
}

.step-title i {
    margin-right: 10px;
    color: #d4a017;
}

.step-desc {
    margin-bottom: 15px;
    color: #555;
}

.step-attractions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.attraction-tag {
    background: rgba(44, 94, 26, 0.1);
    color: #2c5e1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* 旅行贴士 */
.travel-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tip-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c5e1a;
    display: flex;
    align-items: center;
}

.tip-title i {
    margin-right: 10px;
    color: #d4a017;
}

.tip-content {
    color: #555;
    line-height: 1.7;
}

/* 文化体验区 */
.culture-div {
    background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), url('https://images.unsplash.com/photo-1590272456521-1bbe160a18ce?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    border-radius: 15px;
    overflow: hidden;
    margin: 60px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.culture-overlay {
    background: rgba(44, 94, 26, 0.85);
    padding: 60px 40px;
    color: white;
}

.culture-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.culture-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f8e264;
}

.culture-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 300;
}

.culture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.culture-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #f8e264;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.feature-desc {
    line-height: 1.7;
    font-size: 1rem;
}