:root {
    --mist-rose: #c49b95;
    --mist-green: #7a9a7e;
    --tea-gold: #b8945a;
    --rice-paper: #fdfaf5;
    --warm-white: #fefefb;
    --text-warm: #4a3f3a;
    --text-soft: #8a7f7a;
    --font-heading: 'Noto Serif SC', serif;
    --font-body: 'Noto Sans SC', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.top-bar {
    background-color: var(--text-warm);
    color: var(--rice-paper);
    padding: 10px 0;
    text-align: center;
    font-size: 0.95rem;
}

.top-bar a {
    color: var(--rice-paper);
    font-weight: 500;
}

.top-bar a:hover {
    color: var(--mist-rose);
}

.top-bar i {
    margin-right: 8px;
    color: var(--mist-rose);
}

body {
    font-family: var(--font-body);
    color: var(--text-warm);
    background-color: var(--rice-paper);
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--mist-rose);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-warm);
}

.section-title p {
    color: var(--text-soft);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--mist-rose);
    color: white;
}

.btn-primary:hover {
    background-color: #b08a85;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 155, 149, 0.4);
}

.btn-secondary {
    background-color: var(--mist-green);
    color: white;
}

.btn-secondary:hover {
    background-color: #6a8a6e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(122, 154, 126, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--mist-rose);
    color: var(--mist-rose);
}

.btn-outline:hover {
    background-color: var(--mist-rose);
    color: white;
}

.navbar {
    background-color: var(--warm-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-warm);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-warm);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--mist-rose);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-warm);
    cursor: pointer;
}

.hero {
    background: linear-gradient(135deg, var(--rice-paper) 0%, #f5f0e8 100%);
    padding: 100px 0;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-warm);
}

.hero-content .slogan {
    font-size: 1.4rem;
    color: var(--text-soft);
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.tag {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--warm-white);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-warm);
    border: 1px solid #e8e0d8;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--mist-rose);
    color: white;
    border-color: var(--mist-rose);
}

.why-choose {
    background-color: var(--warm-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--rice-paper);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card i {
    font-size: 3rem;
    color: var(--mist-rose);
    margin-bottom: 20px;
}

.stat-card .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-warm);
    font-family: var(--font-heading);
}

.stat-card .label {
    font-size: 1.1rem;
    color: var(--text-soft);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background-color: var(--warm-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-img {
    height: 220px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-content p {
    color: var(--text-soft);
    margin-bottom: 15px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.card-category {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--mist-rose);
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
}

.reviews {
    background-color: var(--warm-white);
}

.review-card {
    background-color: var(--rice-paper);
    padding: 30px;
    border-radius: 15px;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.review-info h4 {
    margin-bottom: 5px;
}

.review-date {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.review-rating {
    color: var(--tea-gold);
    margin-bottom: 15px;
}

.cta-section {
    background: linear-gradient(135deg, var(--mist-rose) 0%, var(--mist-green) 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .btn {
    background-color: white;
    color: var(--mist-rose);
}

.cta-section .btn:hover {
    background-color: var(--warm-white);
}

.footer {
    background-color: var(--text-warm);
    color: var(--rice-paper);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.footer-about p {
    color: #c8c0bc;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a {
    color: #c8c0bc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a:hover {
    color: white;
}

.footer-links h4,
.footer-contact-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #c8c0bc;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #5a4f4a;
    color: #8a7f7a;
}

.page-header {
    background: linear-gradient(135deg, var(--rice-paper) 0%, #f5f0e8 100%);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-soft);
    font-size: 1.1rem;
}

.about-content {
    background-color: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-story h2 {
    margin-bottom: 25px;
    font-size: 2rem;
}

.about-story p {
    margin-bottom: 20px;
    color: var(--text-warm);
}

.credentials {
    margin-top: 40px;
}

.credentials h3 {
    margin-bottom: 20px;
}

.credential-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.credential-item i {
    font-size: 1.5rem;
    color: var(--mist-green);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: none;
    background-color: var(--warm-white);
    color: var(--text-warm);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--mist-rose);
    color: white;
}

.article-header {
    margin-bottom: 40px;
}

.article-header-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-soft);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    margin: 30px 0 15px;
    color: var(--text-warm);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
}

.author-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background-color: var(--warm-white);
    border-radius: 15px;
    margin: 50px 0;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 10px;
}

.author-info p {
    color: var(--text-soft);
}

.route-card {
    background-color: var(--warm-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.route-header {
    position: relative;
}

.route-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.route-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--mist-rose);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.route-body {
    padding: 25px;
}

.route-body h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.route-days {
    color: var(--mist-green);
    font-weight: 500;
    margin-bottom: 15px;
}

.route-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.route-highlight {
    background-color: var(--rice-paper);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--text-warm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:nth-child(2) {
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.reviews-summary {
    text-align: center;
    margin-bottom: 60px;
}

.overall-rating {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-warm);
    font-family: var(--font-heading);
}

.stars {
    color: var(--tea-gold);
    font-size: 1.5rem;
    margin: 10px 0;
}

.contact-content {
    background-color: var(--warm-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    background-color: var(--rice-paper);
    padding: 40px;
    border-radius: 15px;
}

.contact-info-card h3 {
    margin-bottom: 30px;
    font-size: 1.6rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background-color: var(--mist-rose);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    color: var(--text-soft);
}

.qr-code {
    margin-top: 30px;
    text-align: center;
}

.qr-code img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

.qr-code p {
    margin-top: 10px;
    color: var(--text-soft);
}

.contact-form {
    background-color: var(--rice-paper);
    padding: 40px;
    border-radius: 15px;
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.6rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e8e0d8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--warm-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--mist-rose);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-page {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background-color: var(--mist-green);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.submit-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.submit-page p {
    color: var(--text-soft);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e8e0d8;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    background-color: var(--warm-white);
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--mist-rose);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item div {
    padding: 20px;
    background-color: var(--rice-paper);
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .tags {
        justify-content: center;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .credential-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(4) {
        grid-row: span 1;
        grid-column: span 1;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
