/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif SC', serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

/* 导航栏 */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 500;
}

.logo span {
    font-size: 18px;
    color: #888;
    margin-left: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    margin-left: 30px;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #c0a080; /* 优雅的金色 */
}

/* 英雄区 - 建议背景图换成高分辨率的西湖或外滩图片 */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1540944158204-287791a9ad04?q=80&w=2000') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 8px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.btn {
    padding: 12px 40px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.btn:hover {
    background: #fff;
    color: #000;
}

/* 板块通用 */
.section {
    padding: 100px 10%;
    text-align: center;
}

.section-title {
    font-size: 28px;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #c0a080;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.card h3 {
    margin-bottom: 15px;
    font-weight: 500;
}

.card p {
    font-size: 14px;
    color: #666;
}

.gray-bg {
    background-color: #f9f9f9;
}

/* 目的地网格 */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.dest-item {
    height: 200px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    font-size: 14px;
    transition: all 0.4s;
}

.dest-item:hover {
    background: #c0a080;
    color: #fff;
    transform: translateY(-5px);
}

/* 页脚 */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 10%;
    text-align: center;
}

.footer-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-info {
    margin-top: 30px;
    font-size: 14px;
    color: #aaa;
}

.copyright {
    margin-top: 50px;
    font-size: 12px;
    color: #555;
}

/* 手机端适配 */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 32px; }
    .dest-grid { grid-template-columns: 1fr 1fr; }
}