@import "../styles.css";

/* Tour-detail page additions shared by every individual tour page. */
.tour-hero { padding: 64px 24px 48px; max-width: 860px; margin: 0 auto; }
.tour-type-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.tour-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.tour-hero h1 em { font-style: normal; color: var(--accent); }
.tour-hero-sub { font-size: clamp(1rem, 2.2vw, 1.15rem); color: var(--muted); max-width: 600px; margin-bottom: 28px; }
.tour-meta-bar { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.9rem; color: var(--muted); padding: 16px 20px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 32px; box-shadow: var(--shadow); }
.tour-meta-bar span { display: flex; align-items: center; gap: 6px; }
.tour-cover-full { width: 100%; max-height: 360px; object-fit: cover; border-radius: var(--radius); display: block; box-shadow: var(--shadow-lg); margin-bottom: 0; }

.stops-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.stop-item { display: flex; gap: 16px; align-items: flex-start; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; box-shadow: var(--shadow); }
.stop-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--accent-bg); border: 1.5px solid rgba(58,140,140,0.25); color: var(--accent); font-weight: 800; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; }
.stop-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.stop-info p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; margin-bottom: 0; }

.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 8px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
details { border-bottom: 1px solid var(--border); background: var(--card); }
details:last-child { border-bottom: none; }
summary { padding: 18px 20px; font-size: 0.95rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; font-weight: 400; flex-shrink: 0; margin-left: 12px; }
details[open] summary::after { content: "-"; }
details[open] summary { color: var(--accent); }
.faq-answer { padding: 0 20px 18px; font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.faq-answer p { margin-bottom: 0; }

.tour-card-cover { width: 100%; height: 150px; object-fit: cover; display: block; background: var(--surface); }
.tour-card-cover-placeholder { width: 100%; height: 150px; background: linear-gradient(135deg, var(--accent-bg) 0%, var(--surface) 100%); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; }
.tour-card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tour-card-type { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.tour-card h3 { font-size: 0.95rem; font-weight: 700; line-height: 1.3; }
.tour-card p { font-size: 0.82rem; color: var(--muted); flex: 1; line-height: 1.55; }
.tour-card-meta { display: flex; gap: 10px; flex-wrap: wrap; font-size: 0.78rem; color: var(--muted); margin-top: 4px; padding-top: 10px; border-top: 1px solid var(--border); }

@media (max-width: 640px) {
  .tour-hero { padding: 40px 20px 32px; }
}
