/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Microsoft YaHei", "PingFang SC", sans-serif; background: #f4f4f4; color: #333; line-height: 1.6; }
a { text-decoration: none; color: #333; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
section { padding: 20px 0; }

/* Header */
.site-header { background: #fff; color: #333; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-bottom: solid 2px #e0e0e0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 0; }
.header-logo { display: flex; align-items: center; gap: 12px; padding: 15px 0; }
.header-logo a { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.header-logo img { height: 50px; }
.header-logo-text { display: flex; flex-direction: column; }
.header-logo-text .name { font-size: 20px; font-weight: bold; color: #333; line-height: 1.2; }
.header-logo-text .en { font-size: 12px; color: #888; letter-spacing: 1px; }
.header-nav-bar { background: #f8f8f8; border-top: 1px solid #eee; }
.header-nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; max-width: 1100px; margin: 0 auto; }
.nav-list { display: flex; gap: 0; width: 100%; }
.nav-list li { position: relative; flex: auto; }
.nav-list a { color: #333; font-size: 15px; padding: 15px 0px; text-align: center; display: block; border-bottom: 3px solid transparent; transition: 0.3s; }
.nav-list a:hover, .nav-list a.active { border-bottom-color: #d4af37; background: rgba(212,175,55,0.05); color: #d4af37; }
.header-right { display: flex; gap: 15px; align-items: center; font-size: 13px; }
.header-right a { color: #666; }
.header-right a:hover { color: #d4af37; }

/* Hero */
.hero { position: relative; height: 450px; background: #000 url('#') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.hero-content { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); text-align: center; color: #fff; width: 80%; max-width: 800px; }
.hero-content h1 { font-size: 32px; margin-bottom: 10px; text-shadow: 0 2px 6px rgba(0,0,0,0.5); }
.hero-content .stars { font-size: 28px; color: #ffd54d; letter-spacing: 6px; margin-bottom: 15px; display: flex; justify-content: center; }
.hero-content .stars img { width: 18px; margin: 0 4px; }
.hero-content p { font-size: 16px; opacity: 0.9; }

/* Container */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Sections */
.section { padding: 50px 0; background: #fff; margin-bottom: 30px; }
.section-title { text-align: center; font-size: 28px; margin-bottom: 40px; color: #222; position: relative; }
.section-title::after { content: ''; display: block; width: 50px; height: 3px; background: #d4af37; margin: 10px auto 0; }

/* Grid Layouts */
.grid { display: grid; gap: 25px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 20px; }
.card-body h3 { font-size: 18px; margin-bottom: 8px; color: #222; }
.card-body p { font-size: 14px; color: #666; margin-bottom: 12px; }
.card-body .btn { display: inline-block; padding: 6px 15px; background: #d4af37; color: #fff; border-radius: 4px; font-size: 13px; }

/* Home Modules */
.section-heading { text-align: center; margin-top: 10px; margin-bottom: 15px; }
.section-heading h2 { font-size: 28px; color: #222; margin-bottom: 10px; }
.section-heading .divider { width: 60px; height: 3px; background: #d4af37; margin: 0 auto 15px; }
.section-heading p { color: #888; font-size: 14px; }

/* About Section */
.about-section { display: flex; gap: 40px; align-items: stretch; padding: 50px 0; }
.about-text { flex: 1; }
.about-text h3 { font-size: 24px; margin-bottom: 20px; color: #222; }
.about-text p { color: #555; margin-bottom: 20px; line-height: 1.8; }
.about-img { flex: 1; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); display: flex; }
.about-img img { width: 100%; height: 100%; object-fit: fill; display: block; }

/* Brand Intro - same as hotel intro */
.brand-section { display: flex; gap: 40px; align-items: stretch; padding: 30px 0; }
.brand-text { flex: 1; }
.brand-text h3 { font-size: 24px; margin-bottom: 20px; color: #222; }
.brand-text p { color: #555; margin-bottom: 15px; line-height: 1.8; }
.brand-img { flex: 1; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); display: flex; }
.brand-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Transport & Map */
.transport-box { display: flex; align-items: stretch; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.transport-info { flex: 0 0 40%; padding: 30px 35px; min-height: 400px; }
.transport-info h3 { font-size: 20px; margin-bottom: 20px; color: #222; padding-bottom: 12px; border-bottom: 2px solid #d4af37; }
.transport-info ul { list-style: none; }
.transport-info ul li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; color: #555; display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.transport-info ul li:last-child { border-bottom: none; }
.transport-info ul li strong { color: #d4af37; min-width: 70px; flex-shrink: 0; width: 100px; }
.transport-map { flex: 0 0 60%; min-height: 380px; }
.transport-map iframe { width: 100%; height: 100%; min-height: 380px; border: none; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-grid .gallery-item { overflow: hidden; border-radius: 6px; height: 180px; }
.gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: 372px; }
.gallery-grid .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-grid .gallery-item:hover img { transform: scale(1.08); }

/* News List Page */
.news-list { display: flex; flex-direction: column; gap: 0; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.news-item { display: block; padding: 25px 30px; border-bottom: 1px solid #f0f0f0; transition: background 0.3s; }
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: #fafafa; }
.news-item-content h3 { font-size: 17px; margin-bottom: 10px; color: #222; line-height: 1.5; }
.news-item-content h3:hover { color: #d4af37; }
.news-item-content .date { font-size: 12px; color: #bbb; margin-bottom: 8px; }
.news-item-content .desc { font-size: 14px; color: #666; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }
.news-item-content .read-more { color: #d4af37; font-size: 13px; font-weight: 500; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 12px; background: #fff; border: 1px solid #ddd; border-radius: 4px; color: #666; font-size: 14px; transition: all 0.3s; }
.pagination a:hover { border-color: #d4af37; color: #d4af37; }
.pagination a.active { background: #d4af37; color: #fff; border-color: #d4af37; }

/* News Preview */
.news-preview-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.news-preview-item { padding: 16px 25px; border-bottom: 1px solid #f0f0f0; display: block; transition: background 0.3s; }
.news-preview-item:hover { background: #fafafa; }
.news-preview-item h3 { font-size: 15px; color: #333; line-height: 1.5; margin-bottom: 6px; }
.news-preview-item h3:hover { color: #d4af37; }
.news-preview-item .desc { font-size: 13px; color: #999; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 6px; }
.news-preview-item .date { font-size: 12px; color: #ccc; }

/* Contact Info */
.contact-layout { display: flex; gap: 40px; align-items: flex-start; }
.contact-list { flex: 1; }
.contact-list ul { list-style: none; }
.contact-list ul li { padding: 10px 0; border-bottom: 1px solid #e8e8e8; display: flex; align-items: flex-start; gap: 15px; font-size: 15px; color: #555; line-height: 1.6; }
.contact-list ul li:last-child { border-bottom: none; }
.contact-list ul li strong { color: #222; min-width: 108px; flex-shrink: 0; font-size: 15px; }
.contact-list ul li span { color: #555; }
.contact-list ul li a { color: #d4af37; }
.contact-service { text-align: center; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #f9f9f9; border-radius: 8px; height: 220px; }
.contact-service img { width: 100%; height: 100%; margin-bottom: 12px; object-fit: fill; }
.contact-service p { font-size: 13px; color: #888; line-height: 1.5; }

/* Footer */
.site-footer { background: #f8f8f8; color: #666; padding: 60px 0 0; border-top: 1px solid #e8e8e8; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid #e8e8e8; }
.footer-col h4 { color: #333; margin-bottom: 20px; font-size: 16px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: #d4af37; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #666; font-size: 14px; transition: color 0.3s; }
.footer-col ul li a:hover { color: #d4af37; }
.footer-col p { font-size: 14px; color: #666; line-height: 1.6; }

/* Footer Links */
.footer-links { padding: 20px 0; border-bottom: 1px solid #e8e8e8; }
.footer-links-inner { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.footer-links span { color: #888; font-size: 13px; }
.footer-links a { color: #777; font-size: 13px; transition: color 0.3s; }
.footer-links a:hover { color: #d4af37; }

/* Copyright */
.copyright { text-align: center; padding: 20px 0; font-size: 13px; color: #999; }

/* Responsive */
@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 0; }
    .header-logo { padding: 15px 0; }
    .header-nav-inner { flex-direction: column; }
    .nav-list { flex-wrap: wrap; justify-content: center; }
    .nav-list a { padding: 10px 15px; font-size: 14px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .about-section { flex-direction: column; }
    .brand-section { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .news-item { flex-direction: column; }
    .news-item-img { width: 100%; height: 180px; }
    .detail-layout { grid-template-columns: 1fr; }
    .transport-box { flex-direction: column; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; height: 200px; }
    .news-preview-columns { grid-template-columns: 1fr; }
}

.copyright { text-align: center; padding: 20px 0; font-size: 13px; color: #999; }

/* Responsive */
@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 0; }
    .header-logo { padding: 15px 0; }
    .header-nav-inner { flex-direction: column; }
    .nav-list { flex-wrap: wrap; justify-content: center; }
    .nav-list a { padding: 10px 15px; font-size: 14px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .about-section { flex-direction: column; }
    .brand-section { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .news-item { flex-direction: column; }
    .news-item-img { width: 100%; height: 180px; }
    .detail-layout { grid-template-columns: 1fr; }
    .transport-box { flex-direction: column; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; height: 200px; }
    .news-preview-columns { grid-template-columns: 1fr; }
}
