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

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

body {
  font-family: 'Poppins', 'Microsoft YaHei', sans-serif;
  color: #333;
  background: #fff4ee;
  line-height: 1.6;
}

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

/* Hero区域 - 左右分栏不规则布局 */
.zh_hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #ed1c24, #f9484f);
  padding: 100px 0 80px;
  overflow: hidden;
}

.zh_hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-30 0a30 30 0 1 1 60 0a30 30 0 1 1 -60 0' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.zh_hero_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.zh_hero_left {
  position: relative;
}

.zh_hero_badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.zh_hero_title {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: 'Raleway', sans-serif;
}

.zh_text_highlight {
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.zh_hero_description {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 40px;
}

.zh_hero_buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.zh_hero_stats {
  display: flex;
  gap: 40px;
}

.zh_hero_stat {
  text-align: center;
}

.zh_hero_stat_value {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

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

.zh_hero_right {
  position: relative;
}

.zh_hero_images {
  position: relative;
}

.zh_hero_image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.zh_hero_image_main {
  width: 100%;
  height: 550px;
}

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

.zh_hero_image_overlay {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 300px;
  height: 220px;
  transform: rotate(8deg);
  border: 8px solid #fff;
}

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

.zh_hero_badge_card {
  position: absolute;
  top: 40px;
  left: -40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  max-width: 280px;
}

.zh_hero_badge_stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.zh_hero_badge_stars i {
  color: #ffd700;
  font-size: 16px;
}

.zh_hero_badge_text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.zh_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.zh_btn_primary {
  background: #fff;
  color: #ed1c24;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.zh_btn_primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.zh_btn_outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.zh_btn_outline:hover {
  background: #fff;
  color: #ed1c24;
}

/* 服务分类 */
.zh_categories {
  padding: 100px 0;
  background: #fff;
}

.zh_section_header {
  text-align: center;
  margin-bottom: 60px;
}

.zh_section_title {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  font-family: 'Raleway', sans-serif;
}

.zh_section_subtitle {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.zh_category_card {
  background: #fff;
  border: 1px solid rgba(237, 28, 36, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.zh_category_card:hover {
  transform: translateY(-10px);
  border-color: rgba(237, 28, 36, 0.3);
  box-shadow: 0 15px 40px rgba(237, 28, 36, 0.15);
}

.zh_category_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #ed1c24, #f9484f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zh_category_icon i {
  font-size: 36px;
  color: #fff;
}

.zh_category_title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.zh_category_desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.zh_category_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ed1c24;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zh_category_link:hover {
  gap: 12px;
}

/* 热门场地 */
.zh_venues {
  padding: 100px 0;
  background: #fff4ee;
}

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

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

.zh_venue_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(237, 28, 36, 0.15);
}

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

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

.zh_venue_card:hover .zh_venue_image img {
  transform: scale(1.05);
}

.zh_venue_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(237, 28, 36, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.zh_venue_card:hover .zh_venue_overlay {
  opacity: 1;
}

.zh_venue_view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: #ed1c24;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.zh_venue_view:hover {
  transform: scale(1.05);
}

.zh_venue_content {
  padding: 25px;
}

.zh_venue_title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.zh_venue_info {
  display: flex;
  align-items: center;
}

.zh_venue_location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 14px;
}

.zh_venue_location i {
  color: #ed1c24;
}

.zh_section_actions {
  text-align: center;
}

.zh_section_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: #ed1c24;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #ed1c24;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.zh_section_btn:hover {
  background: #ed1c24;
  color: #fff;
}

/* 精品服装 */
.zh_dresses {
  padding: 100px 0;
  background: #fff;
}

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

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

.zh_dress_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(237, 28, 36, 0.15);
}

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

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

.zh_dress_card:hover .zh_dress_image img {
  transform: scale(1.05);
}

.zh_dress_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(237, 28, 36, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.zh_dress_card:hover .zh_dress_overlay {
  opacity: 1;
}

.zh_dress_view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: #ed1c24;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.zh_dress_view:hover {
  transform: scale(1.05);
}

.zh_dress_content {
  padding: 25px;
}

.zh_dress_title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.zh_dress_info {
  display: flex;
  align-items: center;
}

.zh_dress_location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 14px;
}

.zh_dress_location i {
  color: #ffd700;
}

/* 平台优势 - 左右分栏不规则布局 */
.zh_features {
  padding: 100px 0;
  background: #fff4ee;
}

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

.zh_features_left {
  position: sticky;
  top: 120px;
}

.zh_features_left .zh_section_header {
  text-align: left;
  margin-bottom: 40px;
}

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

.zh_feature_item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.zh_feature_item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(237, 28, 36, 0.15);
}

.zh_feature_number {
  font-size: 48px;
  font-weight: 700;
  color: #ed1c24;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.2;
}

.zh_feature_content {
  flex: 1;
}

.zh_feature_title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.zh_feature_desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.zh_features_right {
  position: relative;
}

.zh_features_image_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 150px);
  gap: 15px;
}

.zh_grid_item {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.zh_grid_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(237, 28, 36, 0.1), rgba(249, 72, 79, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.zh_grid_item:hover::before {
  opacity: 1;
}

.zh_grid_item:hover {
  transform: scale(1.05) rotate(2deg);
  z-index: 10;
  box-shadow: 0 20px 50px rgba(237, 28, 36, 0.3);
}

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

.zh_grid_item:hover img {
  transform: scale(1.1);
}

.zh_grid_item_large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.zh_grid_item_small {
  grid-column: span 2;
}

.zh_grid_item_medium {
  grid-column: 3 / 5;
}

/* 数据统计 - 大号数字展示 */
.zh_stats {
  padding: 100px 0;
  background: linear-gradient(135deg, #ed1c24, #f9484f);
  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_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  position: relative;
  z-index: 1;
}

.zh_stat_card {
  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_card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.zh_stat_value {
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1;
  font-family: 'Raleway', sans-serif;
}

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

/* 用户评价 */
.zh_testimonials {
  padding: 100px 0;
  background: #fff;
}

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

.zh_testimonial_card {
  background: #fff4ee;
  border-radius: 20px;
  padding: 35px;
  transition: all 0.4s ease;
  border: 1px solid rgba(237, 28, 36, 0.1);
}

.zh_testimonial_card:hover {
  transform: translateY(-8px);
  border-color: rgba(237, 28, 36, 0.3);
  box-shadow: 0 15px 40px rgba(237, 28, 36, 0.1);
}

.zh_testimonial_stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.zh_testimonial_stars i {
  color: #ffd700;
  font-size: 16px;
}

.zh_testimonial_text {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
  font-style: italic;
}

.zh_testimonial_author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.zh_testimonial_avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ed1c24;
}

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

.zh_testimonial_info {
  flex: 1;
}

.zh_testimonial_name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.zh_testimonial_role {
  font-size: 13px;
  color: #999;
}

/* CTA区域 */
.zh_cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #ed1c24, #f9484f);
  position: relative;
  overflow: hidden;
}

.zh_cta::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_cta_content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.zh_cta_title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Raleway', sans-serif;
}

.zh_cta_description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

/* 响应式设计 */
@media (max-width: 1200px) {
  .zh_hero_wrapper {
    gap: 60px;
  }
  
  .zh_features_wrapper {
    gap: 60px;
  }
  
  .zh_categories_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .zh_venues_grid,
  .zh_dresses_grid,
  .zh_testimonials_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .zh_stats_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .zh_hero_wrapper,
  .zh_features_wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .zh_hero_left {
    order: 1;
  }
  
  .zh_hero_right {
    order: 2;
  }
  
  .zh_features_left {
    position: static;
  }
  
  .zh_features_image_grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .zh_grid_item_large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  
  .zh_grid_item_small {
    grid-column: span 1;
  }
  
  .zh_grid_item_medium {
    grid-column: span 2;
  }
  
  .zh_hero_title {
    font-size: 48px;
  }
  
  .zh_hero_image_main {
    height: 400px;
  }
  
  .zh_hero_image_overlay {
    position: static;
    width: 100%;
    height: 250px;
    transform: none;
    margin-top: 20px;
  }
  
  .zh_hero_badge_card {
    position: static;
    margin-top: 20px;
  }
  
  .zh_section_title {
    font-size: 36px;
  }
  
  .zh_cta_title {
    font-size: 36px;
  }
  
  .zh_stat_value {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .zh_container {
    padding: 0 20px;
  }
  
  .zh_hero {
    min-height: auto;
    padding: 80px 0 60px;
  }
  
  .zh_hero_title {
    font-size: 36px;
  }
  
  .zh_hero_stats {
    flex-direction: column;
    gap: 25px;
  }
  
  .zh_hero_stat_value {
    font-size: 40px;
  }
  
  .zh_hero_buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .zh_categories,
  .zh_venues,
  .zh_dresses,
  .zh_features,
  .zh_testimonials,
  .zh_cta {
    padding: 70px 0;
  }
  
  .zh_section_title {
    font-size: 32px;
  }
  
  .zh_categories_grid,
  .zh_venues_grid,
  .zh_dresses_grid,
  .zh_testimonials_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .zh_features_image_grid {
    grid-template-columns: 1fr;
  }
  
  .zh_grid_item_large,
  .zh_grid_item_small,
  .zh_grid_item_medium {
    grid-column: 1;
    grid-row: auto;
  }
  
  .zh_feature_item {
    flex-direction: column;
    gap: 15px;
  }
  
  .zh_feature_number {
    font-size: 36px;
  }
  
  .zh_stats_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .zh_stat_value {
    font-size: 48px;
  }
  
  .zh_cta_title {
    font-size: 28px;
  }
  
  .zh_cta_buttons {
    flex-direction: column;
    align-items: center;
  }
}
