/* Rail Europe 中国官网 - 主样式文件 */

/* ===== 基础重置和变量 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Rail Europe 品牌色彩 */
    --primary-color: #e91e63;  /* 洋红色 */
    --primary-dark: #c2185b;
    --primary-light: #f48fb1;
    --secondary-color: #000000; /* 黑色 */
    --accent-color: #ff6b35;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    
    /* 字体 */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 600;
    --font-weight-black: 700;
    
    /* 间距 */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* 边框半径 */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    
    /* 阴影 */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== 导航栏 ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.nav-cta .btn-primary {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 14px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== 按钮样式 ===== */
.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: inherit;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-wechat {
    background: #07c160;
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-md);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 16px;
}

.btn-wechat:hover {
    background: #06ad56;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== 主要内容区域 ===== */
main {
    margin-top: 80px;
}

/* ===== 英雄区域 ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-xxl);
    padding: var(--spacing-xxl) var(--spacing-md);
    min-height: 70vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-features {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-light);
}

.hero-features .feature i {
    color: var(--success-color);
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ===== 功能特色区域 ===== */
.features {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-xl);
    color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== 热门路线区域 ===== */
.popular-routes {
    padding: var(--spacing-xxl) 0;
    background: #f8f9fa;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    color: var(--secondary-color);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.route-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.route-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.route-content {
    padding: var(--spacing-lg);
}

.route-content h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
}

.route-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.route-price {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

/* ===== 欧铁通票预览 ===== */
.eurail-preview {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.eurail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.eurail-text h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.eurail-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.eurail-benefits {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.eurail-benefits li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.eurail-benefits i {
    color: var(--success-color);
}

.eurail-cta {
    display: flex;
    gap: var(--spacing-md);
}

.eurail-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== 微信小程序区域 ===== */
.wechat-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 100%);
}

.wechat-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.wechat-info h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.wechat-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.wechat-features {
    margin-bottom: var(--spacing-xl);
}

.wechat-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.wechat-feature i {
    font-size: 1.5rem;
    color: #07c160;
    margin-top: var(--spacing-xs);
}

.wechat-feature h4 {
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
}

.wechat-feature p {
    color: var(--text-light);
    margin: 0;
}

.wechat-qr-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.qr-placeholder:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.qr-placeholder i {
    font-size: 3rem;
    color: #07c160;
    margin-bottom: var(--spacing-sm);
}

.qr-placeholder p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* ===== 用户评价 ===== */
.testimonials {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-xl);
    color: var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: #f8f9fa;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.stars {
    margin-bottom: var(--spacing-md);
}

.stars i {
    color: #ffd700;
    margin: 0 2px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.testimonial-author {
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
}

/* ===== 页脚 ===== */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: var(--spacing-xxl) 0 var(--spacing-lg) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    margin-bottom: var(--spacing-md);
    color: var(--primary-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.contact-info p {
    margin-bottom: var(--spacing-xs);
    color: #cccccc;
}

.contact-info i {
    margin-right: var(--spacing-xs);
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ===== 模态框 ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.close:hover {
    color: var(--text-color);
}

.modal-body {
    padding: var(--spacing-xl);
    text-align: center;
}

.modal-body h3 {
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.modal-body h3 i {
    color: #07c160;
}

.qr-container {
    margin-bottom: var(--spacing-lg);
}

.qr-code {
    width: 200px;
    height: 200px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.mini-program-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: #f8f9fa;
    border-radius: var(--border-radius-md);
    font-size: 14px;
}

.mini-feature i {
    color: var(--primary-color);
}

/* ===== 火车票预订页面样式 ===== */

/* 页面头部 */
.page-header {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-md);
}

.header-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.header-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

/* 列车类型展示 */
.train-types {
    padding: var(--spacing-xxl) 0;
    background-color: #f8f9fa;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.type-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.type-icon {
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.train-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.type-content h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
}

.type-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.type-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.type-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.type-features i {
    color: var(--success-color);
}

.type-routes {
    padding: var(--spacing-md);
    background: #f8f9fa;
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* 列车服务详解 */
.train-services {
    padding: var(--spacing-xxl) 0;
}

.services-grid {
    margin-top: var(--spacing-xl);
}

.service-category {
    margin-bottom: var(--spacing-xxl);
}

.service-category h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.service-category h3 i {
    color: var(--primary-color);
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.service-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
}

.service-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.service-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

.service-item h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin: 0;
}

.service-item p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
    color: var(--text-light);
}

.booking-tips {
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-xl);
    background: #f8f9fa;
    border-radius: var(--border-radius-lg);
    color: #333333;
}

.booking-tips h3 {
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
}

.tips-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.tip {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
}

.tip i {
    color: #fff;
    font-size: 1.2rem;
}

/* 微信小程序展示 */
.wechat-app {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.phone-mockup {
    background: #333;
    border-radius: 25px;
    padding: 20px;
    width: 300px;
    height: 500px;
    margin: 0 auto;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-screenshot {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===== 简化页脚样式 ===== */
.wechat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.wechat-info {
    flex: 1;
    text-align: left;
}

.wechat-info h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.wechat-info h3 i {
    color: #07c160;
    font-size: 1.5rem;
}

.wechat-info p {
    color: var(--text-light);
    line-height: 1.6;
}

.qr-code-footer {
    text-align: center;
    margin-left: var(--spacing-xl);
}

.footer-qr {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius-md);
    border: 2px solid var(--border-color);
    margin-bottom: var(--spacing-sm);
}

.qr-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===== 工具类 ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* ===== 欧洲目的地展示 ===== */
.destinations {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.destinations h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.destinations-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xxl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.destination-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.destination-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-content {
    padding: var(--spacing-lg);
}

.destination-content h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.countries {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.destination-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.popular-cities {
    text-align: center;
}

.popular-cities h3 {
    margin-bottom: var(--spacing-xl);
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--spacing-sm);
    max-width: 1000px;
    margin: 0 auto;
}

.city-item {
    background: #f8f9fa;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.city-item:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* ===== 响应式设计在 responsive.css 中定义 ===== */