/* 旅游风采页面特定样式 */
.page-header {
  height: 50vh;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: 3em;
  position: relative;
  z-index: 1;
}

.page-header .shape {
  z-index: 0;
}

.showcase-section {
  padding: 80px 0;
}

.showcase-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.showcase-gallery {
  margin-bottom: 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 15px;
  margin-bottom: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--light-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-caption h3 {
  margin-bottom: 5px;
}

.gallery-caption p {
  font-size: 0.9em;
}

.gallery-btn {
  text-align: center;
}

.testimonial-section {
  background-color: var(--light-gray);
  padding: 80px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-item {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author h3 {
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.testimonial-author .date {
  color: var(--dark-gray);
  font-size: 0.9em;
}

.testimonial-content {
  font-style: italic;
  color: var(--text-color);
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--primary-color);
}

.testimonial-content p:last-child {
  margin-bottom: 0;
}

.testimonial-rating {
  color: var(--accent-color);
  margin-top: 15px;
  font-size: 1.2em;
}

@media screen and (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item {
    height: 250px;
  }

  .gallery-item.large {
    grid-column: 1;
    grid-row: span 1;
  }

  .page-header h1 {
    font-size: 2.5em;
  }
}
