/* ── Camoot SEO Pages — matches featured route detail style ─── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --green:       #1A6B4A;
  --green-dark:  #145239;
  --amber:       #B45309;
  --bg:          #F5FAF7;
  --surface:     #FFFFFF;
  --text:        rgba(0, 0, 0, 0.87);
  --text-muted:  rgba(0, 0, 0, 0.55);
  --text-faint:  rgba(0, 0, 0, 0.42);
  --border:      rgba(0, 0, 0, 0.08);
  --radius:      10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 56px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.nav-back {
  position: absolute;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.nav-back svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
}
.nav-back:hover { color: var(--green); }
.nav-back:hover svg { stroke: var(--green); }
.nav-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  max-width: 55%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Title section ──────────────────────────────────────────── */
.title-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 40px 24px;
}
.region {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.title-section h1 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 12px;
}
.stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  margin-bottom: 16px;
}
.stats-row .stat {
  font-size: 13px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.stats-row .stat svg {
  width: 13px;
  height: 13px;
  stroke: var(--text-muted);
  flex-shrink: 0;
}
.stats-row .dot {
  font-size: 16px;
  color: var(--text-faint);
  padding: 0 7px;
}
.stats-row .featured {
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.stats-row .featured svg {
  width: 13px;
  height: 13px;
  fill: var(--amber);
  stroke: none;
}
.title-intro {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(0,0,0,0.78);
  max-width: 680px;
  margin-bottom: 4px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.tag {
  background: rgba(26,107,74,0.09);
  color: var(--green);
  padding: 4px 11px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1px;
}

/* ── Hero image ─────────────────────────────────────────────── */
.hero-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  min-height: 160px;
}
@media (max-width: 700px) {
  .hero-image { aspect-ratio: 16 / 9; }
}
/* Per-destination hero photos (Unsplash, free to use) */
.hero-norway {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 50%),
    url('/images/hero-norway.jpg') center/cover no-repeat;
  background-color: #1A4B3A;
}
.hero-scotland {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 50%),
    url('/images/hero-scotland.jpg') center/cover no-repeat;
  background-color: #2B3A4A;
}
.hero-portugal {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 50%),
    url('/images/hero-portugal.jpg') center/cover no-repeat;
  background-color: #4A3A1A;
}
.hero-england {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 50%),
    url('/images/hero-england.jpg') center/cover no-repeat;
  background-color: #2A3B1A;
}
.hero-ai {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 50%),
    url('/images/hero-ai.jpg') center/cover no-repeat;
  background-color: #1A3B4A;
}
.hero-europa {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 50%),
    url('/images/hero-europa.jpg') center/cover no-repeat;
  background-color: #1A2B4A;
}

/* ── Action row ─────────────────────────────────────────────── */
.action-row {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 40px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.14);
  transition: border-color 0.15s, color 0.15s;
}
.btn-outline:hover { border-color: rgba(0,0,0,0.28); color: var(--text); }

/* ── Divider ────────────────────────────────────────────────── */
.content-divider {
  max-width: 900px;
  margin: 28px auto 0;
  border: none;
  border-top: 1px solid var(--border);
}

/* ── Content ────────────────────────────────────────────────── */
.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 40px 40px;
}
.content section { margin-bottom: 40px; }
.content h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}
.content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0,0,0,0.78);
  margin-bottom: 12px;
}
.content p:last-child { margin-bottom: 0; }
.content strong { font-weight: 600; color: var(--text); }
.content em { color: var(--text-muted); font-style: italic; }

/* ── Route list ─────────────────────────────────────────────── */
.route-list {
  list-style: none;
  counter-reset: route-counter;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.route-list li {
  counter-increment: route-counter;
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0,0,0,0.78);
}
.route-list li::before {
  content: counter(route-counter);
  min-width: 26px;
  height: 26px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CTA block ──────────────────────────────────────────────── */
.cta-block {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 56px 40px;
}
.cta-block h2 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.cta-block p {
  font-size: 15px;
  opacity: 0.88;
  max-width: 460px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--green);
  padding: 14px 28px;
  border-radius: 32px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}
.cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--green);
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo svg { width: 22px; height: 22px; stroke: var(--green); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 16px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--green); }
footer > p {
  font-size: 12px;
  color: var(--text-faint);
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .title-section  { padding: 20px 16px 16px; }
  .action-row     { padding: 16px 16px 0; }
  .content        { padding: 20px 16px 32px; }
  .content-divider{ margin-left: 16px; margin-right: 16px; }
  .cta-block      { padding: 40px 20px; }
  footer          { padding: 24px 16px; }
  .nav-title      { display: none; }
}
