:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --brand: #2557D6;
  --brand-2: #0ea5e9;
  --surface: #f8fafc;
  --card: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(15, 23, 42, .08);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: min(1080px, 92vw);
  margin-inline: auto
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(180%) blur(10px);
  background: rgba(255, 255, 255, .8);
  border-bottom: 1px solid #e2e8f0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain
}

.brand span {
  font-weight: 700;
  letter-spacing: .2px
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 20px 0 28px;
  background: linear-gradient(to right, rgba(37, 87, 214, .12), rgba(14, 165, 233, .12));
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  padding: 28px;
  align-items: center
}

.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: .2px;
}

.hero p {
  margin: 0;
  color: var(--muted)
}

.hero .pill {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  margin-bottom: 10px;
}

.hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr .8fr;
}

@media(max-width:860px) {
  .hero-inner {
    grid-template-columns: 1fr
  }

  .grid {
    grid-template-columns: 1fr
  }
}

.card {
  background: var(--card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  margin: 5px;
}

.card h2 {
  margin: 4px 0 8px;
  font-size: 20px
}

.card p {
  margin: 4px 0 10px
}

.card ul {
  margin: 6px 0 0 0;
  padding: 0;
  list-style: none
}

.card li {
  padding: 8px 0;
  border-top: 1px dashed #e5e7eb
}

.card li:first-child {
  border-top: 0
}

.info {
  display: grid;
  gap: 16px;
}

.kv {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  margin: 5px;
}

.kv strong {
  display: block;
  margin-bottom: 2px
}

.kv small {
  color: var(--muted)
}

.badge {
  background: rgba(37, 87, 214, .08);
  color: #1e3a8a;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(37, 87, 214, .15)
}

.cta {
  margin: 26px 0 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #1d4ed8;
  background: linear-gradient(to right, var(--brand), var(--brand-2));
  color: white;
  box-shadow: var(--shadow);
}

.button.secondary {
  border-color: #e2e8f0;
  background: #ffffff;
  color: #0f172a
}

.button .icon {
  font-size: 18px
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0 8px;
}

.section-title h2 {
  margin: 0;
  font-size: 22px
}

.section-title span {
  color: var(--muted)
}

.embed {
  border: 0;
  width: 100%;
  height: 300px;
  border-radius: 12px;
  box-shadow: var(--shadow)
}

.site-footer {
  margin: 36px 0 24px;
  color: var(--muted);
  font-size: 14px;
  text-align: center
}

.site-footer a {
  color: var(--muted)
}

.city-card {
  display: block;   /* maakt de hele <a> klikbaar */
  text-decoration: none;
  color: inherit;
}
.city-card .button {
  pointer-events: none; /* voorkomt dat alleen de knop klikt ipv de hele kaart */
}