/* ============================================================
   土家之魂 · TUJIA HERITAGE — 样式表
   与 HTML 完全分离
   ============================================================ */

/* ---------- 全局重置 ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Georgia", "Times New Roman", "Songti SC", "SimSun", serif;
  color: #2c241e;
  background-color: #faf7f2;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 730px;
  height: 90vh;
  background: url("assets/shouye.png") center / cover no-repeat;
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right, 
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.5) 80%,
    rgba(0, 0, 0, 0.7) 100%     /* 最右侧几乎全黑 */
  );
  z-index: 1;
}

/* ---------- Navigation ---------- */
.navbar {
  position: relative; 
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem; 
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.logo-cn {
  font-size: 1.05rem;
  letter-spacing: 2px;
  font-weight: 700;
  color:#A83F2C
}

.logo-en {
  font-size: 0.55rem;
  letter-spacing: 2px;
  opacity: 0.65;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.nav-links {
  position: absolute;
  /* 核心计算：视口位置 = 100% - 780px + 5rem，再减去 navbar 的左内边距 3rem */
  left: calc(100% - 780px + 5rem - 3rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 2.2rem;
  white-space: nowrap; /* 防止导航项换行 */
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 2px;
  opacity: 0.8;
  transition: opacity 0.3s;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.nav-links a:hover {
  opacity: 1;
}

/* ---------- Hero content ---------- */
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 0 3rem 4rem 5rem;
  max-width: 780px;
  margin-left: auto;
}

.hero-content h1 {
  font-size: 2.9rem;
  line-height: 1.28;
  font-weight: 400;
  margin-bottom: 1.3rem;
  letter-spacing: 0.5px;
}

.hero-line-gold {
  display: block;
  color: #A83F2C;
}

.hero-line-white {
  display: block;
  color: #A83F2C;
}

.hero-content p {
  font-size: 0.82rem;
  max-width: 420px;
  margin-bottom: 1.8rem;
  opacity: 0.88;
  line-height: 1.9;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.btn-hero {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  transition: all 0.35s ease;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
   border-radius:4px; 
}


.btn-hero:hover {
  background: #A83F2C; /* 换成你的主题红 */
  color: #ffffff;      /* 文字改成白色 */
}

/* ============================================================
   TUJIA HERITAGE INTRO
   ============================================================ */
.section-intro {
  text-align: center;
  padding: 5.5rem 2rem 5rem;
  background-color: #faf7f2;
}

.btn-intro:hover {
  background: #8e2f2f;
}

/* /打字机光标闪烁效果，加在这里即可 */ 
.typing-cursor::after {
  content: "|";
  animation: blink 0.8s infinite;
  font-weight: 300;
  margin-left: 3px;
  color: #6b5e53;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.intro-heading {
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 1.3rem;
}

.intro-desc {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 0.8rem;
  color: #6b5e53;
  line-height: 2;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.btn-intro {
  display: inline-block;
  padding: 0.65rem 1.7rem;
  font-size: 0.72rem;
  letter-spacing: 2px;
  background: #a83a3a;
  color: #fff;
  transition: background 0.35s ease;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  border-radius: 4px;
}

.btn-intro:hover {
  background: #8e2f2f;
   border-radius: 4px;
}

/* ============================================================
   THREE CARDS
   ============================================================ */
.section-cards {
  position: relative; /* 新增：让 logo 以它为定位参考 */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  height: 670px;
}

/* 新增：整个 section 左上角的 logo */
.section-logo {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  z-index: 3; /* 必须在卡片和遮罩之上 */
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  pointer-events: none; /* 不阻挡下方卡片的点击和 hover */
}

/* 中文“土家之魂”——红色 */
.section-logo .logo-cn {
  font-family: "Songti SC", "SimSun", "Georgia", serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b13e3e; /* 与你首页 logo 相同的红色，可按需改成 #A83F2C */
}

/* 英文“TUJIA HERITAGE”——白色 */
.section-logo .logo-en {
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: #ffffff;
  opacity: 0.85;
}

.card {
  position: relative;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover img {
  transform: scale(1.04);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.05) 65%
  );
}

/* 文字容器：在卡片中水平 + 垂直居中 */
.card-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  pointer-events: none; 
  width: 90%;
}

/* 大字（原来 card-label 的样式，改成 display: block） */
.card-label {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 4px;
  font-weight: 400;
  margin-bottom: 0.9rem; /* 👈 大字与小字之间的行间距 */
}

/* 新增的小字 */
.card-sub {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1px;
  line-height: 1.6;
  opacity: 0.85;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* Travel card search box */
.card-search {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  padding: 0.45rem 0.8rem;
}

.card-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.75rem;
}

.search-icon {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ============================================================
   TRADITIONAL FOLK LIFE
   ============================================================ */
.section-folklife {
  padding: 5.5rem 2rem 4rem;
  text-align: center;
  background-color: #faf7f2;
}

.folklife-heading {
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 2.5rem; 
  text-align: center;    
  position: relative;    
}

.folklife-heading::after {
  content: "";
  display: block;          /* 独占一行，位于 h2 下方 */
  width: 40px;             /* 宽 40px */
  height: 2px;             /* 高 2px */
  background-color: #000;  /* 黑色 */
  margin: 1rem auto 0;     /* 上间距 1rem，水平居中 */
}

.photo-stack {
  position: relative;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding-top: 40px;
}

.photo-stack-back {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  height: 60px;
  background: #A83F2C;
}

.photo-stack {
  position: relative;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding-top: 40px;
  /* 保留原来 photo-stack 的背景装饰 */
}

.photo-stack-back {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  height: 60px;
  background: #d9cfc2;
}

/* 轮播窗口 */
.slideshow {
  position: relative;
  width: 82%;
  margin: 0 auto;
  aspect-ratio: 9 / 5;      /* 900x500 的比例，换成其他比例可以改 */
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
  background: #000;
}

/* 每张图片叠在同一个位置，默认隐藏 */
.slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease; /* 淡入淡出时长 */
}

/* 当前显示的图片 */
.slideshow .slide.active {
  opacity: 1;
}

/* 左右切换按钮 */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}

.slide-prev {
  left: 12%;
}

.slide-next {
  right: 12%;
}

/* 底部小圆点 */
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.slide-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cfc5b8;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.slide-dots .dot.active {
  background: #b13e3e; /* 主题红 */
  transform: scale(1.25);
}

.stack-arrow {
  display: block;
  text-align: center;
  font-size: 3rem;
  line-height: 1;
  color: #a83a3a;
  cursor: pointer;            
  margin-top: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
  user-select: none;
}

.stack-arrow:hover {
  transform: translateY(6px);   
  color: #8e2f2f;
}

/* ============================================================
   THREE GREAT CULTURAL TREASURES
   ============================================================ */

.section-treasures {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4rem;
  background-color: #f7f6f2;
  gap: 4rem;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* ---------- 左侧文字 ---------- */
.treasures-left {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 1rem;
  align-self: stretch;   /* 撑满高度，让按钮能贴到底部 */
  min-height: 420px;      /* 与右侧画廊高度匹配 */
}

.treasures-num-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.treasures-num {
  font-size: 5.5rem;
  line-height: 1;
  color: #b13e3e;
  font-weight: 700;
  font-family: "Georgia", serif;
}

.treasures-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.25;
  color: #2b2b2b;
  letter-spacing: 1px;
  margin: 0;
  padding-top: 0.4rem;
}

.btn-journey {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #b13e3e;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.btn-journey:hover {
  background-color: #8e2f2f;
}

/* ---------- 右侧画廊 ---------- */
.treasures-gallery {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;   /* 整体靠右，视觉上更紧凑 */
  gap: 1.2rem;                 /* 👈 卡片之间的间距 */
}

/* 图片卡片基础样式 */
.treasure {
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.treasure img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  display: block;
}

/* 说明文字：与图片同宽、左对齐、自动换行 */
.treasure figcaption {
  font-size: 0.7rem;
  color: #555;
  line-height: 1.55;
  margin-top: 0.7rem;
  font-weight: 500;
  text-align: center; 
  width: 100%;
  word-break: break-word;
}

/* 让“01)”这种序号变红（若用纯文本则整行受影响） */
.treasure figcaption::first-line {
  color: #b13e3e;
  font-weight: 600;
}

/* ---------- 三张卡片的尺寸与错落 ---------- */

/* 01 西兰卡普：较窄高，顶部对齐 */
.treasure-01 {
  width: 28%;    /* 👈 从 36% 缩小到 28% */
}

/* 02 吊脚楼：较宽扁，向下偏移 */
.treasure-02 {
  width: 34%;    /* 👈 从 46% 缩小到 34% */
  margin-top: 110px;
}

/* 03 摆手舞：窄高，略微下移 */
.treasure-03 {
  width: 26%;    /* 👈 从 32% 缩小到 26% */
  margin-top: 30px;
}

/* 悬停微浮起 */
.treasure:hover {
  transform: translateY(-5px);
}

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .section-treasures {
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 3rem;
  }

  .treasures-left {
    flex: none;
    width: 100%;
    min-height: auto;
  }

  .treasures-gallery {
    width: 100%;
    justify-content: center;
    gap: 1.5rem;
  }

  .treasure-01,
  .treasure-02,
  .treasure-03 {
    width: 30%;
    margin-top: 0;
  }

  .treasure-02 {
    margin-top: 60px;
  }

  .treasure-03 {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .treasures-gallery {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .treasure-01,
  .treasure-02,
  .treasure-03 {
    width: 80%;
    max-width: 360px;
    margin-top: 0;
  }
}
/* ============================================================
   FEATURE BLOCKS (01 / 02 / 03)
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background-color: #faf7f2;
}

.feature-left-img,
.feature-right-img {
  position: relative;
  overflow: hidden;
}

.feature-left-img img,
.feature-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-left-text,
.feature-right-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 4.5rem;
}

/* 01 — Xilankapu: left img, right text */
.feature-01 .feature-right-text {
  background-color: #f4efe8;
}

/* 02 — Baishou Dance: left text, right img */
.feature-02 .feature-left-text {
  background-color: #faf7f2;
}

/* 03 — Diaojiaolou: left img, right text */
.feature-03 .feature-right-text {
  background-color: #f4efe8;
}

.feature-title {
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.feature-num {
  font-size: 4.2rem;
  color: #a83a3a;
  line-height: 1;
  font-weight: 700;
  font-family: "Georgia", serif;
  margin-bottom: 0.6rem;
}

.feature-quote {
  font-size: 0.85rem;
  color: #8a7a6c;
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-style: italic;
}

.feature-body {
  font-size: 0.8rem;
  color: #5a4d42;
  line-height: 1.95;
  max-width: 440px;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* Diaojiaolou image caption */
.feature-img-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 3px;
  font-family: "Georgia", serif;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.caption-cn {
  font-size: 1.1rem;
}

/* ============================================================
   SEASONAL FESTIVALS
   ============================================================ */
.festivals-section {
  width: 100%;
}

/* ---------- 顶部浅色标题区 ---------- */
.festivals-header {
  position: relative;
  background-color: #f7f6f2;
  padding: 3rem 2rem 3.5rem;
  text-align: center;
}

/* 左上角 Logo */
.festivals-logo {
  position: absolute;
  top: 1.5rem;
  left: 3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.festivals-logo-cn {
  font-family: "Songti SC", "SimSun", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #b13e3e;
  letter-spacing: 2px;
}

.festivals-logo-divider {
  color: #ccc;
  font-size: 0.8rem;
}

.festivals-logo-en {
  font-size: 0.6rem;
  color: #b13e3e;
  letter-spacing: 2px;
  opacity: 0.7;
}

/* 主标题 */
.festivals-heading {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  color: #222;
  letter-spacing: 1px;
  margin-top: 1rem;
}

/* 标题下方黑色短下划线 */
.festivals-underline {
  width: 40px;
  height: 2px;
  background-color: #000;
  margin: 1.2rem auto 0;
}

/* ---------- 底部深色图片内容区 ---------- */
.festivals-content {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
              url('assets/11.png') center/cover no-repeat;
  padding: 8rem 2rem 9rem;
  color: #fff;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.festivals-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 顶部引言 */
.festivals-intro {
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.8;
  letter-spacing: 0.5px;
  opacity: 0.9;
  max-width: 850px;
  margin: 0 auto 4rem;
  text-transform: uppercase;
}

/* 左右两列 */
.festivals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.festival-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #d95545;
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

.festival-item p {
  font-size: 0.82rem;
  line-height: 1.8;
  opacity: 0.85;
  font-weight: 300;
}

/* ---------- 响应式 ---------- */
@media (max-width: 768px) {
  .festivals-logo {
    position: static;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .festivals-heading {
    font-size: 1.6rem;
  }

  .festivals-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .festivals-intro {
    font-size: 0.8rem;
    margin-bottom: 3rem;
  }
}
/* ============================================================
   GATHERING AROUND THE FIRE
   ============================================================ */
.section-gathering {
  padding: 4rem 2rem;
  background-color: #faf7f2;
}

.gathering-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.gathering-img-left {
  width: 58%;
  border: 5px solid #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.gathering-img-right {
  width: 48%;
  margin-left: -10%;
  margin-top: 3rem;
  border: 5px solid #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

/* ============================================================
   SONGS OF THE VALLEY
   ============================================================ */
.songs-section {
  position: relative;
  background-color: #f7f6f2; /* 浅米色背景 */
  padding: 6rem 2rem 5rem;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  overflow: hidden;
}

/* ---------- 左上角 Logo ---------- */
.songs-logo {
  position: absolute;
  top: 2rem;
  left: 3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.songs-logo-cn {
  font-family: "Songti SC", "SimSun", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #b13e3e;
  letter-spacing: 2px;
}

.songs-logo-divider {
  color: #ccc;
  font-size: 0.8rem;
}

.songs-logo-en {
  font-size: 0.6rem;
  color: #b13e3e;
  letter-spacing: 2px;
  opacity: 0.7;
}

/* ---------- 主容器 ---------- */
.songs-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* 双栏网格 */
.songs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

/* ---------- 左侧文字 ---------- */
.songs-heading {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #222;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.songs-subheading {
  font-size: 0.9rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
  margin-bottom: 2.5rem;
}

.songs-text p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.songs-text p:last-child {
  margin-bottom: 0;
}

/* ---------- 右侧图片与红色装饰块 ---------- */
.songs-image-wrapper {
  position: relative;
  padding: 0 1.5rem 1.5rem 0; /* 给红色块留出空间 */
}

/* 红色装饰块（在图片后面，偏右下） */
.songs-red-block {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 110px;
  height: 220px;
  background-color: #b13e3e; /* 主题红 */
  z-index: 0;
}

/* 图片（压在红色块上方） */
.songs-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* 轻微阴影 */
  border-radius: 4px;
}

/* ---------- 底部两行标注 ---------- */
.songs-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #e0ddd6; /* 可选：加一条极淡的分隔线 */
}

.songs-bullet-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.3px;
}

.songs-dot {
  width: 12px;
  height: 12px;
  background-color: #b13e3e;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .songs-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .songs-section {
    padding: 5rem 1.5rem 4rem;
  }

  .songs-logo {
    position: static;
    justify-content: center;
    margin-bottom: 2.5rem;
  }

  .songs-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .songs-heading {
    font-size: 2rem;
  }

  .songs-image-wrapper {
    padding: 0 1rem 1rem 0;
  }

  .songs-red-block {
    width: 80px;
    height: 160px;
  }

  .songs-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* ============================================================
   FLAVORS FROM THE DEEP MOUNTAINS
   ============================================================ */
.section-food {
  padding: 4.5rem 2rem 5.5rem;
  background-color: #faf7f2;
  max-width: 1200px;
  margin: 0 auto;
}

.food-label {
  font-size: 0.7rem;
  color: #a83a3a;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.food-heading {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.food-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.food-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.food-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.food-card-body {
  padding: 0.8rem 1rem 1.2rem;
}

.food-tag {
  display: inline-block;
  background-color: #a83a3a;
  color: #fff;
  font-size: 0.62rem;
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.food-card-body h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

.food-card-body p {
  font-size: 0.72rem;
  color: #6b5e53;
  line-height: 1.7;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: #8e2f2f;
  color: #fff;
  text-align: center;
  padding: 3rem 2rem 2.2rem;
}

.footer-logo {
  font-size: 1.15rem;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 1rem;
}

.footer-logo-en {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-top: 0.3rem;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.footer-line {
  font-size: 0.78rem;
  opacity: 0.82;
  line-height: 1.9;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.3rem 0;
}

.footer-links a {
  font-size: 0.72rem;
  opacity: 0.72;
  letter-spacing: 1px;
  transition: opacity 0.3s;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 0.65rem;
  opacity: 0.45;
  margin-top: 1.2rem;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content {
    padding: 0 3.5rem 3.5rem 2rem;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .section-treasures {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .treasures-left {
    text-align: center;
  }

  .treasures-num-row {
    justify-content: center;
  }

  .feature-left-text,
  .feature-right-text {
    padding: 3rem;
  }

  .food-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.68rem;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem 3rem;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .section-cards {
    grid-template-columns: 1fr;
    height: auto;
  }

  .card {
    height: 300px;
  }

  .feature {
    grid-template-columns: 1fr;
  }

  .feature-02 {
    direction: ltr;
  }

  .feature-left-text,
  .feature-right-text {
    padding: 2.5rem 1.8rem;
  }

  .songs-inner {
    grid-template-columns: 1fr;
  }

  .festivals-text {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .festivals-inner {
    padding: 2.5rem 1.8rem;
  }

  .gathering-inner {
    flex-direction: column;
    align-items: center;
  }

  .gathering-img-left,
  .gathering-img-right {
    width: 85%;
    margin-left: 0;
  }

  .gathering-img-right {
    margin-top: -2rem;
  }

  .treasures-gallery {
    grid-template-columns: 1fr;
  }

  .treasure-01,
  .treasure-02,
  .treasure-03 {
    grid-column: 1;
    grid-row: auto;
  }

  .food-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .intro-heading,
  .folklife-heading,
  .festivals-heading {
    font-size: 1.5rem;
  }

  .food-heading {
    font-size: 1.3rem;
  }

  .feature-title {
    font-size: 1.4rem;
  }

  .feature-num {
    font-size: 3rem;
  }

  .treasures-num {
    font-size: 3.8rem;
  }

  .treasures-title {
    font-size: 1.3rem;
  }
}