/* Destination Detail Page Styles */

/* Detail Hero */
.detail-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.85) 0%, rgba(26,39,68,0.4) 50%, rgba(26,39,68,0.2) 100%);
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 60px 32px;
  color: var(--white);
}

.back-link {
  display: inline-block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--white);
}

.detail-hero h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.detail-highlights {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.detail-bestfor {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* Detail Intro */
.detail-intro {
  padding: 80px 0;
  background: var(--beige);
}

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

.detail-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* Detail Routes */
.detail-routes {
  padding: 80px 0;
  background: var(--white);
}

.detail-routes h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.route-card {
  background: var(--beige);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.route-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.route-duration {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(196, 150, 58, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.route-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
}

.route-highlights {
  flex: 1;
  margin-bottom: 20px;
}

.route-highlights h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 12px;
}

.route-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.route-highlights li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.route-highlights li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.route-ideal {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
}

.route-price {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}

.price-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
}

.price-note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

.route-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.3s ease;
}

.route-cta:hover {
  background: var(--gold);
}

/* Routes Note */
.routes-note {
  margin-top: 48px;
  padding: 24px;
  background: rgba(196, 150, 58, 0.08);
  border-radius: 8px;
  text-align: center;
}

.routes-note p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* Detail CTA */
.detail-cta {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
  color: var(--white);
}

.detail-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.detail-cta h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--white);
}

.detail-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .detail-hero h1 {
    font-size: 2.5rem;
  }
  
  .detail-hero {
    min-height: 350px;
  }
}

@media (max-width: 640px) {
  .routes-grid {
    grid-template-columns: 1fr;
  }
  
  .detail-hero h1 {
    font-size: 2rem;
  }
  
  .detail-intro,
  .detail-routes,
  .detail-cta {
    padding: 60px 0;
  }
}
