/* 文旅联动页面样式 */
.travel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-primary);
}

/* 页面基础样式 */
.page-content {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 2rem;
}

/* 头部样式 */
.travel-header {
    text-align: center;
    margin-bottom: 3rem;
}

.travel-title {
    color: var(--primary-pink);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.travel-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* 动画圣地巡礼部分 */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.location-card {
    background: var(--bg-overlay);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.1);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-info {
    padding: 1.5rem;
}

.location-name {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.location-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.location-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
}

.location-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
}

/* 名场面回顾部分 */
.memorable-scenes {
    margin-bottom: 4rem;
    background: var(--bg-secondary);
    padding: 3rem 0;
}

.scenes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.scene-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: var(--bg-overlay);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.1);
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 1.5rem;
}

.scene-image {
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
}

.scene-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.scene-card:hover .scene-image img {
    transform: scale(1.05);
}

.scene-info {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.scene-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.scene-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.scene-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.scene-episode {
    background: var(--primary-pink);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* 通用标题样式 */
.section-title {
    color: var(--primary-pink);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-pink);
    display: inline-block;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .locations-grid {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .scene-card {
        flex: 1 1 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }

    .scene-image {
        width: 100%;
        height: 200px;
    }

    .scene-info {
        padding: 1rem 0 0;
    }

    .scene-meta {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .travel-title {
        font-size: 1.8rem;
    }

    .travel-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .scene-card {
        padding: 0.8rem;
    }
}

/* 旅游攻略部分 */
.travel-guide {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.guide-title {
    color: #ff69b4;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.guide-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-section {
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.guide-section:hover {
    transform: translateY(-5px);
}

.guide-section-title {
    color: #ff69b4;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-section-content {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.guide-list {
    list-style: none;
    padding: 0;
}

.guide-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.guide-list li::before {
    content: '•';
    color: #ff69b4;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* 季节推荐部分 */
.seasons-section {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.season-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    padding: 1.5rem;
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.season-image {
    width: 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 2rem;
    flex-shrink: 0;
}

.season-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.season-card:hover .season-image img {
    transform: scale(1.1);
}

.season-content {
    flex: 1;
}

.season-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.season-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.season-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.season-details span {
    color: #888;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.season-details span::before {
    content: "•";
    color: #ff69b4;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* 动画效果 */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 交错动画延迟 */
.location-card:nth-child(1) { animation-delay: 0.1s; }
.location-card:nth-child(2) { animation-delay: 0.2s; }
.location-card:nth-child(3) { animation-delay: 0.3s; }
.location-card:nth-child(4) { animation-delay: 0.4s; }
.guide-section:nth-child(1) { animation-delay: 0.1s; }
.guide-section:nth-child(2) { animation-delay: 0.2s; }
.guide-section:nth-child(3) { animation-delay: 0.3s; }
.season-card:nth-child(1) { animation-delay: 0.1s; }
.season-card:nth-child(2) { animation-delay: 0.2s; }
.season-card:nth-child(3) { animation-delay: 0.3s; }
.season-card:nth-child(4) { animation-delay: 0.4s; }

:root {
    /* 继承主题变量 */
    --primary-pink: #ff69b4;
    --primary-lightpink: #ffb6c1;
    --gradient-1: linear-gradient(135deg, #ff69b4 0%, #ffb6c1 100%);
    --gradient-2: linear-gradient(45deg, rgba(255,105,180,0.2) 0%, rgba(255,182,193,0.2) 100%);
    
    --text-primary: #5a2a3a;
    --text-secondary: #8b4d5e;
    
    --bg-primary: #fff0f5;
    --bg-secondary: #ffe4e9;
    --bg-overlay: rgba(255, 240, 245, 0.95);
} 