:root {
  --bg: #f6f8fb;
  --bg-alt: #e9eef5;
  --text: #13233c;
  --accent: #0f4c81;
  --accent-dark: #0b3a63;
  --gold: #c9a227;
  --gold-dark: #9a7b1e;
  --card: #ffffff;
  --border: #d8e1ec;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 248, 251, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

.brand {
  text-decoration: none;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

nav a {
  text-decoration: none;
  color: var(--text);
  margin-left: 1rem;
  font-weight: 500;
}

nav a.active,
nav a:hover { color: var(--accent); }

.hero {
  position: relative;
  background:
    linear-gradient(rgba(12, 26, 44, 0.66), rgba(12, 26, 44, 0.5)),
    url("../images/hero-europe.jpg") center 35% / cover no-repeat,
    var(--accent-dark);
  color: #fff;
  padding: 7rem 0 6rem;
}

.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.2; margin: 0.7rem 0; color: #fff; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--gold-dark); }
.hero .eyebrow { color: #e6c26e; }
.lead { font-size: 1.1rem; max-width: 800px; }
.hero .lead { color: rgba(255, 255, 255, 0.93); }

.btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn:hover { background: var(--accent-dark); }
.hero .btn,
.page-hero .btn {
  background: var(--gold);
  color: #14213d;
}
.hero .btn:hover,
.page-hero .btn:hover { background: #b08d1f; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}
.btn-outline:hover { background: rgba(15, 76, 129, 0.08); }

.section { padding: 3.5rem 0; }
.warm-bg { background: var(--bg-alt); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem;
  box-shadow: 0 8px 20px rgba(15, 40, 80, 0.08);
}

.card-media {
  margin: -1.1rem -1.1rem 1.1rem;
  height: 200px;
  border-radius: 11px 11px 0 0;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-subtitle { color: var(--gold-dark); font-weight: 600; }
.speech { font-size: 1.15rem; }
.check-list li { margin-bottom: 0.35rem; }
.mt { margin-top: 1rem; }

/* Country pages */
.page-hero {
  position: relative;
  padding: 4rem 0 3.5rem;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-color: var(--accent-dark);
  background-blend-mode: normal;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.2;
  margin: 0.6rem 0;
  color: #fff;
}
.page-hero .lead { color: rgba(255, 255, 255, 0.93); }
.page-hero .flag { font-size: 3rem; display: block; line-height: 1; }

.hero-belgium {
  background-image:
    linear-gradient(rgba(12, 26, 44, 0.6), rgba(12, 26, 44, 0.45)),
    url("../images/belgium-hero.jpg");
}
.hero-netherlands {
  background-image:
    linear-gradient(rgba(12, 26, 44, 0.6), rgba(12, 26, 44, 0.45)),
    url("../images/netherlands-hero.jpg");
}
.hero-france {
  background-image:
    linear-gradient(rgba(12, 26, 44, 0.6), rgba(12, 26, 44, 0.45)),
    url("../images/france-hero.jpg");
}
.hero-germany {
  background-image:
    linear-gradient(rgba(12, 26, 44, 0.6), rgba(12, 26, 44, 0.45)),
    url("../images/germany-hero.jpg");
}

.breadcrumb {
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
}
.page-hero .breadcrumb a { color: #e6c26e; text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero .eyebrow { color: #e6c26e; }

.highlight-list {
  list-style: none;
  padding: 0;
}
.highlight-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
}
.highlight-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.card-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }

.country-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

/* Contact form */
.contact-form {
  display: grid;
  gap: 0.55rem;
  max-width: 640px;
}

input, select, textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: inherit;
}

.notice {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  max-width: 760px;
}
.notice.success { background: #e3f6e8; border: 1px solid #9ed1aa; }
.notice.error { background: #ffe8e8; border: 1px solid #e7aaaa; }
.small { font-size: 0.92rem; }

/* Honeypot field: invisible to humans, traps bots */
.hp-field {
  position: absolute;
  left: -10000px;
  top: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  background: #0c1a2c;
  color: #dbe4f0;
  padding: 2rem 0 1rem;
}

.site-footer a { color: #e6c26e; }
.site-footer h3, .site-footer h4 { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.tiny {
  padding-top: 1rem;
  border-top: 1px solid rgba(230, 194, 110, 0.25);
  margin-top: 1rem;
  font-size: 0.85rem;
}

/* Burger navigation toggle (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  background: var(--accent-dark);
  border-radius: 2px;
  transition: background 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--accent-dark);
  border-radius: 2px;
  transition: top 0.25s ease, transform 0.25s ease;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 740px) {
  .nav-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
  }
  .nav-toggle { display: flex; }
  nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
  }
  nav.open { display: flex; }
  nav a {
    margin: 0;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }
  nav a:last-child { border-bottom: none; }
}
