/* ════════════════════════════════════════════════════════════════════════
   Detail-Seite · Norwegen-Reise
   ════════════════════════════════════════════════════════════════════════ */

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f0f4f8;
  color: #2c3e50;
  line-height: 1.55;
}
a { color: #2980b9; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Header ─── */
.page-header {
  background: white;
  border-bottom: 1px solid #e1e8ed;
  padding: 14px 0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.back {
  font-size: 14px;
  color: #555;
  font-weight: 600;
}
.back:hover { color: #2980b9; text-decoration: none; }
.brand { font-size: 13px; color: #888; font-weight: 600; }

/* ─── Hero ─── */
.hero {
  padding: 60px 0;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-day {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-shadow: none;
}
.hero h1 {
  font-size: 38px;
  margin: 0 0 8px 0;
  font-weight: 800;
}
.hero-sub {
  font-size: 17px;
  margin: 0 0 18px 0;
  opacity: 0.95;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}
.hero-meta span {
  background: rgba(0,0,0,0.18);
  padding: 4px 12px;
  border-radius: 12px;
  text-shadow: none;
}

/* ─── Content-Blöcke ─── */
.block {
  max-width: 1100px;
  margin: 32px auto;
  padding: 0 24px;
}
.block h2 {
  font-size: 22px;
  margin: 0 0 14px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e1e8ed;
}
.block p { margin: 8px 0; }
.block .lead { color: #7f8c8d; margin-bottom: 14px; }

/* ─── Cards-Grid (Sehenswürdigkeiten + Übernachtung) ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
}
.card h3 {
  margin: 6px 0 8px 0;
  font-size: 16px;
  color: #2c3e50;
}
.card p { font-size: 14px; margin: 4px 0; color: #444; }
.card-icon { font-size: 28px; line-height: 1; margin-bottom: 4px; }
.meta-line { font-size: 12px !important; color: #7f8c8d !important; }
.meta-kid { color: #c0392b !important; font-weight: 600; }

/* Sight-Card-Akzent */
.card.sight { border-top: 3px solid #16a085; }
.card.lodging { border-top: 3px solid #8e44ad; }

.lodging-tier {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: #ecf0f1;
  color: #555;
  padding: 2px 8px;
  border-radius: 8px;
  align-self: flex-start;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.lodging-type {
  font-size: 12px !important;
  color: #8e44ad !important;
  font-weight: 600;
  margin: 0 0 6px 0 !important;
}

/* ─── Links-Reihen ─── */
.links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #eee;
}
.links-row a {
  font-size: 12px;
  background: #ecf0f1;
  padding: 4px 10px;
  border-radius: 12px;
  color: #2980b9;
  font-weight: 500;
  white-space: nowrap;
}
.links-row a:hover {
  background: #d6e9f5;
  text-decoration: none;
}

/* ─── Praktische Liste ─── */
.practical-list {
  background: white;
  border-radius: 10px;
  padding: 16px 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  list-style: none;
}
.practical-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f4f8;
  font-size: 14px;
}
.practical-list li:last-child { border-bottom: none; }

/* ─── Externe Links ─── */
.external-links {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
}
.external-links li a {
  display: block;
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 4px solid #2980b9;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  color: #2c3e50;
}
.external-links li a:hover {
  background: #f5fbff;
  text-decoration: none;
}
.ext-label { display: block; font-weight: 600; }
.ext-host { display: block; font-size: 11px; color: #888; }

/* ─── Etappen-Navigation unten ─── */
.stage-nav {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stage-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  font-size: 14px;
  color: #2c3e50;
  font-weight: 600;
}
.stage-nav a:hover { background: #f5fbff; text-decoration: none; }
.stage-nav small { color: #888; font-weight: 400; font-size: 11px; }
.stage-nav .nav-next { justify-content: flex-end; text-align: right; }

/* ─── Footer ─── */
.page-footer {
  text-align: center;
  padding: 24px;
  color: #95a5a6;
  font-size: 12px;
}

/* ─── Error ─── */
.error-box {
  max-width: 600px;
  margin: 80px auto;
  padding: 32px;
  background: white;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* ─── Mobile ─── */
@media (max-width: 700px) {
  .hero h1 { font-size: 28px; }
  .stage-nav { grid-template-columns: 1fr; }
  .external-links { grid-template-columns: 1fr; }
}
