/* 首页样式 - 优雅婚礼风格 */
@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #5a4a3a;
  background: #fffaf7;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.zh_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 按钮样式 */
.zh_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.zh_btn_primary {
  background: linear-gradient(135deg, #d4a574, #c9967a);
  color: #fff;
  box-shadow: 0 6px 20px rgba(201, 150, 122, 0.35);
}

.zh_btn_primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 150, 122, 0.45);
}

.zh_btn_outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.zh_btn_outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.zh_btn_white {
  background: #fff;
  color: #c9967a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.zh_btn_white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.zh_btn_ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.zh_btn_ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Hero Banner */
.zh_hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zh_hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.zh_hero_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zh_hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(90, 74, 58, 0.7) 0%, rgba(139, 115, 85, 0.5) 100%);
}

.zh_hero_decor {
  position: absolute;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

.zh_hero_decor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zh_hero_decor_left {
  left: -100px;
  bottom: 0;
  width: 350px;
  height: 500px;
}

.zh_hero_decor_right {
  right: -100px;
  top: 0;
  width: 350px;
  height: 500px;
}

.zh_hero .zh_container {
  position: relative;
  z-index: 2;
}

.zh_hero_content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.zh_hero_tag {
  display: inline-block;
  padding: 10px 28px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.zh_hero_title {
  font-size: 72px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.zh_hero_desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 50px;
}

.zh_hero_actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.zh_hero_scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 1px;
  animation: zh_bounce 2s infinite;
}

.zh_hero_scroll i {
  font-size: 16px;
}

@keyframes zh_bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* 服务介绍 */
.zh_intro {
  padding: 120px 0;
  background: #fff;
}

.zh_intro_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.zh_intro_card {
  background: #fffaf7;
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.zh_intro_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(139, 115, 85, 0.12);
  border-color: rgba(212, 165, 116, 0.3);
}

.zh_intro_icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(201, 150, 122, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zh_intro_icon i {
  font-size: 36px;
  color: #c9967a;
}

.zh_intro_title {
  font-size: 22px;
  font-weight: 600;
  color: #5a4a3a;
  margin-bottom: 16px;
}

.zh_intro_desc {
  font-size: 15px;
  color: #8b7355;
  line-height: 1.7;
  margin-bottom: 28px;
}

.zh_intro_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c9967a;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.zh_intro_link:hover {
  gap: 14px;
  color: #b8856a;
}

.zh_intro_link_disabled {
  color: #a8a090;
  cursor: default;
}

.zh_intro_link_disabled:hover {
  gap: 8px;
  color: #a8a090;
}

/* 通用区块标题 */
.zh_section_head {
  text-align: center;
  margin-bottom: 60px;
}

.zh_section_tag {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(201, 150, 122, 0.15));
  border-radius: 50px;
  color: #c9967a;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.zh_section_title {
  font-size: 42px;
  font-weight: 300;
  color: #5a4a3a;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.zh_section_desc {
  font-size: 16px;
  color: #8b7355;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 场地列表 */
.zh_venues {
  padding: 120px 0;
  background: #fffaf7;
}

.zh_venues_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 50px;
}

.zh_venue_item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(139, 115, 85, 0.06);
}

.zh_venue_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139, 115, 85, 0.15);
}

.zh_venue_img {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

.zh_venue_item:hover .zh_venue_img img {
  transform: scale(1.08);
}

.zh_venue_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.85), rgba(201, 150, 122, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.zh_venue_item:hover .zh_venue_hover {
  opacity: 1;
}

.zh_venue_btn {
  padding: 14px 32px;
  background: #fff;
  color: #c9967a;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.zh_venue_btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.zh_venue_body {
  padding: 28px;
}

.zh_venue_name {
  font-size: 18px;
  font-weight: 600;
  color: #5a4a3a;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zh_venue_info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a8a090;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zh_venue_info i {
  color: #c9967a;
  flex-shrink: 0;
}

/* 查看更多 */
.zh_section_more {
  text-align: center;
}

.zh_more_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  color: #c9967a;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid #c9967a;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.zh_more_btn:hover {
  background: linear-gradient(135deg, #d4a574, #c9967a);
  color: #fff;
  border-color: transparent;
  gap: 14px;
}

/* 服装列表 */
.zh_dresses {
  padding: 120px 0;
  background: #fff;
}

.zh_dresses_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 50px;
}

.zh_dress_item {
  background: #fffaf7;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(139, 115, 85, 0.06);
}

.zh_dress_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139, 115, 85, 0.15);
}

.zh_dress_img {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

.zh_dress_item:hover .zh_dress_img img {
  transform: scale(1.08);
}

.zh_dress_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.85), rgba(201, 150, 122, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.zh_dress_item:hover .zh_dress_hover {
  opacity: 1;
}

.zh_dress_btn {
  padding: 14px 32px;
  background: #fff;
  color: #c9967a;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.zh_dress_btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.zh_dress_body {
  padding: 28px;
}

.zh_dress_name {
  font-size: 18px;
  font-weight: 600;
  color: #5a4a3a;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zh_dress_info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a8a090;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zh_dress_info i {
  color: #e6b980;
  flex-shrink: 0;
}

/* 平台优势 */
.zh_features {
  padding: 120px 0;
  background: linear-gradient(180deg, #fffaf7 0%, #f9f5f2 100%);
}

.zh_features_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.zh_features_left {
  position: relative;
}

.zh_features_img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(139, 115, 85, 0.2);
}

.zh_features_img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.zh_features_img_badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: linear-gradient(135deg, #d4a574, #c9967a);
  padding: 24px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(201, 150, 122, 0.4);
}

.zh_badge_num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.zh_badge_text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.zh_features_right .zh_section_tag {
  margin-bottom: 16px;
}

.zh_features_right .zh_section_title {
  text-align: left;
  margin-bottom: 16px;
}

.zh_features_right .zh_section_desc {
  text-align: left;
  margin: 0 0 40px 0;
}

.zh_features_list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.zh_feature_row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: #fff;
  border-radius: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(139, 115, 85, 0.05);
}

.zh_feature_row:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(139, 115, 85, 0.12);
}

.zh_feature_num {
  font-size: 42px;
  font-weight: 700;
  color: #c9967a;
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
}

.zh_feature_content {
  flex: 1;
}

.zh_feature_name {
  font-size: 18px;
  font-weight: 600;
  color: #5a4a3a;
  margin-bottom: 8px;
}

.zh_feature_text {
  font-size: 14px;
  color: #8b7355;
  line-height: 1.6;
}

/* 数据统计 */
.zh_stats {
  padding: 100px 0;
  background: linear-gradient(135deg, #d4a574, #c9967a);
  position: relative;
  overflow: hidden;
}

.zh_stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.zh_stats::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.zh_stats_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.zh_stat_item {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.zh_stat_item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-8px);
}

.zh_stat_num {
  font-size: 56px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: 2px;
}

.zh_stat_label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* CTA区域 */
.zh_cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.zh_cta_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.zh_cta_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zh_cta_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(90, 74, 58, 0.8) 0%, rgba(139, 115, 85, 0.7) 100%);
}

.zh_cta .zh_container {
  position: relative;
  z-index: 1;
}

.zh_cta_content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.zh_cta_title {
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.zh_cta_desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 45px;
}

.zh_cta_actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .zh_container {
    padding: 0 30px;
  }

  .zh_hero_title {
    font-size: 56px;
  }

  .zh_features_wrap {
    gap: 60px;
  }

  .zh_venues_grid,
  .zh_dresses_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zh_stats_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .zh_intro_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .zh_features_wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .zh_features_left {
    order: 2;
  }

  .zh_features_right {
    order: 1;
  }

  .zh_features_img_badge {
    right: 20px;
  }

  .zh_features_right .zh_section_title,
  .zh_features_right .zh_section_desc {
    text-align: center;
  }

  .zh_section_title {
    font-size: 36px;
  }

  .zh_hero_title {
    font-size: 48px;
  }

  .zh_hero_decor {
    display: none;
  }

  .zh_cta_title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .zh_container {
    padding: 0 20px;
  }

  .zh_hero {
    min-height: auto;
    padding: 140px 0 100px;
  }

  .zh_hero_title {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .zh_hero_desc {
    font-size: 16px;
  }

  .zh_hero_actions {
    flex-direction: column;
    align-items: center;
  }

  .zh_hero_scroll {
    display: none;
  }

  .zh_intro,
  .zh_venues,
  .zh_dresses,
  .zh_features {
    padding: 80px 0;
  }

  .zh_section_title {
    font-size: 30px;
  }

  .zh_venues_grid,
  .zh_dresses_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .zh_stats {
    padding: 70px 0;
  }

  .zh_stats_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .zh_stat_item {
    padding: 30px 15px;
  }

  .zh_stat_num {
    font-size: 40px;
  }

  .zh_cta {
    padding: 80px 0;
  }

  .zh_cta_title {
    font-size: 28px;
  }

  .zh_cta_actions {
    flex-direction: column;
    align-items: center;
  }

  .zh_feature_row {
    flex-direction: column;
    gap: 16px;
  }

  .zh_feature_num {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .zh_btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .zh_hero_title {
    font-size: 30px;
  }

  .zh_intro_card {
    padding: 35px 25px;
  }

  .zh_venue_img,
  .zh_dress_img {
    height: 220px;
  }

  .zh_stat_num {
    font-size: 32px;
  }

  .zh_stat_label {
    font-size: 14px;
  }
}
