/* ===== 基础重置和字体 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 导航栏样式 ===== */
.navbar {
    background:#8ed8c0;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h1 {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.nav-logo-link {
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo-link:hover {
    color: #f0f0f0 !important;
    transform: scale(1.05);
}

/* 确保在移动端也有良好的点击体验 */
@media (max-width: 480px) {
    .nav-logo-link {
        display: block;
        padding: 5px 0;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f0f0f0;
}

/* ===== Hero横幅样式 ===== */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: #fff;
    color: #333;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== 精选游记样式 ===== */
.featured-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.card-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.travel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
}

.travel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.travel-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.travel-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.card-desc {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #764ba2;
}

/* ===== 图片画廊样式 ===== */
/* ===== 图片画廊样式 ===== */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 250px;
    background: #f0f0f0;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== 页脚样式 ===== */
.footer {
    background: #8ed8c0;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand p {
    opacity: 0.8;
    max-width: 300px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    opacity: 1;
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .card-row {
        flex-direction: column;
        align-items: center;
    }
    
    .travel-card {
        min-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 1rem 20px;
    }
    
    .nav-menu {
        margin-top: 1rem;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
/* ===== About Page Specific Styles ===== */

/* About Hero Section */
.about-hero {
    background: #E0F7F3;  /* 更浅的薄荷绿 */
    color: #333;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.about-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 300px;
}

.about-image img {
    width: 100%;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.about-intro h1{
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.about-tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.story-text {
    flex: 1;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.story-image {
    flex: 0 0 400px;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Travel Stats */
.travel-stats {
    display: flex;
    gap: 40px;
    margin-top: 3rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.philosophy-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.philosophy-card h3 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.philosophy-card p {
    color: #666;
    line-height: 1.6;
}

/* Memories Section */
.memories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.memories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.memory-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.memory-card:hover {
    transform: translateY(-5px);
}

.memory-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.memory-content {
    padding: 25px;
}

.memory-content h3 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.memory-content p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 1.5rem;
    color: #2c5530;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    margin-bottom: 1.5rem;
}

.social-links {
    margin-top: 0.5rem;
}

.social-link {
    display: inline-block;
    margin-right: 15px;
    color: #667eea;
    text-decoration: none;
}

.social-link:hover {
    text-decoration: underline;
}

/* Contact Form */
.message-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .about-image {
        flex: 0 0 200px;
    }
    
    .about-image img {
        height: 200px;
    }
    
    .story-content {
        flex-direction: column;
    }
    
    .story-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .travel-stats {
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .memories-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Destinations Page Styles ===== */

/* Destinations Hero */
.destinations-hero {
    background: #E0F7F3;  /* 和About me页面一样的浅薄荷绿 */
    color: #333;
    padding: 120px 0 60px;
    margin-top: 70px;
    text-align: center;
}

.destinations-title {
    font-size: 2.2rem;  /* 和About me页面的标题一样大小 */
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;   /* 保持相同的字重 */
}

.destinations-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Destinations Grid */
.destinations-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.destination-image {
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-content {
    padding: 25px;
    text-align: center;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.destination-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .destinations-title {
        font-size: 2.5rem;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .destinations-hero {
        padding: 100px 0 40px;
    }
    
    .destinations-title {
        font-size: 2rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Blog Page Enhanced Styles ===== */

/* Blog Hero */
.blog-hero {
    background: #E0F7F3;
    color: #333;
    padding: 120px 0 60px;
    margin-top: 70px;
    text-align: center;
}

.blog-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 600;
}

.blog-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Cards Layout */
.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-card-row {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.blog-long-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 350px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.blog-long-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-long-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    background: #B0F4E6;
    color: #2c5530;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c5530;
    line-height: 1.3;
}

.blog-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.blog-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-highlights {
    margin-bottom: 1.5rem;
}

.blog-highlights span {
    display: inline-block;
    background: #f8f9fa;
    color: #666;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.read-more:hover {
    color: #764ba2;
}

/* To Be Continued Section */
.blog-continue {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #ddd;
}

.continue-text {
    font-size: 2rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.blog-continue p {
    color: #888;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-long-card {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .blog-card-row {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-long-card {
        min-width: 100%;
        max-width: 500px;
    }
    
    .blog-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 100px 0 40px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .continue-text {
        font-size: 1.5rem;
    }
}

/* ===== Blog Article Styles ===== */
.blog-article {
    padding: 100px 0 60px;
    margin-top: 70px;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-meta {
    margin-bottom: 1rem;
}

.article-category {
    background: #B0F4E6;
    color: #2c5530;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    color: #888;
    margin-left: 15px;
    font-size: 0.9rem;
}

.article-title {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.article-hero-image {
    max-width: 800px;
    margin: 0 auto;
}

.article-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.image-caption {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.article-tips {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #B0F4E6;
}

.article-tips h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.article-tips ul {
    list-style: none;
    padding: 0;
}

.article-tips li {
    padding: 8px 0;
    color: #555;
}

.article-navigation {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.back-to-blog {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.back-to-blog:hover {
    color: #764ba2;

}


