/* ============================================================
   ROUTE PAGE STYLES
   Extends main styles.css for individual zip code pages
   ============================================================ */

/* Hero */
.route-hero {
  position: relative;
  padding: 130px 24px 80px;
  background: linear-gradient(145deg, #071324 0%, #0F1F3D 40%, #1A3060 70%, #0D2244 100%);
  overflow: hidden;
}
.route-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(13,155,110,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,158,11,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.route-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.route-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.route-back:hover { color: #F59E0B; }

.route-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,155,110,0.18);
  border: 1px solid rgba(13,155,110,0.4);
  color: #6EE7B7;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.route-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.route-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.route-hero__stats {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  padding: 20px 32px;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.route-hero__stat {
  text-align: center;
  padding: 0 28px;
}

/* Route Map Section */
.route-map-section { background: #fff; }
.route-map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2.5px solid #0D9B6E;
  box-shadow: 0 20px 60px rgba(13,155,110,0.12), 0 4px 16px rgba(15,31,61,0.06);
}

/* Ensure nav looks right on sub-pages */
.nav__links a { color: #4B5563 !important; }
.nav__links a:hover { color: #0F1F3D !important; }
.logo-text { color: #0F1F3D !important; }
.logo-text strong { color: #F59E0B !important; }

/* btn--amber */
.btn--amber {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #0F1F3D;
  font-weight: 700;
  border: none;
}
.btn--amber:hover {
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff;
}
