/* ===== 完全重置版 ===== */
/* 1. 设计令牌 - 敦煌美学配色 */
:root {
    /* 主色系 - 完全参考图片 */
    --color-primary: #9b2a2a;
    /* 绛红 - 稍亮 */
    --color-secondary: #c97b2a;
    /* 赭石 - 暖金色 */
    --color-accent: #e6b422;
    /* 金箔 - 明亮 */
    --color-sand: #f0e1c7;
    /* 沙色 */
    --color-cream: #fcf7f0;
    /* 奶油底 */
    --color-dark: #2e1b12;
    /* 深褐 */
    --color-ebony: #1a0f0a;
    /* 更深背景 */

    /* 中性色 */
    --color-text: #2c2c2c;
    --color-text-light: #5a5a5a;
    --color-border: #e8ddd2;
    --color-bg-white: #ffffff;
    --color-bg-soft: #fffaf4;

    /* 渐变 - 优化后 */
    --gradient-primary: linear-gradient(145deg, #9b2a2a 0%, #c97b2a 100%);
    --gradient-gold: linear-gradient(145deg, #e6b422 0%, #f5d36e 100%);
    --gradient-soft: linear-gradient(145deg, #fcf7f0 0%, #ffffff 100%);
    --gradient-dark: linear-gradient(145deg, #2e1b12 0%, #9b2a2a 100%);
    --gradient-theme: linear-gradient(135deg, rgba(155, 42, 42, 0.05) 0%, #9b4a2ab0 100%);
    --gradient-purpose: linear-gradient(135deg, rgba(155, 42, 42, 0) 0%, rgba(11, 125, 160, 0.33) 100%);
    --gradient-journey: linear-gradient(135deg, rgba(155, 42, 42, 0.05) 0%, #9b4a2ab0 100%);

    /* 阴影 - 增强光影效果 */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 8px 32px rgba(230, 180, 34, 0.15);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* 圆角 */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* 字体大小 - 移动端优先 */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 24px;
    --text-2xl: 28px;
    --text-3xl: 32px;
    --text-4xl: 40px;

    /* 间距 - 移动端优先 */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;

    /* 行高 */
    --leading-tight: 1.2;
    --leading-base: 1.5;
    --leading-loose: 1.8;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. 重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

@font-face {
    font-family: 'Source Han Serif CN';
    src: local('Source Han Serif CN Bold'),
        local('思源宋体 CN Bold'),
        url('/fonts/SourceHanSerifCN-Bold-2.otf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+4E00-9FFF;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    /* 适配固定导航 */
}

body {
    font-family: -apple-system, 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
    background: var(--color-cream);
    color: var(--color-text);
    line-height: var(--leading-base);
    font-size: var(--text-base);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;

}

a {
    text-decoration: none;
}

/* 3. 容器 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* 4. 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.back-to-top.show {
    display: flex;
}

/* 5. 视频弹窗模态框 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: transparent;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}

.close-modal:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

#modalVideo {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* 6. 玻璃效果类 */
.glass-effect {
    background: var(--gradient-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-glass);
    color: #fff;
    font-weight: bold;
    border-radius: var(--radius-lg);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: var(--transition);
}

.glass-card:hover {
    box-shadow: var(--shadow-lg), 0 0 0 2px rgba(230, 180, 34, 0.3) inset;
    transform: translateY(-4px);
}

/* 7. 导航 - 移动端优化 */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo img {
    max-height: 45px;

}

.logo-text h1 {
    font-size: var(--text-lg);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: var(--leading-tight);
}

.logo-text span {
    font-size: var(--text-xs);
    color: var(--color-accent)
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: var(--text-lg);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    white-space: nowrap;
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

/* 8. 英雄区域 - 轮播 */
.hero-section {
    min-height: 88vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}


/* 8. 英雄区域 - 轮播 */
.hero-section {
    min-height: 88vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1);
    /* 基础缩放 */
    animation: kenburns 20s ease infinite;
    /* 添加动画 */
}

.carousel-slide.active {
    opacity: 1;
}

/* 从远到近的动画 */
@keyframes kenburns {
    0% {
        transform: scale(1);
        /* 远景 - 原始大小 */
    }

    50% {
        transform: scale(1.1);
        /* 近景 - 放大10%，产生拉近感 */
    }

    100% {
        transform: scale(1);
        /* 回到远景 */
    }
}

/* 为每个轮播项设置不同的动画延迟，使切换更自然 */
.carousel-slide:nth-child(1) {
    animation-delay: 0s;
}

.carousel-slide:nth-child(2) {
    animation-delay: 5s;
}

.carousel-slide:nth-child(3) {
    animation-delay: 10s;
}

.carousel-slide:nth-child(4) {
    animation-delay: 15s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 27, 18, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    /* 添加微妙的遮罩动画 */
    animation: overlay-pulse 10s ease infinite;
}

/* 遮罩层微动效果，配合背景缩放 */
@keyframes overlay-pulse {
    0% {
        opacity: 0.8;
        background: linear-gradient(135deg, rgba(46, 27, 18, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    }

    50% {
        opacity: 0.9;
        background: linear-gradient(135deg, rgba(46, 27, 18, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    }

    100% {
        opacity: 0.8;
        background: linear-gradient(135deg, rgba(46, 27, 18, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-md);
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Source Han Serif CN', "宋体", "SimSun", "Songti SC", serif;
    font-weight: 900;

    /* 渐变文字 */
    background: linear-gradient(180deg,
            #fff 0%,
            #f0e1c7 50%,
            #e6b422 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    /* 上下跳动动画 */
    animation: float 3s ease-in-out infinite;
}

/* 上下跳动动画 */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
        /* 向上移动8px */
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-subtitle {
    font-size: var(--text-base);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    line-height: var(--leading-loose);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Source Han Serif CN', "宋体", "SimSun", "Songti SC", serif;
    font-weight: 900;
}

/* 板块渐变背景 - 优化 */
#theme {
    background: var(--gradient-theme);
}

#purpose {
    background: var(--gradient-purpose);
}

#journey {
    background: var(--gradient-journey);
}

#signup {
    background: var(--gradient-dark);
}


/* 10. 板块样式 - 分割明显 */
.section-block {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-soft);
}

/* 板块头部 - 放大 + 下划线 */
.block-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.block-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    line-height: var(--leading-tight);
    letter-spacing: 0.5px;
    font-family: 'Source Han Serif CN', "宋体", "SimSun", "Songti SC", serif;
    font-weight: 900;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: var(--space-sm) auto;
    border-radius: var(--radius-full);
}

.block-subtitle {
    font-size: var(--text-base);
    color: var(--color-text-light);
    max-width: 600px;
    margin: var(--space-md) auto 0;
    line-height: var(--leading-base);
}

/* 11. 卡片系统 - 统一圆角 + 居中 */
.card {
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

#theme .card {
    text-align: center;
}

#theme .card-icon {
    margin: var(--space-lg) auto;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-xl);
    margin: var(--space-lg) 0;
}

.card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.card p {
    color: var(--color-text-light);
    line-height: var(--leading-base);
    flex: 1;
}

/* 卡片网格 */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

/* 12. 目的意义区域 */
.purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-lg);
}

.purpose-text p {
    font-family: 'Source Han Serif CN', "宋体", "SimSun", "Songti SC", serif;
    font-weight: 900;
}

.purpose-text.card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    /* 居中 */
    gap: var(--space-xs);
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.purpose-text.card h3 i {
    color: var(--color-accent);
}

.value-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    justify-content: center;
    /* 居中 */
}

.tag {
    background: var(--gradient-primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-md);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Source Han Serif CN', "宋体", "SimSun", "Songti SC", serif;
    font-weight: 900;
}

.tag i {
    color: var(--color-accent);
    font-size: var(--text-xs);
}

.video-placeholder {
    text-align: center;
    cursor: pointer;
}

.video-cover {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.video-cover:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(230, 180, 34, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-xl);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.video-cover:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-accent);
}

.video-placeholder span {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-top: var(--space-xs);
}

/* 13. 时间轴 - 卡片化 */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.timeline-item .card {
    padding: var(--space-lg);
    margin: 0;
    text-align: left;
    /* 时间轴内容左对齐 */
}

.timeline-dot {
    width: 64px;
    height: 64px;
    background: var(--color-bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-secondary);
    box-shadow: var(--shadow-md);
    color: var(--color-primary);
    font-size: var(--text-xl);
}

.timeline-date {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 4px var(--space-sm);
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.timeline-content h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.timeline-content p {
    font-size: var(--text-sm);
    margin-bottom: 0;
    color: var(--color-text-light);
}

/* 14. 报名区域 */
.signup-section {
    background: var(--gradient-dark);
    color: white;
}

.signup-section .block-title {
    color: white;
}

.signup-section .block-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.requirements-card.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.requirements-card.card h3 {
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    /* 居中 */
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.requirements-card.card ul {
    list-style: none;
    margin-bottom: var(--space-xl);
    text-align: left;
    /* 列表左对齐 */
}

.requirements-card.card li {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.requirements-card.card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.tips {
    background: rgba(230, 180, 34, 0.15);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-accent);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
    line-height: var(--leading-base);
    text-align: left;
}

.tips i {
    color: var(--color-accent);
    margin-right: var(--space-xs);
}

.signup-form.card {
    background: var(--color-bg-white);
    text-align: left;
    /* 表单左对齐 */
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.form-control {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(201, 123, 42, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    background-size: 16px;
}

textarea.form-control {
    min-height: 80px;
    resize: vertical;
}

/* 15. 页脚 */
.footer {
    background: var(--color-ebony);
    color: white;
    padding: var(--space-2xl) 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: var(--text-2xl);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-md);
    font-family: 'Source Han Serif CN', "宋体", "SimSun", "Songti SC", serif;
    font-weight: 900;
}

.footer-content p {

    font-family: 'Source Han Serif CN', "宋体", "SimSun", "Songti SC", serif;
    font-weight: 900;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin: var(--space-lg) 0;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: white;
}

/* ===== 移动端深度优化 ===== */
@media (max-width: 768px) {

    /* 导航菜单 - 移动端全屏 */
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background: var(--gradient-primary);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--space-2xl) var(--space-lg);
        gap: var(--space-xl);
        display: none;
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        font-size: var(--text-lg);
        width: 100%;
        text-align: center;
        padding: var(--space-sm) 0;

    }

    .nav-cta {
        font-size: var(--text-lg);
        padding: var(--space-sm) var(--space-xl);
        width: auto;
        margin-top: var(--space-md);
    }

    /* 目的区域 - 单列 */
    .purpose-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .value-tags {
        gap: var(--space-xs);
    }


    /* 报名区域 - 单列 */
    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .requirements-card.card {
        padding: var(--space-lg);
    }

    .requirements-card.card h3 {
        font-size: var(--text-lg);
        margin-bottom: var(--space-md);
    }

    .requirements-card.card li {
        font-size: var(--text-sm);
        padding-left: var(--space-lg);
        margin-bottom: var(--space-sm);
    }

    .signup-form.card {
        padding: var(--space-lg);
    }

    .form-group {
        margin-bottom: var(--space-md);
    }

    .form-control {
        padding: var(--space-sm);
        font-size: var(--text-sm);
    }

    .btn {
        width: 100%;
        min-width: auto;
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--text-base);
    }

    /* 页脚 */
    .footer {
        padding: var(--space-xl) 0;
    }

    .footer-logo {
        font-size: var(--text-xl);
    }

    .footer-links {
        gap: var(--space-md);
        flex-direction: column;
    }

    .footer-link {
        font-size: var(--text-sm);
    }




    /* 返回顶部按钮 */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: var(--text-base);
    }


}

/* 横屏模式优化 */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .nav-menu {
        height: auto;
        max-height: calc(100vh - 64px);
    }
}


/* ===== 新增行程介绍样式 ===== */
/* 行程总览卡片 */
.journey-overview {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.overview-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    font-family: 'Source Han Serif CN', "宋体", "SimSun", "Songti SC", serif;
    letter-spacing: 2px;
}

.overview-dates {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
    font-size: var(--text-sm);
}

.overview-dates span {
    background: rgba(255, 255, 255, 0.2);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    backdrop-filter: blur(5px);
}

.overview-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    font-size: var(--text-lg);
    font-weight: 600;
}

.overview-stats i {
    margin-right: var(--space-xs);
    color: var(--color-accent);
}

/* 行程详情网格 */
.journey-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.journey-day-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.journey-day-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.day-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.day-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-sm);
    box-shadow: var(--shadow-md);
}

.day-content {
    padding: var(--space-lg);
}

.day-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
    font-family: 'Source Han Serif CN', "宋体", "SimSun", "Songti SC", serif;
}

.day-subtitle {
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
}

.day-description {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
}

.day-highlight {
    background: rgba(230, 180, 34, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-accent);
    font-size: var(--text-sm);
    color: var(--color-text);
}

.day-highlight i {
    color: var(--color-accent);
    margin-right: var(--space-xs);
}

/* 咨询电话按钮 */
.consult-wrapper {
    text-align: center;
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.consult-title {
    font-size: var(--text-lg);
    color: var(--color-text);
    margin-bottom: var(--space-md);
    font-family: 'Source Han Serif CN', "宋体", "SimSun", "Songti SC", serif;
}

.consult-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-full);
    font-size: var(--text-xl);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.consult-phone:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(145deg, #b23a3a 0%, #d88c3a 100%);
}

.consult-phone i {
    font-size: var(--text-2xl);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .overview-dates {
        flex-direction: column;
        align-items: center;
    }

    .overview-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .journey-detail-grid {
        grid-template-columns: 1fr;
    }

    .consult-phone {
        font-size: var(--text-lg);
        padding: var(--space-sm) var(--space-lg);
    }
}