body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:linear-gradient(135deg, #1e3c72, #2a5298, #38b48b);
  color: white;
}

header {
  background:white;
  padding: 15px 20px;
  }

h1, h2, h3 {
  margin: 10px 0;
}

section {
  padding: 40px 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.btn {
  display: inline-block;
  padding: 10px 15px;
  background: #00c896;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background: #00e6ac;
}

.card {
  background: #111f3a;
  padding: 20px;
  margin: 15px 0;
  border-radius: 10px;
}

footer {
  background: #111f3a;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
.logo {
  height: 100%;
  width: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #222;
}

.logo {
  height: 45px;
  width: auto;
}

.brand strong {
  display: block;
  font-size: 18px;
}

.brand small {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}
/* === Overzichtelijke header/nav === */

/* Zorg dat de header in 1 lijn blijft */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo + tekst netjes naast elkaar */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}

.logo {
   height: 80px !important;
  width: auto;
}

.brand strong { display:block; font-size:18px; }
.brand small  { display:block; font-size:12px; opacity:.8; }

/* Desktop menu horizontaal */
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: white;
  text-decoration: none;
  opacity: .9;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-list a:hover { background: rgba(255,255,255,.08); }

/* Menu knop alleen op mobiel */
.nav-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}

/* Mobiel: menu inklapbaar */
@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }

  .nav-list {
    display: none;              /* standaard dicht */
    position: absolute;
    right: 20px;
    top: 70px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: #111f3a;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 10px;
    min-width: 220px;
    z-index: 999;
  }.site-header {
  background: white;
}

..site-header {
  background: white;
  padding: 10px 20px;
  min-height: 110px;     
  display: flex;
  align-items: center;

.nav-list a {
  color: #0b1220;
.btn-primary {
  background: #00c896;
  color: white;
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100px;
/* Zoom-in op logo (snijdt witruimte weg) */
.logo {
  height: 95px;
  width: auto;
}

.logo{
  height: 120px !important;
  width: auto !important;
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero > * {
  position: relative;
}
.hero{
  min-height: 520px;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.20);
}
.hero > *{
  position: relative;
}
.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero {
  padding: 100px 0;
}.hero{
  min-height: 600px;
  padding: 100px 0;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.35);
}

.hero > *{
  position: relative;
}
/* Header netter + compacter */
.site-header{
  background: #fff;
  padding: 10px 0;
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand (logo + tekst) */
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo{
  height: 60px;
  width: auto;
}

/* Kleinere titel/subtitel in header */
.brand strong{
  font-size: 16px;
  line-height: 1.1;
  color: #0b1220;
}
.brand small{
  display: block;
  font-size: 12px;
  color: #334155;
  margin-top: 2px;
}
.hero-card{
  max-width: 520px;
  margin-top: 20px;
}

.hero-card .card{
  padding: 20px;
}
/* Hero layout verbeteren */
.hero-inner{
  display: grid;
  align-items: center;
  gap: 40px;
}

/* Hero card laten zweven */
.hero-card{
  position: relative;
  margin-top: 60px;
}

.hero-card .card{
  background: #0f1f3a;
  color: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
@media (max-width: 900px){
  .hero-inner{
 
  }

  .hero-card{
    margin-top: 30px;
  }
.hero-card .btn{
  margin-top: 15px;
  display: inline-block;
}

}
/* ===== Kaart + Atjoni strak naast elkaar ===== */

.map-section .map-flex{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap;   /* belangrijk */
}

.map-container,
.atjoni-container{
  width: 320px;
}

.map-container img,
.atjoni-container img{
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
/* ===== Kaart & Atjoni naast elkaar ===== */

.map-flex{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.map-box{
  flex: 1;
  max-width: 500px;
}

.map-box img{
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.map-box h3{
  margin-bottom: 10px;
}

.map-box p{
  margin-bottom: 15px;
  line-height: 1.6;
}
.brand-subtext {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #4b6b4b;
    letter-spacing: 0.6px;
    margin-top: 4px;
}