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

: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;
}

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

.c649f7a6b {
  padding: 4rem 0;
}

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

.c3481a1de::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;
}

/* 导航栏 */
.ccf5dc574 {
  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;
}

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

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

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

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

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

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

.c750d7a99 a:hover::after,
.c750d7a99 a.c916a86e6::after {
  width: 100%;
}

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

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

/* Hero区域 */
.cdfe59165 {
  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));
}

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

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

.cfec96681 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;
}

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

.c863b7821 {
  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);
}

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

/* 孢子粒子效果 */
.c8ba9592f {
  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; }
}

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

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

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

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

.c5481ebe1:hover .c5e2951bf img {
  transform: scale(1.05);
}

.cffc9a6d9 {
  padding: 1.5rem;
}

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

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

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

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

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

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

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

.c3239f266 {
  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;
}

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

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

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

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

.c5119c243 h2 {
  color: #FF4444;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c6ec3e90f {
  flex: 1;
}

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

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

.cbd184427 span {
  margin: 0 0.5rem;
}

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

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

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

.c6faaef12 ul {
  list-style: none;
}

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

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

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

.c0a93aed8 {
  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);
}

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

.c00b92e18.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%); }
}

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

.ca5a1f43c: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;
}

/* 按钮样式 */
.c2c86658e {
  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;
}

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

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

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

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

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

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

.c0ad2e2f4 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);
}

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

.c0ad2e2f4 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);
}

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

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

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

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

.c4c330d3f {
  padding: 3rem 0;
}

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

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

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

.c20c77ece {
  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); }
  .c38a039f3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
  
  .c750d7a99 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
  }
  
  .c750d7a99.c916a86e6 { display: flex; }
  .c6cd952d2 { display: flex; }
  
  .c0c34d729, .c223a5e59 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  
  .cfec96681 h1 { font-size: 2.2rem; }
  .cfec96681 .c415f1d52 { font-size: 1rem; }
  
  .c09d67272 { grid-template-columns: 1fr; }
  
  .c869aca8c {
    flex-direction: column;
  }
  .c869aca8c img { width: 100%; }
  
  .cdae3b8ab {
    flex-direction: column;
  }
  .cdae3b8ab img { width: 100%; }
  
  .c38a039f3 { grid-template-columns: 1fr; }
  
  .c649f7a6b { padding: 2.5rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

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

/* 打印样式 */
@media print {
  .ccf5dc574, .c60fa0ef9, .cdfe59165 { display: none; }
  body { background: white; color: black; }
}
