/* ============================================
   野生真菌探索与高端珍稀食材觅猎网 - 主样式表
   视觉风格：原始森林苔藓绿+松露泥土褐
   ============================================ */

:root {
  --color-primary: #4A3B2C;
  --color-secondary: #6B8E23;
  --color-bg: #FDFBF7;
  --color-card: #F4EFE6;
  --color-text: #2C1A0A;
  --color-danger: #8B0000;
  --color-gold: #C5A03F;
  --color-white: #FFFFFF;
  --font-heading: "Noto Serif SC", "SimSun", serif;
  --font-body: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --shadow-soft: 0 4px 20px rgba(74, 59, 44, 0.1);
  --shadow-card: 0 2px 12px rgba(74, 59, 44, 0.08);
  --radius: 8px;
  --max-width: 1200px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  overflow-x: hidden;
}

/* 树叶阴影光影效果 */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cellipse cx='60' cy='80' rx='30' ry='15' fill='rgba(107,142,35,0.03)' transform='rotate(-20 60 80)'/%3E%3Cellipse cx='150' cy='40' rx='25' ry='12' fill='rgba(107,142,35,0.02)' transform='rotate(15 150 40)'/%3E%3Cellipse cx='100' cy='160' rx='35' ry='14' fill='rgba(107,142,35,0.025)' transform='rotate(-10 100 160)'/%3E%3C/svg%3E") repeat;
  animation: leafShadow 8s ease-in-out infinite;
}

@keyframes leafShadow {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(5px, 3px); }
  50% { transform: translate(-3px, 5px); }
  75% { transform: translate(3px, -2px); }
}

/* 排版 */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.4;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

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

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

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

/* 容器 */
.cca58c8a0 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.c89ee81b8 {
  padding: 4rem 0;
}

.cb69b6d5a {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.cb69b6d5a::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-gold));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* 导航栏 */
.c6f468480 {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 59, 44, 0.1);
  padding: 0.8rem 0;
}

.c0f641c01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.c83560c92 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c83560c92 img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.ce1d276cd {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

.ce1d276cd a {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
}

.ce1d276cd a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.ce1d276cd a:hover::after,
.ce1d276cd a.c5bc03030::after {
  width: 100%;
}

.c0911a07d {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.c0911a07d span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

/* Hero区域 */
.c6b48b297 {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(74, 59, 44, 0.85), rgba(44, 26, 10, 0.7));
}

.cb52f99cd {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.c1b7683a6 {
  text-align: center;
  color: var(--color-white);
  z-index: 2;
  padding: 2rem;
}

.c1b7683a6 h1 {
  font-size: 3.5rem;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.c1b7683a6 .c5eee675b {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

.cf02c4a93 {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-secondary), #4a7a1a);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

.cf02c4a93:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(107, 142, 35, 0.4);
  color: var(--color-white);
}

/* 孢子粒子效果 */
.c05c7047e {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.spore {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--color-gold), transparent);
  border-radius: 50%;
  animation: sporeFloat 6s ease-in-out infinite;
}

@keyframes sporeFloat {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  20% { opacity: 1; transform: scale(1); }
  100% { transform: translateY(-200px) translateX(50px) scale(0); opacity: 0; }
}

/* 卡片组件 */
.ca959a983 {
  background: var(--color-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

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

.c64bdbf6d {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.ca959a983:hover .c64bdbf6d img {
  transform: scale(1.05);
}

.c46baa09e {
  padding: 1.5rem;
}

.c61b99830 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.c6bf60eb2 {
  font-size: 0.9rem;
  color: rgba(44, 26, 10, 0.7);
  line-height: 1.7;
}

/* 网格布局 */
.cb4ca59a6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.cfee6bb90 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* 当季预售模块 */
.c54b64918 {
  background: linear-gradient(180deg, var(--color-card), var(--color-bg));
}

.c8e5d5122 {
  position: relative;
  border: 2px solid rgba(107, 142, 35, 0.2);
}

.c628c3fbe {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.c363a4845 {
  display: flex;
  gap: 0.5rem;
  margin: 0.8rem 0;
}

.c908d6c5b {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* 致命诱惑警告模块 */
.c9726ae54 {
  background: linear-gradient(135deg, #1a0000, #2d0000);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.c9726ae54::before {
  content: "⚠";
  position: absolute;
  top: -50px;
  right: -50px;
  font-size: 200px;
  opacity: 0.05;
}

.c9726ae54 h2 {
  color: #FF4444;
}

.c73d50253 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.c06695556 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 68, 68, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.c06695556 .ca176909a {
  text-align: center;
  color: #FF4444;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* 主厨菜谱模块 */
.c0fa0a3f9 {
  background: var(--color-card);
}

.c7a88a63c {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.c7a88a63c img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* 猎人风采模块 */
.c69417970 {
  position: relative;
}

.cd298ca86 {
  text-align: center;
  padding: 2rem;
}

.cd298ca86 img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--color-secondary);
}

/* 生态保护模块 */
.c3a77eae9 {
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.1), rgba(74, 59, 44, 0.05));
  border-top: 3px solid var(--color-secondary);
}

.cb1120bf6 {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.cb1120bf6 img {
  width: 45%;
  border-radius: var(--radius);
}

.c126de475 {
  flex: 1;
}

/* 面包屑导航 */
.cb2f0e2b0 {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: rgba(44, 26, 10, 0.6);
}

.cb2f0e2b0 a {
  color: var(--color-secondary);
}

.cb2f0e2b0 span {
  margin: 0 0.5rem;
}

/* 页脚 */
.c3e5ab59d {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
}

.c67a93d4e {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.c1b62b65e h4 {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.c1b62b65e ul {
  list-style: none;
}

.c1b62b65e ul li {
  margin-bottom: 0.5rem;
}

.c1b62b65e ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.c1b62b65e ul li a:hover {
  color: var(--color-white);
}

.c0e88b4c4 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* 泥土拨开加载动画 */
.c4621155a {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.c4621155a.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 图片加载泥土动画 */
.img-loading {
  position: relative;
  overflow: hidden;
}

.img-loading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #8B6914, #5C4A1E, transparent);
  transform: translateY(0);
  animation: dirtReveal 1s ease forwards;
}

@keyframes dirtReveal {
  0% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* 金色孢子悬停特效 */
.c1809d390 {
  position: relative;
  overflow: visible;
}

.c1809d390:hover .spore-effect {
  opacity: 1;
}

.spore-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* 按钮样式 */
.cdf260a4d {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

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

.ce660ed31:hover {
  background: #5a7a1e;
  transform: translateY(-2px);
  color: var(--color-white);
}

.c55cb2117 {
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  background: transparent;
}

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

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

/* 搜索框 */
.cf58d453f {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

.cf58d453f input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(74, 59, 44, 0.2);
  border-radius: 50px 0 0 50px;
  font-size: 1rem;
  background: var(--color-white);
  outline: none;
  transition: var(--transition);
}

.cf58d453f input:focus {
  border-color: var(--color-secondary);
}

.cf58d453f button {
  padding: 1rem 2rem;
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
  border-radius: 0 50px 50px 0;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.cf58d453f button:hover {
  background: #5a7a1e;
}

/* 内页样式 */
.c7b9aef37 {
  background: linear-gradient(135deg, var(--color-primary), #2C1A0A);
  color: var(--color-white);
  padding: 4rem 0 3rem;
  text-align: center;
}

.c7b9aef37 h1 {
  color: var(--color-white);
  font-size: 2.5rem;
}

.c7b9aef37 p {
  opacity: 0.8;
  max-width: 600px;
  margin: 1rem auto 0;
}

.ccfd015b2 {
  padding: 3rem 0;
}

.ccfd015b2 article {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ样式 */
.c485956b2 {
  border-bottom: 1px solid rgba(74, 59, 44, 0.1);
  padding: 1.5rem 0;
}

.c80604050 {
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c0aef5bac {
  margin-top: 1rem;
  color: rgba(44, 26, 10, 0.7);
  line-height: 1.8;
}

/* 合规页面 */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.legal-content h2 {
  margin-top: 2rem;
}

.legal-content p, .legal-content li {
  color: rgba(44, 26, 10, 0.8);
}

/* 404页面 */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page h1 {
  font-size: 8rem;
  color: var(--color-secondary);
  opacity: 0.3;
}

.error-page h2 {
  margin-bottom: 1rem;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .c67a93d4e { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
  
  .ce1d276cd {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
  }
  
  .ce1d276cd.c5bc03030 { display: flex; }
  .c0911a07d { display: flex; }
  
  .cb4ca59a6, .cfee6bb90 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  
  .c1b7683a6 h1 { font-size: 2.2rem; }
  .c1b7683a6 .c5eee675b { font-size: 1rem; }
  
  .c73d50253 { grid-template-columns: 1fr; }
  
  .c7a88a63c {
    flex-direction: column;
  }
  .c7a88a63c img { width: 100%; }
  
  .cb1120bf6 {
    flex-direction: column;
  }
  .cb1120bf6 img { width: 100%; }
  
  .c67a93d4e { grid-template-columns: 1fr; }
  
  .c89ee81b8 { padding: 2.5rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .c6b48b297 { min-height: 500px; }
  .c1b7683a6 h1 { font-size: 1.8rem; }
  .c363a4845 { flex-wrap: wrap; }
}

/* 打印样式 */
@media print {
  .c6f468480, .c3e5ab59d, .c6b48b297 { display: none; }
  body { background: white; color: black; }
}
