/* Banner样式 */
.banner-swiper {
  height: 300px;
  position: relative;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
}

.banner-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
  font-size: 18px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 导游风采展示样式 */
.guide-showcase {
  padding: 40px 0;
}

.guide-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.guide-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.guide-card {
  width: calc(25% - 15px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.guide-card:hover {
  transform: translateY(-5px);
}

.guide-image {
  width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

.guide-info {
  padding: 15px;
  text-align: center;
}

.guide-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.guide-title {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.guide-description {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
}

/* 移动端适配 */
@media screen and (max-width: 1200px) {
  .guide-card {
    width: calc(33.33% - 15px);
  }
}

@media screen and (max-width: 992px) {
  .guide-card {
    width: calc(50% - 10px);
  }

  .guide-grid {
    gap: 15px;
  }

  .banner-content h2 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .banner-content h2 {
    font-size: 36px !important;
  }

  .banner-content p {
    font-size: 18px;
  }

  .guide-container {
    padding: 0 15px;
  }

  .guide-showcase {
    padding: 30px 0;
  }
}

@media screen and (max-width: 576px) {
  .guide-grid {
    gap: 20px;
    justify-content: center;
  }

  .guide-card {
    width: 80%;
  }

  .banner-content h2 {
    font-size: 24px;
  }

  .guide-info {
    padding: 12px;
  }

  .guide-name {
    font-size: 16px;
  }

  .guide-title {
    font-size: 13px;
  }

  .guide-description {
    font-size: 13px;
  }
}
