/* ===================================
   雨林奇观页面样式
   =================================== */

/* 页面头部 */
.wonders-header {
  background: linear-gradient(135deg, rgba(22, 101, 52, 0.95) 0%, rgba(21, 128, 61, 0.9) 50%, rgba(34, 197, 94, 0.85) 100%),
              url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920') center/cover no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wonders-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.wonders-header .header-content {
  position: relative;
  z-index: 1;
}

.wonders-header .header-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.wonders-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.wonders-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* 简介部分 */
.wonders-intro {
  background: linear-gradient(180deg, #064e3b 0%, #065f46 100%);
  padding: 60px 0;
}

.wonders-intro .intro-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.wonders-intro .intro-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.wonders-intro h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
}

.wonders-intro p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

/* 奇观列表 */
.wonders-section {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 0;
}

.wonders-grid {
  display: grid;
  gap: 40px;
}

/* 奇观卡片 */
.wonder-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(74, 222, 128, 0.1);
  transition: all 0.4s ease;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
}

.wonder-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 222, 128, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(74, 222, 128, 0.1);
}

/* 奇数卡片反向布局 */
.wonder-card:nth-child(odd) {
  direction: rtl;
}

.wonder-card:nth-child(odd) > * {
  direction: ltr;
}

/* 卡片图片 */
.wonder-image {
  position: relative;
  overflow: hidden;
  min-height: 350px;
}

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

.wonder-card:hover .wonder-image img {
  transform: scale(1.1);
}

.wonder-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.wonder-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wonder-badge.danger {
  background: rgba(239, 68, 68, 0.8);
  border-color: rgba(239, 68, 68, 0.5);
}

.wonder-badge.night {
  background: rgba(99, 102, 241, 0.8);
  border-color: rgba(99, 102, 241, 0.5);
}

/* 卡片内容 */
.wonder-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wonder-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wonder-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* 特性列表 */
.wonder-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.wonder-features .feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.wonder-features .feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* 观赏位置 */
.wonder-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 8px;
  color: #4ade80;
  font-size: 14px;
  margin-bottom: 16px;
  width: fit-content;
}

/* 警告提示 */
.wonder-warning {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fca5a5;
  font-size: 13px;
}

/* 小贴士 */
.wonder-tip {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #a5b4fc;
  font-size: 13px;
}

/* 特殊卡片样式 */
.wonder-card-danger {
  border-color: rgba(239, 68, 68, 0.2);
}

.wonder-card-danger:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(239, 68, 68, 0.1);
}

.wonder-card-night {
  border-color: rgba(99, 102, 241, 0.2);
}

.wonder-card-night:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(99, 102, 241, 0.1);
}

/* 预约提示 */
.booking-tip {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  padding: 80px 0;
  text-align: center;
}

.booking-tip .tip-content h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 16px;
}

.booking-tip .tip-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.booking-tip .tip-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-tip .btn {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.booking-tip .btn-primary {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.booking-tip .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(34, 197, 94, 0.5);
}

.booking-tip .btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.booking-tip .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .wonder-card {
    grid-template-columns: 1fr;
  }

  .wonder-card:nth-child(odd) {
    direction: ltr;
  }

  .wonder-image {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .wonders-header {
    min-height: 40vh;
  }

  .wonders-header h1 {
    font-size: 2.5rem;
  }

  .wonders-header p {
    font-size: 1rem;
    padding: 0 20px;
  }

  .wonders-intro {
    padding: 40px 20px;
  }

  .wonders-intro h2 {
    font-size: 1.5rem;
  }

  .wonders-intro p {
    font-size: 1rem;
  }

  .wonders-section {
    padding: 40px 0;
  }

  .wonders-grid {
    gap: 24px;
    padding: 0 16px;
  }

  .wonder-image {
    min-height: 220px;
  }

  .wonder-content {
    padding: 24px;
  }

  .wonder-title {
    font-size: 1.4rem;
  }

  .wonder-desc {
    font-size: 14px;
  }

  .wonder-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .booking-tip {
    padding: 50px 20px;
  }

  .booking-tip .tip-content h3 {
    font-size: 1.5rem;
  }

  .booking-tip .tip-content p {
    font-size: 14px;
  }

  .booking-tip .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .wonders-header h1 {
    font-size: 2rem;
  }

  .wonder-image {
    min-height: 200px;
  }

  .wonder-content {
    padding: 20px;
  }

  .wonder-features .feature {
    font-size: 13px;
  }
}
