/* ============================================
   壶瓶山风景区官网 - 全局样式 v2
   紧凑布局 / 强层级 / 丰富视觉 / 精细响应 / 无障碍
   ============================================ */

/* ---- 焦点样式（无障碍） ---- */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* CSS 变量 */
:root {
  --primary: #1A432B;
  --primary-light: #2D6B3F;
  --primary-dark: #0F2A1A;
  --accent: #5C665E;
  --accent-light: #8A9488;
  --bg: #F5F5F0;
  --bg-card: #FFFFFF;
  --bg-surface: #FAFAF8;
  --bg-overlay: rgba(15, 42, 26, 0.7);
  --text: #1A1A1A;
  --text-secondary: #3D3D3D;
  --text-light: #6B6B6B;
  --text-muted: #9A9A9A;
  --text-white: #FFFFFF;
  --border: #E5E5E0;
  --border-light: #F0F0EC;
  --shadow-sm: 0 1px 3px rgba(15, 42, 26, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 42, 26, 0.08);
  --shadow-lg: 0 8px 24px rgba(15, 42, 26, 0.10);
  --radius: 6px;
  --transition: all 0.25s ease;
  --transition-slow: all 0.4s ease;
}

/* 全局重置 */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-dark);
  letter-spacing: 0.01em;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

/* 容器 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   导航栏
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(245, 245, 240, 0.96);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.navbar-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-menu a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.02em;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

.navbar-menu a.active {
  color: var(--primary);
  font-weight: 600;
}

/* 汉堡菜单按钮 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* 移动端菜单 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  font-weight: 500;
}

.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu a.active {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   页脚
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: var(--text-white);
  padding: 40px 0 20px;
}

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

.footer-brand h3 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 0.8125rem;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  padding: 3px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--text-white);
}

.footer-links h4 {
  color: var(--text-white);
  font-size: 0.8125rem;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-links a,
.footer-links p {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  padding: 3px 0;
  transition: var(--transition);
  line-height: 1.5;
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   通用组件
   ============================================ */

/* 页面头部横幅 */
.page-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 64px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-white);
  padding: 0 24px;
}

.page-hero-content h1 {
  color: var(--text-white);
  font-size: 2rem;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.page-hero-content p {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 400;
}

/* 区块标题 */
.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 1.375rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.section-header .divider {
  width: 36px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 10px;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  font-size: 0.9375rem;
  max-width: 520px;
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  border-radius: var(--radius);
  line-height: 1.4;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
  box-shadow: 0 1px 2px rgba(15, 42, 26, 0.15);
}

.btn-primary:hover {
  background: var(--primary-light);
  color: var(--text-white);
  box-shadow: 0 2px 6px rgba(15, 42, 26, 0.2);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--text-white);
  color: var(--primary);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.btn-white:hover {
  background: var(--bg);
  color: var(--primary);
  transform: translateY(-1px);
}

/* 卡片 */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img {
  transform: scale(1.03);
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 1.0625rem;
  margin-bottom: 6px;
  font-weight: 600;
  line-height: 1.4;
}

.card-body p {
  color: var(--text-light);
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* 标签 */
.tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.6875rem;
  font-weight: 500;
  background: rgba(26, 67, 43, 0.08);
  color: var(--primary);
  border-radius: 3px;
  letter-spacing: 0.02em;
}

/* ============================================
   快速入口
   ============================================ */
.quick-links {
  padding: 48px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-link-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.quick-link-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.quick-link-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--primary);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.quick-link-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
  font-weight: 600;
}

.quick-link-price {
  font-size: 0.8125rem;
  color: var(--text);
  margin-bottom: 6px;
}

.quick-link-price strong {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 700;
}

.quick-link-desc {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.quick-link-card .btn {
  padding: 8px 18px;
  font-size: 0.8125rem;
}

/* ============================================
   四季板块（首页/攻略/景点共用）
   ============================================ */
.seasons-section {
  padding: 48px 0;
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.season-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.season-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.season-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.season-card:hover img {
  transform: scale(1.04);
}

.season-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 42, 26, 0.92) 0%, rgba(15, 42, 26, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: var(--text-white);
}

.season-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: var(--text-white);
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 3px;
  margin-bottom: 8px;
  align-self: flex-start;
  letter-spacing: 0.04em;
}

.season-overlay h3 {
  color: var(--text-white);
  font-size: 1.0625rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.season-overlay p {
  font-size: 0.75rem;
  opacity: 0.8;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .seasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .seasons-grid {
    grid-template-columns: 1fr;
  }
  .season-card {
    aspect-ratio: 16/9;
  }
}

/* ============================================
   首页
   ============================================ */

/* 轮播图 */
.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 480px;
  max-height: 800px;
  overflow: hidden;
  margin-top: 64px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 42, 26, 0.25) 0%,
    rgba(15, 42, 26, 0.55) 50%,
    rgba(15, 42, 26, 0.88) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 12%;
  left: 0; right: 0;
  text-align: center;
  color: var(--text-white);
  padding: 0 24px;
}

.hero-content h1 {
  color: var(--text-white);
  font-size: 2.75rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.125rem;
  opacity: 0.88;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.5;
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  border-radius: 4px;
}

.hero-dot.active {
  background: var(--text-white);
  width: 24px;
}

/* 亮点区块 */
.highlights {
  padding: 48px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.highlight-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(26, 67, 43, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--primary);
  border-radius: var(--radius);
}

.highlight-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.highlight-card p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* 精选景点 */
.featured-attractions {
  padding: 48px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border-radius: var(--radius);
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-card:hover img {
  transform: scale(1.04);
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 42, 26, 0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--text-white);
  transition: var(--transition);
}

.featured-card-overlay h3 {
  color: var(--text-white);
  font-size: 1.125rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.featured-card-overlay p {
  font-size: 0.8125rem;
  opacity: 0.75;
  line-height: 1.5;
}

/* 最新资讯 */
.latest-news {
  padding: 48px 0;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-img {
  transform: scale(1.03);
}

.news-card-body {
  padding: 18px;
}

.news-card-body .news-date {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.news-card-body h3 {
  font-size: 0.9375rem;
  margin-bottom: 6px;
  line-height: 1.4;
  font-weight: 600;
}

.news-card-body p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   景区介绍页
   ============================================ */
.about-intro {
  padding: 48px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-grid.reverse {
  direction: rtl;
}

.about-grid.reverse > * {
  direction: ltr;
}

.about-text h2 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.about-text p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--primary);
  color: var(--text-white);
  border-radius: var(--radius);
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: inherit;
}

.stat-card .stat-label {
  font-size: 0.8125rem;
  opacity: 0.75;
}

/* ============================================
   景点展示页
   ============================================ */
.attractions-page {
  padding: 48px 0;
}

.seasons-bar {
  margin-bottom: 28px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.seasons-bar h3 {
  font-size: 0.9375rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--primary-dark);
}

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

.season-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  color: var(--text-white);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.season-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  color: var(--text-white);
  filter: brightness(1.1);
}

.season-desc {
  padding: 18px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 12px;
}

.season-desc p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 6px 16px;
  font-size: 0.8125rem;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  border-radius: var(--radius);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.attraction-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.attraction-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.attraction-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.attraction-card:hover .attraction-card-img {
  transform: scale(1.04);
}

.attraction-card-body {
  padding: 18px;
}

.attraction-card-body h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.attraction-card-body .attraction-tag {
  margin-bottom: 6px;
}

.attraction-card-body p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 景点详情弹窗 */
.attraction-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.65);
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.attraction-modal.open {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(15, 42, 26, 0.7);
  color: var(--text-white);
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: var(--radius);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--primary);
}

.modal-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.modal-body {
  padding: 28px;
}

.modal-body h2 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.modal-body p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.modal-info-item {
  padding: 14px;
  background: var(--bg-surface);
  border-radius: var(--radius);
}

.modal-info-item .label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-info-item .value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

/* ============================================
   旅游攻略页
   ============================================ */
.guide-page {
  padding: 48px 0;
}

.guide-section {
  margin-bottom: 40px;
}

.guide-section h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  font-weight: 700;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-card {
  padding: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.info-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.info-card h3 .icon {
  color: var(--primary);
}

.info-card p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.65;
}

.info-card ul {
  margin-top: 6px;
}

.info-card ul li {
  font-size: 0.8125rem;
  color: var(--text-light);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}

.info-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

.route-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.route-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.route-card .route-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.route-card p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* 美食与住宿 */
.food-grid,
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.food-card,
.hotel-card {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.food-card:hover,
.hotel-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border);
}

.food-img,
.hotel-img {
  width: 160px;
  min-width: 160px;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}

.food-img img,
.hotel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.food-card:hover .food-img img,
.hotel-card:hover .hotel-img img {
  transform: scale(1.05);
}

.food-info,
.hotel-info {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.food-info h3,
.hotel-info h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-weight: 600;
}

.food-info p,
.hotel-info p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 6px;
}

.food-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--primary);
  color: var(--text-white);
  font-size: 0.6875rem;
  margin-top: auto;
  align-self: flex-start;
  border-radius: 3px;
  font-weight: 500;
}

.hotel-type {
  display: inline-block;
  padding: 2px 8px;
  background: var(--primary);
  color: var(--text-white);
  font-size: 0.6875rem;
  margin-bottom: 6px;
  align-self: flex-start;
  border-radius: 3px;
  font-weight: 500;
}

.hotel-price {
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 0.8125rem !important;
}

.hotel-contact {
  color: var(--text-secondary) !important;
  font-size: 0.75rem !important;
}

/* ============================================
   新闻资讯页
   ============================================ */
.news-page {
  padding: 48px 0;
}

.news-categories {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.news-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.news-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.news-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}

.news-item-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-item-body .news-meta {
  display: flex;
  gap: 14px;
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.news-item-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 600;
}

.news-item-body h3 a {
  color: var(--primary-dark);
}

.news-item-body h3 a:hover {
  color: var(--primary-light);
}

.news-item-body p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}

.pagination button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-size: 0.8125rem;
  border-radius: var(--radius);
}

.pagination button:hover,
.pagination button.active {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

/* ============================================
   新闻详情页
   ============================================ */
.news-detail {
  padding: 48px 0;
}

.news-detail-header {
  margin-bottom: 24px;
}

.news-detail-header h1 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.news-detail-meta {
  display: flex;
  gap: 20px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.news-detail-content {
  max-width: 760px;
}

.news-detail-content p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.news-detail-content img {
  width: 100%;
  margin: 20px 0;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
}

.news-detail-content h2 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
  font-weight: 700;
}

.news-detail-content h3 {
  font-size: 1.0625rem;
  margin: 20px 0 10px;
  font-weight: 600;
}

.news-detail-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 14px 20px;
  margin: 20px 0;
  background: var(--bg-surface);
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ============================================
   联系我们页
   ============================================ */
.contact-page {
  padding: 48px 0;
}

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

.contact-info h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(26, 67, 43, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.125rem;
  flex-shrink: 0;
  border-radius: var(--radius);
}

.contact-item-text h4 {
  font-size: 0.875rem;
  margin-bottom: 2px;
  font-family: inherit;
  font-weight: 600;
  color: var(--text);
}

.contact-item-text p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
}

.map-container {
  width: 100%;
  height: 260px;
  background: var(--border);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
  border-radius: var(--radius);
}

.contact-form h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.875rem;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-family: inherit;
  transition: var(--transition);
  border-radius: var(--radius);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 67, 43, 0.08);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 14px;
  background: rgba(26, 67, 43, 0.08);
  color: var(--primary);
  font-size: 0.8125rem;
  margin-top: 14px;
  text-align: center;
  border-radius: var(--radius);
}

.form-success.show {
  display: block;
}

/* ============================================
   在线购票页
   ============================================ */
.booking-page {
  padding: 40px 0 56px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
}

.booking-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.booking-panel h2 {
  font-size: 1.125rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  font-weight: 700;
}

.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ticket-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  transition: var(--transition);
  border-radius: var(--radius);
}

.ticket-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.ticket-info {
  flex: 1;
  min-width: 0;
}

.ticket-info h3 {
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 3px;
  font-weight: 600;
}

.ticket-info p {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.ticket-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 72px;
  text-align: right;
}

.ticket-quantity {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 96px;
  justify-content: flex-end;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--primary);
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  border-radius: 4px;
  font-weight: 600;
}

.qty-btn:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

.qty-num {
  width: 28px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.date-picker-wrapper {
  margin-top: 6px;
}

.date-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  background: var(--bg-surface);
  color: var(--text);
  font-size: 0.875rem;
  font-family: inherit;
  transition: var(--transition);
  border-radius: var(--radius);
}

.date-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 67, 43, 0.08);
}

.order-summary {
  position: sticky;
  top: 88px;
  height: fit-content;
}

.summary-list {
  margin-bottom: 16px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.8125rem;
  color: var(--text-light);
}

.summary-item.total {
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 700;
}

.summary-item strong {
  color: var(--primary);
  font-weight: 700;
}

.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

.total-amount {
  font-size: 1.375rem;
  color: var(--primary);
  font-weight: 700;
}

.booking-form {
  margin-top: 14px;
}

.form-group .required {
  color: #C0392B;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9375rem;
  margin-top: 6px;
}

.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #C0392B;
  color: #fff;
  padding: 10px 20px;
  font-size: 0.8125rem;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: var(--radius);
  font-weight: 500;
}

.toast button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0;
  margin-left: 6px;
}

/* ============================================
   订单确认页
   ============================================ */
.confirm-page {
  padding: 40px 0 56px;
}

.confirm-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.confirm-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--primary);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 67, 43, 0.2);
}

.confirm-card h2 {
  font-size: 1.375rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.confirm-desc {
  color: var(--text-light);
  font-size: 0.8125rem;
  margin-bottom: 24px;
}

.order-detail {
  text-align: left;
  margin: 24px 0;
  padding: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.8125rem;
}

.detail-row.total .detail-value {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 700;
}

.detail-label {
  color: var(--text-muted);
}

.detail-value {
  color: var(--text);
  font-weight: 500;
}

.detail-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.confirm-actions .btn {
  padding: 10px 28px;
}

/* ============================================
   VR云游
   ============================================ */
.vr-page {
  padding: 48px 0;
}

.vr-intro {
  text-align: center;
  margin-bottom: 28px;
}

.vr-intro p {
  color: var(--text-light);
  font-size: 0.9375rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.vr-viewer {
  width: 100%;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
}

.vr-scenes {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.vr-scene-btn {
  padding: 10px 22px;
  font-size: 0.875rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-weight: 500;
  border-radius: var(--radius);
}

.vr-scene-btn.active,
.vr-scene-btn:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

.vr-hint {
  text-align: center;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   打卡地图
   ============================================ */
.map-page {
  padding: 48px 0;
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}

.map-canvas-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-spot {
  cursor: pointer;
  transition: var(--transition);
}

.map-spot:hover circle,
.map-spot.active circle {
  r: 14;
  stroke-width: 3;
}

.map-spot:hover text,
.map-spot.active text {
  font-weight: 700;
}

.map-spot circle {
  transition: var(--transition);
}

.map-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-info-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.map-info-panel h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.map-info-panel p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.map-info-panel img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.checklist-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.checklist-panel h3 {
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 600;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 1px solid var(--border-light);
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.checklist-progress {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  transition: width 0.4s ease;
  border-radius: 3px;
}

.progress-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.share-btn {
  margin-top: 14px;
  width: 100%;
}

/* ============================================
   季节壁纸
   ============================================ */
.wallpaper-page {
  padding: 48px 0;
}

.wallpaper-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.wallpaper-tab {
  padding: 8px 20px;
  font-size: 0.875rem;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-weight: 500;
  border-radius: var(--radius);
}

.wallpaper-tab.active,
.wallpaper-tab:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

.wallpaper-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wallpaper-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.wallpaper-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.wallpaper-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wallpaper-card:hover img {
  transform: scale(1.04);
}

.wallpaper-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 42, 26, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: var(--text-white);
}

.wallpaper-card-overlay h3 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.wallpaper-card-overlay p {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.wallpaper-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: var(--text-white);
  font-size: 0.75rem;
  border-radius: 3px;
  font-weight: 500;
  transition: var(--transition);
}

.wallpaper-card:hover .wallpaper-dl-btn {
  background: var(--text-white);
  color: var(--primary);
}

/* 壁纸下载弹窗 */
.wallpaper-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.65);
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.wallpaper-modal.open {
  display: flex;
}

.wallpaper-modal-content {
  background: var(--bg-card);
  max-width: 420px;
  width: 100%;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.wallpaper-modal-content h3 {
  font-size: 1.125rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.wallpaper-modal-content p {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.size-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.size-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
  text-align: left;
  background: var(--bg-card);
  font-family: inherit;
  color: var(--text);
}

.size-option:hover {
  border-color: var(--primary);
}

.size-option .size-label {
  font-weight: 600;
}

.size-option .size-dims {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   首页Banner固定购票按钮
   ============================================ */
.hero-cta-fixed {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 10;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--primary);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(15, 42, 26, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
}

.hero-cta-fixed:hover {
  background: var(--primary-light);
  color: var(--text-white);
  box-shadow: 0 6px 16px rgba(15, 42, 26, 0.35);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-cta-fixed {
    bottom: 20px;
    right: 20px;
    padding: 12px 22px;
    font-size: 0.875rem;
  }
}

/* ============================================
   预约提醒
   ============================================ */
.booking-reminder {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(26, 67, 43, 0.06) 0%, rgba(26, 67, 43, 0.02) 100%);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.booking-reminder .reminder-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.booking-reminder .reminder-text {
  flex: 1;
  min-width: 0;
}

.booking-reminder .reminder-text h4 {
  font-size: 0.9375rem;
  margin-bottom: 2px;
  font-weight: 600;
  color: var(--primary-dark);
}

.booking-reminder .reminder-text p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

.booking-reminder .btn {
  padding: 8px 18px;
  font-size: 0.8125rem;
  flex-shrink: 0;
}

/* ============================================
   行程推荐
   ============================================ */
.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.itinerary-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.itinerary-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.itinerary-header {
  padding: 18px 20px 14px;
  background: var(--primary);
  color: var(--text-white);
}

.itinerary-header h3 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.itinerary-header .itinerary-tag {
  font-size: 0.6875rem;
  opacity: 0.8;
  letter-spacing: 0.04em;
}

.itinerary-body {
  padding: 18px 20px;
  flex: 1;
}

.itinerary-body ul {
  list-style: none;
}

.itinerary-body li {
  font-size: 0.8125rem;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.5;
}

.itinerary-body li:last-child {
  border-bottom: none;
}

.itinerary-body li strong {
  color: var(--primary);
  font-weight: 600;
}

.itinerary-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   避坑指南 / 小贴士
   ============================================ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tip-card {
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.tip-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.tip-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-dark);
}

.tip-card h4 .tip-icon {
  width: 28px;
  height: 28px;
  background: rgba(192, 57, 43, 0.08);
  color: #C0392B;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.tip-card ul {
  list-style: none;
}

.tip-card ul li {
  font-size: 0.8125rem;
  color: var(--text-light);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}

.tip-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: #C0392B;
  border-radius: 50%;
}

/* ============================================
   生态数据展示
   ============================================ */
.eco-section {
  padding: 48px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.eco-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.eco-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.eco-card .eco-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  font-family: inherit;
}

.eco-card .eco-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.eco-card .eco-tag {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(26, 67, 43, 0.08);
  color: var(--primary);
  font-size: 0.6875rem;
  border-radius: 3px;
  font-weight: 500;
}

/* ============================================
   文化故事
   ============================================ */
.story-section {
  padding: 48px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.story-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.story-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.story-card p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.7;
}

.story-card .story-tag {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(26, 67, 43, 0.06);
  color: var(--primary);
  font-size: 0.6875rem;
  margin-bottom: 10px;
  border-radius: 3px;
  font-weight: 500;
}

/* ============================================
   土家风情
   ============================================ */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.culture-card {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.culture-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.culture-img {
  width: 160px;
  min-width: 160px;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}

.culture-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.culture-card:hover .culture-img img {
  transform: scale(1.05);
}

.culture-info {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.culture-info h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-weight: 600;
}

.culture-info p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ============================================
   响应式布局
   ============================================ */
@media (max-width: 1200px) {
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .about-grid {
    gap: 32px;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .food-grid,
  .hotel-grid {
    grid-template-columns: 1fr;
  }

  .food-card,
  .hotel-card {
    flex-direction: column;
  }

  .food-img,
  .hotel-img {
    width: 100%;
    height: 180px;
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .map-sidebar {
    flex-direction: row;
    gap: 20px;
  }

  .map-info-panel,
  .checklist-panel {
    flex: 1;
  }

  .wallpaper-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .itinerary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eco-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .culture-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-menu { display: none; }
  .hamburger { display: flex; }

  .hero-slider {
    height: 70vh;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .page-hero {
    height: 280px;
  }

  .page-hero-content h1 {
    font-size: 1.625rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .highlight-card {
    padding: 20px 14px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    aspect-ratio: 16/9;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .attractions-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-grid.reverse {
    direction: ltr;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-item {
    grid-template-columns: 1fr;
  }

  .news-item-img {
    aspect-ratio: 16/9;
    min-height: auto;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-header h2 {
    font-size: 1.25rem;
  }

  .container,
  .container-wide {
    padding: 0 16px;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quick-link-card {
    padding: 22px 18px;
  }

  .booking-page,
  .confirm-page {
    padding: 32px 0 40px;
  }

  .booking-panel {
    padding: 18px;
  }

  .ticket-item {
    flex-wrap: wrap;
    gap: 8px;
  }

  .ticket-info {
    width: 100%;
  }

  .confirm-card {
    padding: 28px 20px;
  }

  .map-sidebar {
    flex-direction: column;
  }

  .wallpaper-grid {
    grid-template-columns: 1fr;
  }

  .itinerary-grid {
    grid-template-columns: 1fr;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .eco-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .culture-card {
    flex-direction: column;
  }

  .culture-img {
    width: 100%;
    height: 180px;
  }

  .booking-reminder {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .booking-reminder .reminder-icon {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-slider {
    height: 60vh;
    min-height: 340px;
  }

  .hero-content h1 {
    font-size: 1.625rem;
  }

  .hero-content p {
    font-size: 0.875rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    height: 240px;
  }

  .page-hero-content h1 {
    font-size: 1.375rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8125rem;
  }

  .section-header h2 {
    font-size: 1.125rem;
  }

  .modal-body {
    padding: 20px;
  }

  .news-detail-header h1 {
    font-size: 1.375rem;
  }

  .food-grid,
  .hotel-grid {
    gap: 16px;
  }

  .food-img,
  .hotel-img {
    height: 160px;
  }

  .eco-grid {
    grid-template-columns: 1fr;
  }

  .season-tags {
    justify-content: center;
  }

  .vr-viewer {
    height: 360px;
  }
}

/* 滚动条美化 */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* 图片加载失败占位 */
img[src=""]::after,
img:not([src])::after {
  content: '壶瓶山';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--border);
  color: var(--accent);
  font-size: 0.8125rem;
}

/* JS用类名占位 */
.modal-title,
.modal-desc,
.modal-best-time,
.modal-duration,
.modal-tips { }
.adult-count,
.student-count,
.senior-count,
.child-count { color: var(--primary); }
.minus, .plus { }
.footer-logo,
.footer-links,
.footer-desc { }
.news-cat-btn { }
