/* Base */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial,
               "PingFang SC", "Microsoft YaHei",
               "Noto Sans SC", sans-serif;
  line-height: 1.6;
  background: url("../images/picture5.jpg") no-repeat center center fixed;
  background-size: cover;
}

.container {
  width: min(1100px, 90%);
  margin: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
  z-index: 9999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  color: black;
  letter-spacing: 0.2px;
}

/* Nav */
.nav{
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav a{
  text-decoration: none;
  color: black;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover{
  background: rgba(0,0,0,0.06);
}

/* Language dropdown */
.lang-menu{
  position: relative;
}

.lang-toggle{
  display: inline-block;
}

.lang-dropdown{
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: white;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  min-width: 140px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.lang-dropdown a{
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: #111;
}

.lang-dropdown a:hover{
  background: rgba(0,0,0,0.05);
}

/* Hero */
.hero{
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: url("../images/picture4.jpg") center/cover no-repeat;
}

/* hero overlay */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.55);
}

.hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 34px 26px;
  background: rgba(0,0,0,0.22);
  border-radius: 22px;
  backdrop-filter: blur(6px);
}

.hero-content h1{
  margin: 0 0 14px;
  font-size: 48px;
  font-weight: 900;
  text-shadow: 0 6px 20px rgba(0,0,0,0.55);
}

.hero-subtitle{
  max-width: 820px;
  margin: 0 auto 22px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.hero-buttons{
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.hero-btn{
  padding: 14px 34px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: #111 !important;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
}

.hero-btn:hover{
  transform: translateY(-2px);
  background: white;
}

.hero-btn.outline{
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.85);
}

.hero-note{
  margin-top: 18px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 5px 16px rgba(0,0,0,0.65);
}

/* =========================
   Mobile Responsive (商用级)
   ========================= */
@media (max-width: 768px){

  /* Header：上下排 */
  .header-inner{
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .brand{
    font-size: 18px;
    text-align: center;
  }

  /* 导航：两列按钮式 */
  .nav{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .nav a,
  .nav .lang-toggle{
    text-align: center;
    padding: 10px 10px;
    border-radius: 12px;
    background: rgba(0,0,0,0.04);
  }

  /* 语言下拉：手机端静态展开更稳 */
  .lang-dropdown{
    position: static;
    margin-top: 6px;
    border-radius: 12px;
    box-shadow: none;
  }

  /* Hero：高度自适应，标题缩小 */
  .hero{
    height: auto;
    min-height: 78vh;
    padding: 26px 0;
  }

  .hero-content{
    padding: 22px 16px;
    border-radius: 18px;
  }

  .hero-content h1{
    font-size: 32px;
    line-height: 1.15;
  }

  .hero-subtitle{
    font-size: 16px;
    line-height: 1.6;
    max-width: 32ch;
    margin: 0 auto 16px;
  }

  /* 按钮：竖排 */
  .hero-buttons{
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-btn{
    width: min(360px, 90%);
    padding: 14px 18px;
  }

  .hero-note{
    font-size: 14px;
  }
}

/* Sections */
.section {
  padding: 60px 0;
}

.section-title {
  font-size: 28px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}


/* =========================
   服务与价格（左右布局版）
========================= */

#services{
  width: min(1100px, 92vw);
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* 左侧：价格卡片 */
.price-grid{
  display: flex;
  justify-content: center;
}

.price-card{
  width: 100%;
  max-width: 520px;
  padding: 28px;
  border-radius: 18px;

  background: linear-gradient(
  135deg,
  rgba(255,255,255,0.92),
  rgba(255,248,235,0.88));
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  text-align: center;
  position: relative;
overflow: hidden;
}

.price-card::before{
  content:"";
  position:absolute;
  inset:-40px;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255,210,140,0.20),
    transparent 55%
  );
  pointer-events:none;
}

.price-card > *{
  position: relative;
  z-index: 1;
}

.price-card h3{
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #3a2f1c;   /* 深暖色，不用纯黑 */
}

.price-lines{
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.price-line{
  font-size: 26px;
  font-weight: 900;
}

.price-line:first-child{
  font-size: 20px;
  font-weight: 700;
  opacity: 0.8;
}

.list{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 340px;

  font-size: 18px;      /* 原来可能16或17 */
  line-height: 2;       /* 拉开呼吸感 */
  color: #3f3a33;       /* 不要纯黑 */
  letter-spacing: 0.3px;
}

.list li{
  padding-left: 18px;
  position: relative;
  margin: 6px 0;
}

.list li::before{
  content: "•";
  position: absolute;
  left: 0;
  opacity: .6;
}

/* 右侧：说明 + 茶图 */
.service-note{
  padding: 16px;
  border-radius: 16px;

  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  font-size: 16px;
  line-height: 1.8;
}

.tea-photo{
  margin-top: 14px;
}

.tea-photo img{
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 10;
object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  display: block;
}

/* 手机：自动上下 */
@media (max-width: 900px){
  #services{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-note{
    text-align: center;
  }

  .tea-photo img{
    margin: 0 auto;
  }
}



/* =========================
   足部反射区模块 Reflexology
========================= */

.reflexology-section{
  width: min(1100px, 92vw);
  margin: 90px auto;
  text-align: center;
}

.reflexology-title{
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .6px;
}

.reflexology-subtitle{
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  opacity: .85;
}

.reflexology-image{
  display: flex;
  justify-content: center;
}

.reflexology-image img{
  width: min(900px, 100%);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  display: block;
}

.reflexology-description{
  margin: 30px auto 0;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.9;
  opacity: 0.9;
}

/* 手机适配 */
@media (max-width: 900px){
  .reflexology-title{
    font-size: 26px;
  }
  .reflexology-subtitle{
    font-size: 15px;
  }
}

/* 地址 + 地图布局 */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  margin-top: 20px;
}

.info-card {
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  padding: 16px;
  background: white;
}

.hours {
  padding-left: 18px;
  margin: 0 0 12px;
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
}
/* 门口照片区域 */
.storefront-row {
  max-width: 900px;
  margin: 20px auto;
  background: rgba(255,255,255,0.82);
  border-radius: 18px;
  padding: 14px 16px 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* 门口照片并排 */
.storefront-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* ✅统一图片大小关键 */
.storefront-photos img{
  width: 100%;
  height: 240px;              /* ✅更高，显示更多内容 */
  object-fit: cover;
  object-position: center top; /* ✅优先保留上方招牌 */
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}



/* 手机端自动上下排列 */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .map-wrap iframe {
    height: 360px;
  }
}
/* Contact 极简联系方式 */
.contact-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  background: white;
  max-width: 520px;
}

.contact-box p {
  margin: 8px 0;
}

.contact-box a {
  color: black;
  text-decoration: underline;
}
/* 语言下拉菜单（导航栏同风格） */
.lang-menu {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  text-decoration: none;
  color: black;
}

.lang-dropdown {
  display: none;              /* 默认隐藏 */
  position: absolute;
  top: 28px;
  right: 0;
  min-width: 120px;
  background: white;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  z-index: 9999;
}

.lang-dropdown a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: black;
  margin: 2px 0;
}

.lang-dropdown a:hover {
  background: rgba(0,0,0,0.06);
}
/* 统一 Services 卡片字体/字重，避免显示不一致 */
#services, 
#services * {
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

#services .price-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}

#services .price {
  font-weight: 700;
}

#services li {
  font-weight: 500;
}


@media (max-width: 768px){

  /* Header：上下排 */
  .header-inner{
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .brand{
    font-size: 18px;
    text-align: center;
    font-weight: 900;
  }

  /* ✅ 重点：不滚动，网格两行显示（3 + 2） */
  .nav{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    overflow: visible;     /* ✅ 禁止横向滚动 */
    padding: 0;
    justify-items: stretch;
    align-items: stretch;
  }

  /* 让“语言”这个 div 也像普通按钮一样占一格 */
  .lang-menu{
    margin: 0;
  }

  /* 每个按钮统一高度/圆角/风格，更整齐 */
  .nav > a,
  .nav .lang-toggle{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
    color: #111;
    font-weight: 800;
    font-size: 14px;
  }

  /* ✅ 两行布局更“对称”：第二行只有两个按钮时居中 */
  .nav > a:nth-child(4){
    grid-column: 1 / span 1;
  }
  .nav .lang-menu{
    grid-column: 2 / span 1;
  }

  /* 超小屏再降一档：两列更保险（不会挤） */
  @media (max-width: 420px){
    .nav{
      grid-template-columns: repeat(2, 1fr);
    }
    .nav > a:nth-child(4),
    .nav .lang-menu{
      grid-column: auto;
    }
  }
}

/* ✅ 只改手机端背景质感 */
@media (max-width: 768px){
  body{
    /* 叠一层柔和渐变，让背景不单调、文字更高级更清晰 */
    background:
      linear-gradient(
        to bottom,
        rgba(255,245,230,0.88) 0%,
        rgba(255,255,255,0.78) 40%,
        rgba(255,255,255,0.78) 100%
      ),
      url("../images/picture5.jpg") no-repeat center center fixed;

    background-size: cover;
  }
}

@media (max-width: 768px){

  .site-header{
    background:
      linear-gradient(
        rgba(255,255,255,0.88),
        rgba(255,255,255,0.88)
      ),
      url("../images/picture12.jpg") no-repeat center center;

    background-size: cover;
  }

}

/* ===== Desktop / Mobile switch (稳) ===== */

/* 默认：电脑端 */
.nav{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:14px;
}

.menu-wrap{
  display:none;
}

/* 手机端：只显示 Menu + Language */
@media (max-width:768px){
  .nav{
    justify-content:center;
    gap:12px;
  }

  .nav-links{
    display:none;
  }

  .menu-wrap{
    display:block;
    position:relative;
  }

  .menu-toggle{
    display:inline-block;
    padding:10px 14px;
    border-radius:999px;
    background:rgba(0,0,0,0.04);
    border:1px solid rgba(0,0,0,0.06);
    font-weight:800;
    text-decoration:none;
    color:#111;
  }

  .menu-group{
    display:none;
    position:absolute;
    left:0;
    top:calc(100% + 10px);
    width:220px;
    background:#fff;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,0.18);
    z-index:99999;
  }

  .menu-group.is-open{
    display:block;
  }

  .menu-group a{
    display:block;
    padding:12px 14px;
    text-decoration:none;
    color:#111;
    font-weight:800;
  }

  .menu-group a:hover{
    background:rgba(0,0,0,0.05);
  }
}

/* =========================
   Mobile Top UI Polish
   ========================= */
@media (max-width:768px){

  /* Header 做成轻微玻璃质感 + 更紧凑 */
  .site-header{
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 10px 0;
  }

  .brand{
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    letter-spacing: .2px;
    margin: 2px 0 8px;
  }

  /* 两个按钮居中，间距更舒服 */
  .nav{
    justify-content: center;
    gap: 10px;
  }

  /* ✅ 把 “菜单 / 语言” 做成高级胶囊按钮 */
  .menu-toggle,
  .lang-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;

    color: #1a1a1a;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  }

  /* 按下的反馈（更像App） */
  .menu-toggle:active,
  .lang-toggle:active{
    transform: translateY(1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  }

  /* ✅ 给“菜单”加一个小图标（纯CSS，不改HTML） */
  .menu-toggle::before{
    content: "☰";
    font-size: 16px;
    margin-right: 8px;
    line-height: 1;
    opacity: .9;
  }

  /* ✅ 给“语言”加一个小图标 */
  .lang-toggle::before{
    content: "🌐";
    font-size: 16px;
    margin-right: 8px;
    line-height: 1;
    opacity: .9;
  }

  /* Menu 下拉更精致 */
  .menu-group{
    width: min(260px, 86vw);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 44px rgba(0,0,0,0.18);
  }

  .menu-group a{
    padding: 13px 14px;
    font-weight: 800;
  }

  /* Language 下拉也更精致（如果你有 lang-dropdown） */
  .lang-dropdown{
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 44px rgba(0,0,0,0.18);
  }
}