/* assets/style.css */
:root {
  --primary-color: #1a365d;
  --secondary-color: #2d4a7c;
  --accent-color: #c9a96e;
  --background-color: #f8f5f0;
  --card-bg: #ffffff;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #888888;
  --border-color: #e0e0e0;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
  color: var(--text-primary);
  background-color: var(--background-color);
  line-height: 1.6;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 导航栏样式 */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 40px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mark {
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.name {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 18px;
}

.sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
  position: relative;
  padding: 8px 0;
}

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

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

.langbtn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.langbtn:hover {
  background-color: var(--secondary-color);
}

.pill {
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.pill:hover {
  background-color: #b89a5e;
}

/* 主横幅 */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23ffffff" opacity="0.1" d="M50,0 C77.6,0 100,22.4 100,50 C100,77.6 77.6,100 50,100 C22.4,100 0,77.6 0,50 C0,22.4 22.4,0 50,0 Z"></path></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.eyebrow {
  display: flex;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-right: 10px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.lede {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.btn.primary {
  background-color: var(--accent-color);
  color: white;
}

.btn.primary:hover {
  background-color: #b89a5e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn.secondary {
  background-color: white;
  color: var(--primary-color);
}

.btn.secondary:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn.outline {
  background-color: transparent;
  border-color: white;
  color: white;
}

.btn.outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn.full-width {
  width: 100%;
}

/* 特色区域 */
.features {
  margin-bottom: 60px;
}

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

.feature-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(201, 169, 110, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-color);
  font-size: 24px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background-color: rgba(201, 169, 110, 0.1);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* 推荐组合 */
.combo-section {
  margin-bottom: 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
}

.combo-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.combo-destinations {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.destination {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.destination h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.destination p {
  color: var(--text-secondary);
}

.combo-plus {
  width: 50px;
  height: 50px;
  background-color: rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
}

.combo-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 20px;
}

.combo-info h4 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.combo-info p {
  color: var(--text-secondary);
}

/* 联系区域 */
.contact-section {
  margin-bottom: 60px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(201, 169, 110, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.wechat-id {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 5px 0;
}

.contact-form {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
}

/* 页脚 */
.footer {
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 50px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-tagline {
  opacity: 0.8;
  font-size: 15px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.link-group h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.link-group a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.link-group a:hover {
  color: white;
}

.link-group p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* 内容页面通用样式 */
.content-header {
  margin-bottom: 40px;
  text-align: center;
}

.content-header h1 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.content-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
}

.content-section {
  margin-bottom: 50px;
}

.content-section h2 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
}

.content-card {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.content-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-stamp {
  background-color: rgba(201, 169, 110, 0.1);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.content-list {
  list-style-type: none;
}

.content-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.content-list li::before {
  content: '•';
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* FAQ特定样式 */
.faq-item {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
}

.faq-question {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  color: var(--text-secondary);
}

/* 语言切换 */
[data-lang="en"] {
  display: none;
}

body.lang-en [data-lang="zh"] {
  display: none;
}

body.lang-en [data-lang="en"] {
  display: inline;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar {
    flex-wrap: wrap;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
  }
  
  .nav.show {
    display: flex;
  }
  
  .hero {
    padding: 40px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .actions {
    flex-direction: column;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .combo-destinations {
    flex-direction: column;
  }
  
  .combo-total {
    flex-direction: column;
    align-items: stretch;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .content-header h1 {
    font-size: 32px;
  }
}
/* 内容页面通用样式 - 已在之前提供，确认包含以下内容 */
.content-header {
  margin-bottom: 40px;
  text-align: center;
}

.content-header h1 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.content-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
}

.content-section {
  margin-bottom: 50px;
}

.content-section h2 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
}

.content-card {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.content-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-stamp {
  background-color: rgba(201, 169, 110, 0.1);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.content-list {
  list-style-type: none;
}

.content-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.content-list li::before {
  content: '•';
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* 关于我们页面专用样式 */
.principles-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.principle-item {
  padding: 20px;
  background-color: rgba(248, 245, 240, 0.5);
  border-radius: var(--radius);
}

.principle-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.principle-header h4 {
  margin: 0;
  color: var(--primary-color);
}

/* FAQ页面样式补充 */
.answer-list {
  list-style-type: none;
  padding-left: 0;
}

.answer-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.answer-list li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .content-header h1 {
    font-size: 32px;
  }
  
  .content-section h2 {
    font-size: 24px;
  }
  
  .content-card h3 {
    font-size: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .card-stamp {
    align-self: flex-start;
  }
}