        /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* 全局变量：匹配原图配色 */
        :root {
            --primary-gold: #c9a66b;
            --light-gold: #f5e7d1;
            --dark-gold: #b88a44;
            --bg-cream: #fff6eb;
            --text-dark: #333333;
            --text-light: #666666;
            --white: #ffffff;
        }

        body {
            background-color: var(--bg-cream);
            color: var(--text-dark);
            line-height: 1.6;
        }
         h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;}
/* ================================================= 
   1. 基础布局与导航栏背景
   ================================================= */
header {
  background: transparent !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

/* 滚动后变色 */
header.scrolled {
  background: rgba(201, 166, 107, 0.8) !important;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

/* ================================================= 
   2. Logo 区域
   ================================================= */
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 166, 107, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.15rem !important;
  color: rgba(31, 30, 30, 0.9) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  line-height: 1.2 !important;
  margin: 0;
}

.logo-text p {
  font-size: 0.65rem;
  color: #dab06d;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

/* ================================================= 
   3. 桌面端菜单与交互
   ================================================= */
nav {
  flex: 1;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: rgba(31, 30, 30, 0.9);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  transition: all 0.2s ease;
  position: relative;
}

nav a:hover {
  color: #C9A66B !important;
  transform: translateY(-1px);
}

/* 下划线动画 */
nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #C9A66B;
  transition: width 0.2s ease;
}

nav a:hover::after {
  width: 100%;
}

/* 下拉菜单基础 */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  z-index: 1000;
  top: 100%;
  left: 0;
  padding: 10px 0;
  list-style: none;
  border-top: 2px solid #C9A66B;
}

.dropdown-content li {
  width: 100%;
  margin: 0 !important;
}

.dropdown-content li a {
  color: #333 !important;
  padding: 12px 20px;
  display: block;
  font-size: 0.85rem;
  text-align: left;
}

.dropdown-content li a:hover {
  background-color: #f9f6f2;
  color: #C9A66B !important;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================= 
   4. 按钮样式
   ================================================= */
.btn-book {
  background-color: #C9A66B;
  color: #FFFFFF !important;
  padding: 0.65rem 1.8rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.btn-book:hover {
  background-color: #FFFFFF;
  color: #B88A44 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ================================================= 
   5. 移动端全量适配 - 极致修复版
   ================================================= */
.mobile-only { display: none; }
.menu-button { display: none; }

@media (max-width: 768px) {
    /* 关键修复：强制关闭任何可能由 hover 引起的显示 */
    .dropdown:hover .dropdown-content {
        display: none !important;
    }

    /* 初始状态：确保子菜单是隐藏的 */
    .dropdown-content {
        display: none !important; /* 默认完全隐藏 */
        position: static !important;
        padding-left: 20px;
        background: transparent !important;
        box-shadow: none !important;
    }

    /* 只有当 active 类存在时才允许显示 */
    .dropdown.active > .dropdown-content {
        display: block !important;
    }

    /* 提升触发器层级，防止被遮挡点不到 */
    .mobile-trigger {
        position: relative;
        z-index: 10005 !important;
        cursor: pointer;
        display: flex; 
        align-items: center;
        width: 100%; /* 扩大点击范围 */
    }
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
    /* 2. 只有具备 active 类时才显示（由 JS 控制） */
    .dropdown.active > .dropdown-content {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* 3. 提升触发器层级，确保能被手指点到 */
    .mobile-trigger {
        position: relative;
        z-index: 10005 !important;
        cursor: pointer;
        display: block; /* 扩大点击区域 */
    }
    
    /* 4. 确保下拉内容不会撑开背景导致无法关闭 */
    .dropdown-content {
        pointer-events: auto; /* 允许点击子项 */
    }

    /* 汉堡按钮 */
    .menu-button {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 2000; /* 极高层级 */
        position: relative;
    }

    .menu-button span {
        width: 28px;
        height: 2px;
        background-color: #C9A66B;
        transition: 0.4s;
    }

    /* 侧滑菜单主体 */
    nav {
        display: flex !important; /* 强制显示 */
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%; /* 默认藏在右边 */
        width: 80%;
        height: 100vh;
        background: #FFFCF7 !important; /* 确保有实色背景 */
        backdrop-filter: blur(20px);
        padding: 100px 40px;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1500;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    /* 勾选控制显示 */
    #menu-toggle:checked ~ nav {
        right: 0 !important;
    }

    /* 列表重置 */
    nav ul {
        display: flex !important;
        flex-direction: column !important;
        opacity: 1 !important;
        visibility: visible !important;
        gap: 0 !important;
        padding: 0;
        margin: 0;
    }

    nav ul li {
        width: 100%;
        list-style: none;
        border-bottom: 1px solid rgba(201, 166, 107, 0.1);
    }

    nav a {
        color: #4A3E3E !important;
        display: block;
        padding: 18px 0;
        font-size: 1.2rem !important;
        text-decoration: none;
    }

    /* 下拉菜单 Services 内容 */
    .dropdown-content {
        display: none; /* JS 控制显示 */
        position: static !important;
        padding-left: 20px;
        background: transparent !important;
        box-shadow: none !important;
    }

    /* 激活类 */
    .dropdown.active .dropdown-content {
        display: block !important;
    }

    .dropdown-content li a {
        font-size: 1rem !important;
        color: #8D775F !important;
        padding: 12px 0 !important;
        border: none !important;
    }

    /* 箭头 */
    .arrow-down {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-right: 2px solid #C9A66B;
        border-bottom: 2px solid #C9A66B;
        transform: rotate(45deg);
        margin-left: 10px;
        transition: 0.3s;
    }
    .dropdown.active .arrow-down {
        transform: rotate(-135deg);
    }

    /* Book Now 按钮手机端样式 */
    .mobile-only .btn-book {
        margin-top: 30px;
        background: #C9A66B;
        color: #fff !important;
        text-align: center;
        border-radius: 50px;
        padding: 15px !important;
    }
}

/* 英雄区 */
        .hero {
            background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8));
            background-size: cover;
            background-position: center;
            padding: 4rem 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* max-width: 1400px; */
            margin: 0 auto;
        }

        .hero-text {
            max-width: 50%;
        }

        .hero-text .welcome {
            color: rgba(31, 30, 30, 0.9);
            font-size: 1rem;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .hero-text h2 {
            font-size: 2.2rem;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .hero-text p {
            color: #2f2e2e;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

      .hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* 统一两个按钮样式 */
.btn-primary,
.btn-secondary {
  /* 关键：固定宽度，文字再长也不变形 */
  width: 312px;
  padding: 14px 0;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #b8925a;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: var(--primary-gold);
  color: #fff;
  transform: translateY(-2px);
}


        .hero-logo {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: transparent !important;
            border: 3px solid var(--primary-gold);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-logo::before {
            content: '';
            position: absolute;
            inset: 15px;
            border: 2px solid var(--primary-gold);
            border-radius: 50%;
        }

        .logo-circle-icon {
           width: 100%;
    height: 100%;
            /* background-color: var(--primary-gold); */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 5rem;
            margin-bottom: 1rem;
             background: transparent !important; /* 强制透明，覆盖默认样式 */
  padding: 0 !important; /* 清除内边距，避免白边 */
  border: none !important; /* 清除边框 */
        }
        .img-hero{
            
        position: absolute;
    top: 0;
    width: 141%;
    height: 105%;
    /* 关键：确保图片比例不失真且填满 */
    object-fit: cover;
     background: transparent !important;
  display: block; /* 消除inline元素默认的下方空隙 */
  mix-blend-mode: normal; /* 确保混合模式正常，不被父元素影响 */
        }

        .hero-logo-text {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--text-dark);
            text-align: center;
        }

        /* 服务区 */
        .services {
            padding: 4rem 8%;
            /* max-width: 1400px; */
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header .sub-title {
            color: var(--primary-gold);
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .section-header h3 {
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-content {
            padding: 1.5rem;
            position: relative;
        }

        .service-icon {
            position: absolute;
            top: -25px;
            left: 1.5rem;
            width: 50px;
            height: 50px;
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            color: var(--primary-gold);
            font-size: 1.2rem;
        }

        .service-content h4 {
            font-size: 1.2rem;
            margin: 1rem 0 0.5rem;
            color: var(--text-dark);
        }

        .service-content p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
        }

/* 会员区 - 终极修复：图片不溢出 + 强制单行横向排列 */
.membership {
  padding: 3rem 5%;
  /* max-width: 1400px; */
  margin: 0 auto;
  /* 核心：弹性布局 + 强制不换行 */
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow:visible;
}

/* 左侧：图标+文字 固定宽度，不挤压 */
.membership-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 720px;
  flex-shrink: 0;
}

/* 图标容器：固定大小，防止图片溢出 */
.membership-icon {
  width: 258px;
  height: 307px;
  /* border-radius: 50%; */
  background-color: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden; /* 隐藏图片溢出部分 */
   background: transparent !important; /* 强制透明，覆盖默认样式 */
  padding: 0 !important; /* 清除内边距，避免白边 */
  border: none !important; /* 清除边框 */
}

/* 图片自适应容器，绝不溢出 */
.img-vip {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 图片等比例填充，不变形 */
   background: transparent !important;
  display: block; /* 消除inline元素默认的下方空隙 */
  mix-blend-mode: normal; /* 确保混合模式正常，不被父元素影响 */
}

.membership-text-content {
  flex: 1;
}

.membership-text h3 {
  font-size: 2.3rem;
  color:  rgba(31, 30, 30, 0.9);
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.membership-text p {
  color:  rgba(31, 30, 30, 0.9);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.btn-view {
  background: #fff;
  color: #c9a66b;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  /* 质感关键 */
  box-shadow: 0 4px 12px rgba(201, 166, 107, 0.15);
  transition: all 0.5s ease;
}

.btn-view:hover {
  background-color: #c9a66b;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(201, 166, 107, 0.25);
}


/* 卡片容器：强制单行，不换行 */
.membership-plans {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  flex-shrink: 0;
  align-items: stretch;
  width: 800px;
}

/* 卡片瘦身：窄款设计，适配单行 */
.plan-card {
  /* background: #fff; */
 
  border-radius: 12px;
  /* padding: 1.2rem; */
  width: 220px; /* 卡片宽度，瘦身后不溢出 */
  /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
  position: relative;
  flex-shrink: 0;
    /* 核心：添加过渡动画 */
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* border: 1px solid #eee; */
    overflow: visible; 
    top:-10px;
 background: transparent;
 /* backdrop-filter: blur(8px); */
 height: 377px;
}
.img-vipbg{
    width: 100%;
    height: 116%;
    object-fit: cover;
    background: transparent !important;
     mix-blend-mode: normal;
     display: block;
 }
.img-vipbg2{
    width: 100%;
    height: 117%;
    object-fit: cover;
    background: transparent !important;
    mix-blend-mode: normal;
     display: block;
 }
.img-vipbg3{
     width: 109%;
  height: 109%;
    object-fit: cover;
    background: transparent !important;
     mix-blend-mode: normal;
    display: block;
}



/* 悬停时的综合效果 */
.plan-card:hover {
    transform: translateY(-10px); /* 向上浮动更多 */
    /* box-shadow: 0 15px 30px rgba(0,0,0,0.12); 
    border-color: #f1c40f; 
    color: #c9a66b; */
}


.plan-card:hover::after {
    left: 120%;
    opacity: 1;
}

.plan-card.popular {
  border: 2px solid #f1c40f; /* 亮眼的边框色 */
    transform: scale(1.05);     /* 整体稍微放大一点点 */
    z-index: 1; 
     box-shadow: 0 0 20px rgba(241, 196, 15, 0.2);
}

/* 悬停时的综合效果 */
.plan-card.popular:hover {
    transform: translateY(-10px); /* 向上浮动更多 */
    box-shadow: 0 15px 30px rgba(0,0,0,0.12); /* 阴影变深变虚 */
    border-color: #f1c40f; /* 悬停时边框变色 */
}

.plan-badge {
  position: absolute;
  top: 0px;
  right: 1.8rem;
  background: #c9a66b;
  color: #fff;
  padding: 0.15rem 0.6rem;
  border-radius: 8px;
  font-size: 0.65rem;
  white-space: nowrap;
}

.plan-card h4 {
  font-size: 0.9rem;
  line-height: 1.3;
  margin-bottom: 0.3rem;
   
}

.plan-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #060606;
  margin-bottom: 0.8rem;
}
/* 价格缩放效果 */
.plan-card:hover .plan-price {
    color: #ba9606; /* 悬停时价格变色 */
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.plan-price {
    display: inline-block; /* 必须是 block 或 inline-block 才能缩放 */
    transition: all 0.3s ease;
}

/* 列表打勾的小动画 */
.plan-features li {
    position: relative;
    transition: padding-left 0.3s ease;
}

.plan-card:hover .plan-features li {
    padding-left: 5px; /* 悬停时列表文字微右移 */
}

.plan-price span {
  font-size: 0.7rem;
  color: #666;
  font-weight: normal;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.plan-features li::before {
  content: '✓';
  color: #c9a66b;
  font-weight: bold;
}
/* ================================================= 
   6. 会员卡片手机端适配 - 结构对齐版
   ================================================= */
@media (max-width: 768px) {
    /* 1. 背景容器调整 */
    .membership {
        background-size: cover !important; /* 防止背景图拉伸变形 */
        padding: 60px 20px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* 2. 顶部文字区域适配 */
    .membership-text {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 80px; /* 给下方第一个精灵留出空间 */
    }

    .membership-icon img {
        width: 310px !important;
        margin-bottom: 15px;
    }

    .membership-text-content h3 {
        font-size: 1.5rem !important;
    }

    /* 3. 卡片布局：改为垂直排列 */
    .membership-plans {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 100px !important; /* 每个卡片之间的间距，防止精灵图撞到上一个卡片 */
        width: 100%;
    }

    /* 4. 卡片主体修复 */
    .plan-card {
        width: 90% !important;
        max-width: 320px;
        position: relative !important;
        border-radius: 20px;
        margin: 0 auto;
        overflow: visible !important; /* 必须可见，否则精灵图会被切掉 */
        height: 450px;
    }

    /* 5. 精灵图精准定位 - 解决截图中的悬浮问题 */
    .card-character {
        width: 140px !important; /* 缩小尺寸以适应手机 */
        height: auto;
        position: absolute !important;
        top: -110px !important; /* 让他正好“坐”在边框上 */
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10;
        filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
    }

    /* 6. 卡片内文字适配 */
    .plan-card h4 {
        font-size: 1.2rem !important;
        line-height: 1.3;
        margin-bottom: 10px !important;
    }

    .plan-price {
        font-size: 1.6rem !important;
        margin-bottom: 15px !important;
    }

    .plan-price span {
        font-size: 0.8rem;
    }

    .plan-features {
        text-align: left;
        display: inline-block;
        padding: 0;
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .plan-features li {
        list-style: none;
        padding-left: 20px;
        position: relative;
    }

    /* 列表前的打钩符号（可选） */
    .plan-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #C9A
      }
       /* 1. 核心修复：确保图片的父容器不裁剪内容 */
    .membership-text,
    .membership-icon {
        overflow: visible !important; /* 强制取消裁剪 */
        width: auto !important; /* 宽度随内容自适应，不要限制 */
        display: flex;
        justify-content: center; /* 居中显示图片 */
    }

    /* 2. 精准缩放与定位图片 */
    .img-vip {
        width: 140px !important; /* 精准控制手机端宽度 */
        height: auto;
        max-width: none !important; /* 移除可能存在的最大宽度限制 */
        
        /* === 关键修正 === */
        margin: 0 auto !important; /* 水平居中 */
        position: relative !important; /* 使用相对定位 */
        left: 0 !important; /* 清除所有可能导致偏移的 left 值 */
        right: 0 !important;
        transform: none !important; /* 清除所有变形导致的偏移 */
    }

}
/* 手机端平滑入场动画 */
@keyframes cardFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .plan-card {
        animation: cardFadeUp 0.6s ease-out forwards;
    }
}



/* 关于我们区 */
        .about {
            padding: 4rem 8%;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .about-img {
            width: 40%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

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

        .about-text {
            width: 60%;
        }

        .about-text .sub-title {
            color: var(--primary-gold);
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .about-text h3 {
            font-size: 2.8rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .about-text p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .about-features {
           display: flex;
    gap: 15px;          /* 调小这个数值，卡片就会靠得更近 */
    margin-top: 30px;
        }

        .feature-item {
          flex: 1;            /* 等宽排列 */
    background: #ffffff;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    
    /* 基础阴影：淡淡的柔和感 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    
    /* 动态过渡效果：所有属性变化都在 0.3 秒内完成 */
    transition: all 0.3s ease;
    cursor: pointer;
        }
        .feature-item:hover {
    /* 1. 向上浮动 */
    transform: translateY(-8px);
    
    /* 2. 阴影加深：让它看起来真的“飘”起来了 */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    
    /* 3. 可选：背景色微调（例如淡黄色呼应你的主题） */
    background-color: #fffdf5; 
}
/* 图标动画：悬停时让 Emoji 缩放一下 */
.feature-item:hover .feature-icon {
    transform: scale(1.2);
}

       .feature-icon {
    font-size: 24px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.feature-item h4 {
    font-size: 0.9rem;
    margin: 0;
    color: #333;
}

        /* 页脚 */
        footer {
            /* background-color: var(--white); */
           padding: 60px 5% 20px;
    position: relative;
            border-top: 1px solid var(--light-gold);
        }

        .footer-container {
    display: flex;
    flex-wrap: wrap;       /* 核心：允许换行，防止溢出 */
    justify-content: space-between; /* 均匀分布 */
    gap: 30px;             /* 列之间的间距 */
    max-width: 1200px;
    margin: 0 auto;
}

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
        }

        .footer-logo-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            font-size: 1.5rem;
        }

        .footer-logo-text h3 {
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        .footer-logo-text p {
            font-size: 0.7rem;
            color: var(--text-light);
            letter-spacing: 1px;
            color: #dab06d
        }
       .footer-col {
    flex: 1 1 200px;       /* 核心：可以伸缩，但最小宽度不低于 200px */
    min-width: 150px;      /* 进一步保证在超窄屏下不崩 */
    margin-bottom: 20px;
}

        .footer-col h4 {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .footer-col p {
            /* color: var(--text-light); */
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }
        

        .social-links {
            display: flex;
            gap: 0.8rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 30px;
            height: 30px;
            background-color: var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .social-link:hover {
            background-color: var(--dark-gold);
        }

        .footer-map {
            width: 100%;
            height: 150px;
            /* background-color: var(--light-gold); */
            border-radius: 10px;
            /* position: relative;
            overflow: hidden; */
        }
/* 
        .footer-map::before {
            content: '📍';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5rem;
        } */

/* 底部版权信息 */
.copyright {
    border-top: 1px solid #ddd;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    width: 100%;
}

        .footer-book {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background-color: var(--primary-gold);
            color: var(--white);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: background-color 0.3s;
               display: flex;
    align-items: center;
    gap: 8px;
}

        .footer-book:hover {
            background-color: var(--dark-gold);
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }

            .hero-text {
                max-width: 100%;
            }

            .membership {
                flex-direction: column;
                text-align: center;
            }

            .membership-text {
                max-width: 100%;
            }

            .membership-plans {
                justify-content: center;
            }

            .about {
                flex-direction: column;
            }

            .about-img, .about-text {
                width: 100%;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
            }

            .hero-text h2 {
                font-size: 1.8rem;
            }

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

            .about-features {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }
    .img-footer{
        width: 66px;
        height: 62px;
    }





    