@import url('home.css');



/* Timeline */
.timeline {
  position: relative; max-width: 800px; margin: 0 auto;
  padding-left: 1.5rem;
}
@media (min-width: 768px) { .timeline { padding-left: 2.5rem; } }
.timeline::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--maple), rgba(251,146,60,0.2));
}
.timeline-item {
  position: relative; padding-bottom: 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: calc(-1.5rem - 14px); top: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--maple); border: 3px solid var(--parchment);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8rem;
  box-shadow: 0 0 15px rgba(194,65,12,0.35);
}
@media (min-width: 768px) { .timeline-dot { left: calc(-2.5rem - 17px); width: 36px; height: 36px; font-size: 0.95rem; } }
.timeline-card {
  padding: 1.25rem 1.5rem; border-radius: 0.75rem;
  background: #fff; border: 1px solid rgba(194,65,12,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.timeline-card h3 { font-family: "ZCOOL XiaoWei", serif; font-size: 1.15rem; color: var(--maple); margin-bottom: 0.5rem; }
.timeline-card p { color: #57534e; font-size: 0.95rem; }

/* Guide shots */
.guide-shots {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 768px) { .guide-shots { grid-template-columns: repeat(2, 1fr); } }
.shot-card {
  border-radius: 1rem; overflow: hidden;
  background: var(--night); border: 1px solid rgba(251,146,60,0.15);
  transition: transform 0.2s, border-color 0.2s;
}
.shot-card:hover { transform: translateY(-4px); border-color: var(--maple); }
.shot-card img { width: 100%; height: 220px; object-fit: cover; }
.shot-card figcaption { padding: 1.25rem; }
.shot-card h4 { font-family: "ZCOOL XiaoWei", serif; font-size: 1.15rem; color: var(--autumn); margin-bottom: 0.35rem; }
.shot-card p { color: var(--text-muted); font-size: 0.9rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border-radius: 0.75rem; overflow: hidden;
  background: #fff; border: 1px solid rgba(194,65,12,0.1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.faq-item summary {
  padding: 1.1rem 1.25rem; cursor: pointer;
  font-family: "ZCOOL XiaoWei", serif; font-size: 1.1rem;
  color: var(--ink); display: flex; align-items: center; gap: 0.65rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--maple); }
.faq-item p { padding: 0 1.25rem 1.25rem; color: #57534e; font-size: 0.95rem; }
.faq-item p strong { color: var(--maple); }
