/* ========================================
   SCHEDULE PAGE — 详细日程页面专用样式
   依赖 style.css 全局变量和基础组件
   ======================================== */

/* ===== Page Hero ===== */
.schedule-hero {
  padding: 140px 0 60px;
  background-image: url('../images/hero-kids-wilderness.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  position: relative;
  min-height: 400px;
}

.schedule-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,21,66,0.75) 0%, rgba(0,50,150,0.55) 100%);
  z-index: 0;
}

.schedule-hero > * {
  position: relative;
  z-index: 1;
}

/* Section title gradient underline enhancement */
.schedule-tabs-section .section-title::after,
.day-overview .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Day marker font - ensure English numbers use Nunito */
.day-marker {
  font-family: var(--font-en);
}

/* Day number in overview cards */
.day-overview-card .day-num {
  font-family: var(--font-en);
}

/* Timeline marker */
.timeline-marker {
  font-family: var(--font-en);
}

/* Line height optimization for better readability */
.time-slot .slot-desc {
  line-height: 1.85;
}

.day-card-header .day-info .day-subtitle {
  line-height: 1.85;
}

.schedule-hero .breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.schedule-hero .breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.schedule-hero .breadcrumb a:hover {
  color: #FDD22B;
}

.schedule-hero h1 {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #FDD22B;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.schedule-hero .hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.schedule-hero .hero-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.schedule-hero .hero-tag {
  background: rgba(253,210,43,0.15);
  border: 1px solid rgba(253,210,43,0.4);
  color: #FDD22B;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ===== Day Overview — 6天缩略横条 ===== */
.day-overview {
  padding: 60px 0;
  background: #FAF9F6;
}

.day-overview .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.day-overview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.day-overview-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,50,150,0.08);
  border-top: 4px solid var(--color-primary, #003296);
  transition: transform 0.3s, box-shadow 0.3s;
}

.day-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,50,150,0.12);
}

.day-overview-card .day-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003296, #001021);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 12px;
}

.day-overview-card .day-phase {
  font-size: 14px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 6px;
}

.day-overview-card .day-title {
  font-size: 12px;
  color: #4a5568;
  line-height: 1.5;
}

.day-overview-card .wilder-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(0,50,150,0.1);
  color: #003296;
}

/* ===== Legend ===== */
.schedule-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4a5568;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.legend-dot.course { background: #003296; }
.legend-dot.field { background: #00D166; }
.legend-dot.free { background: #D1B691; }
.legend-dot.special { background: #FDD22B; }

/* ===== Camp Tabs ===== */
.schedule-tabs-section {
  padding: 80px 0;
  background: #fff;
}

.schedule-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.schedule-tab {
  padding: 12px 24px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  min-height: 44px;
}

.schedule-tab:hover {
  border-color: #003296;
  color: #003296;
}

.schedule-tab.active {
  background: linear-gradient(135deg, #003296, #001021);
  color: #fff;
  border-color: transparent;
}

.schedule-tab .tab-icon {
  font-size: 18px;
}

/* ===== Camp Panel ===== */
.schedule-panel {
  display: none;
}

.schedule-panel.active {
  display: block;
}

/* Camp Info Card */
.camp-info-card {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background: linear-gradient(135deg, #FAF9F6, #edf2f7);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 40px;
  border: 1px solid #e2e8f0;
  min-height: 280px;
}

.camp-info-card img {
  width: 380px;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  border: 2px solid var(--color-primary-100, #b3c4e8);
  transition: border-color 0.3s ease;
}

.camp-info-card:hover img {
  border-color: var(--color-accent);
}

.camp-info-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 6px;
}

.camp-info-text .camp-exclusive {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(135deg, #FDD22B 0%, #D4A017 100%);
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(253,210,43,0.25);
}

.camp-info-text .camp-location {
  font-size: 14px;
  color: #003296;
  font-weight: 600;
  margin-bottom: 8px;
}

.camp-info-text .camp-base {
  font-size: 13px;
  color: #4a5568;
  margin-bottom: 8px;
}

.camp-info-text .camp-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.camp-info-text .camp-feature-tag {
  background: rgba(0,50,150,0.1);
  color: #003296;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== Day Cards ===== */
.day-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.day-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,50,150,0.08);
  overflow: hidden;
  border: 1px solid #edf2f7;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  position: relative;
}
.day-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #003296, #001021);
  border-radius: 16px 0 0 16px;
  z-index: 1;
}
.day-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #003296, #001021);
  border-radius: 16px 16px 0 0;
  z-index: 1;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.day-card:hover::after {
  width: 100%;
}

.day-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,50,150,0.15);
}

.day-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: linear-gradient(135deg, #FAF9F6, #fff);
  border-bottom: 1px solid #edf2f7;
}

.day-card-header .day-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #003296, #001021);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1.2;
  text-align: center;
}

.day-card-header .day-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 4px;
}

.day-card-header .day-info .day-subtitle {
  font-size: 13px;
  color: #4a5568;
}

.day-card-header .wilder-day-badge {
  margin-left: auto;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.wilder-w { background: #fef3c7; color: #92400e; }
.wilder-i { background: #dbeafe; color: #1e40af; }
.wilder-l { background: #d1fae5; color: #065f46; }
.wilder-d { background: #ede9fe; color: #5b21b6; }
.wilder-e { background: #fce7f3; color: #9d174d; }
.wilder-r { background: #fee2e2; color: #991b1b; }

/* ===== Time Slots ===== */
.day-card-body {
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.time-slot {
  border-radius: 16px;
  padding: 20px;
  border-left: 4px solid;
  position: relative;
  display: flex;
  flex-direction: column;
}

.time-slot .slot-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.time-slot .slot-time {
  font-size: 11px;
  color: #a0aec0;
  margin-bottom: 8px;
}

.time-slot .slot-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.time-slot .slot-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #4a5568;
}

/* ===== Time Slot Image Placeholder ===== */
.time-slot-image {
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
  min-height: 120px;
  background: linear-gradient(135deg, rgba(0,50,150,0.06) 0%, rgba(0,16,33,0.08) 100%);
  border: 1px dashed rgba(0,50,150,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.time-slot-image::before {
  content: '📷 待添加实景照片';
  font-size: 12px;
  color: #a0aec0;
  font-weight: 500;
}
.time-slot-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ===== Collage Layout ===== */
.time-slot-image.collage {
  display: grid;
  gap: 3px;
  background: #e2e8f0;
  border: none;
}
.time-slot-image.collage::before {
  display: none;
}
.time-slot-image.collage img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: auto;
  border-radius: 0;
}
.time-slot-image.collage-2 {
  grid-template-columns: 1fr 1fr;
}
.time-slot-image.collage-3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.time-slot-image.collage-3 img:first-child {
  grid-row: 1 / -1;
}
.time-slot-image.collage-4 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

/* Course slot - 课程类：品牌蓝 #003296 */
.slot-course {
  background: rgba(0,50,150,0.08);
  border-color: #003296;
  border-left-width: 5px;
}
.slot-course .slot-label { 
  color: #003296; 
  font-weight: 800;
}
.slot-course .slot-title { color: #002070; }

/* Field slot - 户外活动类：科创绿 #00D166 */
.slot-field {
  background: rgba(0,209,102,0.08);
  border-color: #00D166;
  border-left-width: 5px;
}
.slot-field .slot-label { 
  color: #00A352; 
  font-weight: 800;
}
.slot-field .slot-title { color: #047857; }

/* Free slot - 休息类：浅木色 #D1B691 */
.slot-free {
  background: rgba(209,182,145,0.12);
  border-color: #D1B691;
  border-left-width: 5px;
}
.slot-free .slot-label { 
  color: #A08060; 
  font-weight: 800;
}
.slot-free .slot-title { color: #6B5B4F; }

/* Activity type color coding - 特别活动：品牌黄 #FDD22B */
.slot-special {
  background: rgba(253,210,43,0.12);
  border-color: #FDD22B;
  border-left-width: 5px;
}
.slot-special .slot-label { 
  color: #C9A000; 
  font-weight: 800;
}
.slot-special .slot-title { color: #8B7300; }

/* Enhanced border colors */
.slot-course { border-left-color: #003296 !important; }
.slot-field { border-left-color: #00D166 !important; }
.slot-free { border-left-color: #D1B691 !important; }
.slot-special { border-left-color: #FDD22B !important; }

/* ===== Age Differentiation ===== */
.age-diff {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
}

.age-diff-title {
  font-size: 11px;
  font-weight: 700;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.age-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.6;
  color: #4a5568;
}

.age-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.age-tag-lower { background: #d1fae5; color: #065f46; }
.age-tag-upper { background: #dbeafe; color: #1e40af; }
.age-tag-middle { background: #ede9fe; color: #5b21b6; }

/* ===== CTA Section ===== */
.schedule-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #003296 0%, #001021 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.schedule-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* 添加光晕效果 */
.schedule-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(253,210,43,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.schedule-cta .container {
  position: relative;
  z-index: 1;
}

.schedule-cta h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, #FDD22B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.schedule-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.schedule-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.schedule-cta .btn-primary {
  background: linear-gradient(135deg, #FDD22B 0%, #D4A017 100%);
  color: #001021;
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(253,210,43,0.35);
  border: none;
  display: inline-block;
}

.schedule-cta .btn-primary:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 40px rgba(253,210,43,0.5);
}

.schedule-cta .btn-primary:active {
  transform: translateY(-2px) scale(0.98);
}

.schedule-cta .btn-secondary {
  background: transparent;
  color: #fff;
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
  display: inline-block;
}

.schedule-cta .btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px) scale(1.05);
}

.schedule-cta .btn-secondary:active {
  transform: translateY(-2px) scale(0.98);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .day-overview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .day-card-body {
    grid-template-columns: 1fr;
  }
  .camp-info-card {
    flex-direction: column;
    text-align: center;
  }
  .camp-info-text .camp-features {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .schedule-hero h1 {
    font-size: 28px;
  }
  .schedule-hero .hero-desc {
    font-size: 15px;
  }
  .day-overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .schedule-tabs {
    gap: 6px;
  }
  .schedule-tab {
    padding: 10px 16px;
    font-size: 12px;
  }
  .camp-info-card {
    padding: 20px;
  }
  .camp-info-card img {
    width: 100%;
    height: 200px;
  }
  .day-card-header {
    flex-wrap: wrap;
    padding: 16px 20px;
  }
  .day-card-body {
    padding: 16px 20px;
  }
  .time-slot {
    padding: 16px;
  }
  .schedule-cta h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .schedule-hero {
    padding: 120px 0 40px;
  }
  .schedule-hero h1 {
    font-size: 24px;
  }
  .day-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .schedule-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .schedule-tab {
    flex-shrink: 0;
  }
  .day-card-header .wilder-day-badge {
    margin-left: 0;
    margin-top: 8px;
  }
  .schedule-legend {
    gap: 12px;
  }
}

/* ===== 30-Second Overview Section ===== */
.schedule-overview-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #FAF9F6 0%, #edf2f7 100%);
}

.overview-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.overview-timeline-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,50,150,0.06);
  border-top: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.overview-timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,50,150,0.12);
}

.overview-day-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003296, #001021);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 12px;
  font-family: var(--font-en);
}

.overview-phase {
  font-size: 14px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 6px;
}

.overview-title {
  font-size: 12px;
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 8px;
}

.overview-wilder {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}

/* WILDER badge colors */
.wilder-w { background: rgba(253,210,43,0.15); color: #b8860b; }
.wilder-i { background: rgba(0,50,150,0.1); color: #003296; }
.wilder-l { background: rgba(72,187,120,0.15); color: #276749; }
.wilder-d { background: rgba(128,90,213,0.15); color: #553c9a; }
.wilder-e { background: rgba(237,100,166,0.15); color: #97266d; }
.wilder-r { background: rgba(245,101,101,0.15); color: #9b2c2c; }

/* Camp-specific overview panels */
.camp-overview-panel {
  display: none;
}
.camp-overview-panel.active {
  display: block;
}

/* ===== Deliverables Section ===== */
.deliverables-section {
  padding: 80px 0;
  background: #fff;
}

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

.deliverable-card {
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.deliverable-card:nth-child(1) {
  background: linear-gradient(135deg, #1B3A5C, #1E4D7B);
}
.deliverable-card:nth-child(2) {
  background: linear-gradient(135deg, #2D4A22, #3A6B35);
}
.deliverable-card:nth-child(3) {
  background: linear-gradient(135deg, #5C2D82, #7B3FA0);
}

.deliverable-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.deliverable-icon {
  font-size: 32px;
  margin-bottom: 16px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
}

.deliverable-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.deliverable-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 12px;
}

.deliverable-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.deliverable-tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* Responsive for overview and deliverables */
@media (max-width: 1024px) {
  .overview-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .overview-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Equipment Section (孩子手里拿的是什么) ===== */
.equipment-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0,16,33,0.92) 0%, rgba(0,50,150,0.92) 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.equipment-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,16,33,0.92) 0%, rgba(0,50,150,0.92) 100%);
  z-index: 0;
}

.equipment-section > .container {
  position: relative;
  z-index: 1;
}

/* 各营期实景照片背景 */
.camp-guizhou.equipment-section {
  background-image: url('../images/schedule-guizhou.jpg');
}

.camp-tengger.equipment-section {
  background-image: url('../images/schedule-tengger.jpg');
}

.camp-wolong.equipment-section {
  background-image: url('../images/schedule-wolong.jpg');
}

.camp-hefei.equipment-section {
  background-image: url('../images/schedule-hefei.jpg');
}

.camp-xixi.equipment-section {
  background-image: url('../images/schedule-xixi.jpg');
}

/* 强制覆盖全局渐变文字样式，使用纯白色 */
.equipment-section .section-title {
  background: none !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  text-align: center;
}

/* 装饰线样式 - 居中 */
.equipment-section .section-title::after {
  background: linear-gradient(90deg, #FDD22B 0%, rgba(253,210,43,0.2) 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-left: auto !important;
  margin-right: auto !important;
}

.equipment-section .section-desc {
  color: rgba(255,255,255,0.9) !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}


.equipment-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.equipment-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.equipment-table thead {
  background: rgba(255,255,255,0.1);
}

.equipment-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #FDD22B;
  border-bottom: 2px solid rgba(253,210,43,0.3);
}

.equipment-table td {
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
}

.equipment-table tbody tr {
  transition: all 0.3s ease;
}

.equipment-table tbody tr:hover {
  background: rgba(255,255,255,0.05);
}

.equipment-table tbody tr:last-child td {
  border-bottom: none;
}

.equipment-name {
  font-weight: 700;
  color: #FDD22B;
  font-size: 15px;
}

.equipment-function {
  color: rgba(255,255,255,0.9);
}

.equipment-perception {
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* Camp-specific accent colors for equipment section */
.camp-guizhou.equipment-section .section-title::after {
  background: linear-gradient(90deg, #A78BFA 0%, rgba(167,139,250,0.2) 100%);
}
.camp-guizhou .equipment-table th {
  color: #A78BFA;
}
.camp-guizhou .equipment-name {
  color: #A78BFA;
}

.camp-tengger.equipment-section .section-title::after {
  background: linear-gradient(90deg, #FDD22B 0%, rgba(253,210,43,0.2) 100%);
}
.camp-tengger .equipment-table th {
  color: #FDD22B;
}
.camp-tengger .equipment-name {
  color: #FDD22B;
}

.camp-wolong.equipment-section .section-title::after {
  background: linear-gradient(90deg, #4ADE80 0%, rgba(74,222,128,0.2) 100%);
}
.camp-wolong .equipment-table th {
  color: #4ADE80;
}
.camp-wolong .equipment-name {
  color: #4ADE80;
}

.camp-hefei.equipment-section .section-title::after {
  background: linear-gradient(90deg, #60A5FA 0%, rgba(96,165,250,0.2) 100%);
}
.camp-hefei .equipment-table th {
  color: #60A5FA;
}
.camp-hefei .equipment-name {
  color: #60A5FA;
}

.camp-xixi.equipment-section .section-title::after {
  background: linear-gradient(90deg, #22D3EE 0%, rgba(34,211,238,0.2) 100%);
}
.camp-xixi .equipment-table th {
  color: #22D3EE;
}
.camp-xixi .equipment-name {
  color: #22D3EE;
}

/* Responsive for equipment section */
@media (max-width: 768px) {
  .equipment-section {
    padding: 60px 0;
  }
  
  .equipment-table th,
  .equipment-table td {
    padding: 16px;
    font-size: 13px;
  }
  
  .equipment-name {
    font-size: 14px;
  }
}
