/* 整体容器样式 */
.scenic-container {
  padding: 40px 0;
  position: relative;
}

/* 主标题样式 */
.scenic-main-title {
  color: #8B4513;
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  letter-spacing: 2px;
}

.scenic-subtitle {
  color: #D2691E;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 300;
}

.scenic-divider {
  width: 60%;
  margin: 30px auto;
  border-top: 2px solid #8B4513;
  position: relative;
}

.scenic-divider::before,
.scenic-divider::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #8B4513;
  top: -7px;
  transform: rotate(45deg);
}

.scenic-divider::before {
  left: -6px;
}

.scenic-divider::after {
  right: -6px;
}

/* 各部分通用样式 */
.scenic-section {
  padding: 50px 0;
  border-bottom: 1px solid #DEB887;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.scenic-section:last-child {
  border-bottom: none;
}

/* 标题样式 */
.section-title {
  color: #8B4513;
  font-size: 30px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  font-weight: bold;
}

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #8B4513;
  margin: 15px auto;
}

/* 图片容器样式 */
.scenic-image-container {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(139, 69, 19, 0.1);
  border: 1px solid #DEB887;
}

.scenic-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.scenic-image:hover {
  transform: scale(1.03);
}

.image-caption {
  background: rgba(139, 69, 19, 0.8);
  color: #fff;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 14px;
}

/* 内容样式 */
.scenic-content {
  padding: 20px;
  position: relative;
}

.scenic-content h3 {
  color: #8B4513;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
  border-left: 4px solid #8B4513;
  padding-left: 15px;
}

.scenic-content p {
  color: #654321;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

/* 特色列表样式 */
.scenic-features {
  background: #FAEBD7;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid #8B4513;
}

.scenic-features h4 {
  color: #8B4513;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.scenic-features ul {
  padding-left: 0;
  list-style-type: none;
}

.scenic-features li {
  margin-bottom: 12px;
  color: #654321;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.feature-icon {
  color: #8B4513;
  margin-right: 10px;
  display: inline-block;
  width: 24px;
}

/* 景点卡片样式 */
.attraction-cards {
  margin-top: 30px;
}

.attraction-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.attraction-card:hover {
  transform: translateY(-5px);
}

.attraction-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.attraction-card h4 {
  color: #8B4513;
  font-size: 18px;
  margin: 15px;
  font-weight: bold;
}

.attraction-card p {
  color: #654321;
  font-size: 14px;
  line-height: 1.6;
  margin: 15px;
  padding-bottom: 15px;
}

/* 文化内容样式 */
.culture-content {
  margin-bottom: 30px;
}

.culture-content h3 {
  color: #8B4513;
  font-size: 24px;
  margin: 20px 0;
  font-weight: bold;
}

.culture-content p {
  color: #654321;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

/* 视频容器样式 */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 比例 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(139, 69, 19, 0.1);
  background: #fff;
  border: 1px solid #DEB887;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAEBD7;
  color: #8B4513;
  font-size: 18px;
}

/* 服务信息样式 */
.service-content {
  background: #FAEBD7;
  padding: 30px;
  border-radius: 8px;
  margin-top: 20px;
}

.service-info {
  margin-bottom: 25px;
}

.service-info h4 {
  color: #8B4513;
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.service-info h4 i {
  margin-right: 10px;
}

.service-info p {
  color: #654321;
  margin-bottom: 10px;
  padding-left: 28px;
}

.service-tips {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid #8B4513;
}

.service-tips h4 {
  color: #8B4513;
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.service-tips h4 i {
  margin-right: 10px;
}

.service-tips ul {
  padding-left: 20px;
  list-style-type: none;
}

.service-tips li {
  color: #654321;
  margin-bottom: 10px;
  position: relative;
}

.service-tips li:before {
  content: '•';
  color: #8B4513;
  position: absolute;
  left: -15px;
}

/* 动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 确保每个部分依次显示 */
#overview {
  animation-delay: 0.2s;
}

#attractions {
  animation-delay: 0.4s;
}

#culture {
  animation-delay: 0.6s;
}

#video {
  animation-delay: 0.8s;
}

#services {
  animation-delay: 1s;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .scenic-main-title {
    font-size: 28px;
  }

  .scenic-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .scenic-content h3 {
    font-size: 20px;
  }

  .scenic-content p {
    font-size: 14px;
  }

  .scenic-section {
    padding: 30px 0;
  }

  .scenic-divider {
    width: 80%;
  }

  .scenic-features {
    padding: 15px;
  }

  .attraction-card {
    margin-bottom: 20px;
  }

  .attraction-card img {
    height: 150px;
  }
}

/* 打印样式优化 */
@media print {
  .scenic-container {
    padding: 0;
    background: none;
  }

  .scenic-section {
    page-break-inside: avoid;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .video-container {
    display: none;
  }

  .scenic-image-container,
  .scenic-features,
  .attraction-card,
  .service-content,
  .service-tips {
    box-shadow: none;
    border: 1px solid #000;
  }

  .image-caption {
    background: #fff;
    color: #000;
    border-top: 1px solid #000;
  }
}