/* =========================
   TRAVEL PAGE HERO
========================= */

.page-hero{
  background:rgba(242,214,220,.6);
  padding:18px;
  border-radius:var(--radius);
}

.page-hero h1{
  font-size:40px;
}


/* =========================
   JUMP LINKS
========================= */

.jump-links{
  margin-top:12px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.jump-links a{
  font-size:13px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(230,183,195,.35);
  text-decoration:none;
  color:inherit;
  transition:.2s;
}

.jump-links a:hover{
  background:rgba(230,183,195,.55);
}


/* =========================
   COUNTRY / DESTINATION CARDS
========================= */

.country-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.country-card{
  display:block;
  background:white;
  padding:16px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:.2s;
}

.country-card:hover{
  transform:translateY(-3px);
}

.country-top{
  display:flex;
  gap:12px;
}

.country-flag{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--petal-frost);
  border-radius:14px;
  font-size:28px;
}

.country-title h2{
  margin:0;
}

.country-bullets{
  margin-top:12px;
  padding-left:18px;
  color:var(--muted);
}

.country-cta{
  margin-top:14px;
  display:flex;
  justify-content:space-between;
}

.pill{
  background:rgba(230,183,195,.35);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
}


/* =========================
   TIMELINE
========================= */

.timeline{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
}
.timeline-layout{
  display:grid;
  grid-template-columns: 1fr 420px;
  gap:20px;
  align-items:center;
}

.time-card{
  background:white;
  padding:14px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  text-align:center;
}


/* =========================
   VIBES
========================= */

.vibe-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
}

.vibe-card{
  background:rgba(242,214,220,.6);
  padding:14px;
  border-radius:var(--radius);
  text-align:center;
}

.vibe-card h3{
  margin:0 0 6px;
}


/* =========================
   CITY GRID
========================= */

.city-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.city-card{
  display:block; /* important for <a> */
  text-decoration:none;
  color:inherit;
  background:white;
  padding:16px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:.2s;
}

.city-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.city-card ul{
  padding-left:18px;
  color:var(--muted);
}

.city-image{
  height:180px;
  border-radius:14px;
  overflow:hidden;
  margin-bottom:12px;
  background:linear-gradient(180deg,var(--petal-frost),var(--soft-linen));
}

.city-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


/* =========================
   MAP (UPDATED INTERACTIVE)
========================= */

.map-wrapper{
  position:relative;
  max-width:420px;
  margin:16px auto;
  padding:10px;
  background:white;
  border-radius:18px;
  box-shadow:var(--shadow);
}

.map-wrapper img{
  width:100%;
  border-radius:16px;
  display:block;
}

/* clickable labels */
.map-point{
  position:absolute;
  background:white;
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  text-decoration:none;
  color:#333;
  font-weight:600;

  box-shadow:0 4px 10px rgba(0,0,0,0.15);
  transition:all 0.2s ease;
}

.map-point:hover{
  background:#f8d7e3;
  transform:translateY(-2px) scale(1.05);
}

.map-point:active{
  transform:scale(0.95);
}

/* small map pin dot */
.map-point::before{
  content:"";
  position:absolute;
  top:-6px;
  left:50%;
  transform:translateX(-50%);
  width:8px;
  height:8px;
  background:#e6a8b5;
  border-radius:50%;
}

/* positions (tweak if needed) */
.tokyo{
  top:55%;
  left:75%;
}

.kyoto{
  top:60%;
  left:65%;
}

.osaka{
  top:65%;
  left:63%;
}

.hokkaido{
  top:20%;
  left:80%;
}
.spot-section {
  margin: 60px 0;
}

.spot-image {
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.spot-image img {
  width: 100%;
  height: auto;
  display: block;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.info-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.info-box h4 {
  margin-bottom: 10px;
}

.info-box p {
  font-size: 14px;
  margin-bottom: 12px;
}

.info-box ul {
  padding-left: 18px;
  margin-bottom: 12px;
}

.btn-secondary {
  display: inline-block;
  padding: 8px 14px;
  background: #f3e3e8;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
}


/* =========================
   TIPS
========================= */

.tips-list{
  margin-top:10px;
  padding-left:18px;
  color:var(--muted);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width:900px){

  .country-grid{
    grid-template-columns:1fr;
  }

  .timeline{
    grid-template-columns:1fr;
  }

  .vibe-grid{
    grid-template-columns:1fr 1fr;
  }

  .city-grid{
    grid-template-columns:1fr;
  }

}

@media (max-width:600px){
  .map-wrapper{
    max-width:100%;
  }
}