/* ========== Basis ========== */
:root {
  --blue: #1B437B;        /* rechterpaneel */
  --text-dark: #0b1220;   /* linkerkant */
  --text-light: #ffffff;  /* hoofdtekst rechts */
  --muted: #cfd7e4;       /* subtiele tekst rechts */
}

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

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: var(--text-dark);
  display: flex;
  min-height: 100vh;
}

/* ========== Split layout ========== */
.left, .right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.left {
  background: #ffffff;
}

.left img.logo {
  width: 1200px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px){
  .left img.logo{
    width: 600px;
    max-width: 90%;
    height: auto;
  }

.right {
  background: var(--blue);
  color: var(--text-light);
  flex-direction: column;
  text-align: center;
}

/* ========== Teksten ========== */
h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  margin-bottom: 20px;
}

p {
  font-size: clamp(14px, 2vw, 18px);
  margin: 6px 0;
  color: var(--muted);
}

.contact {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.contact a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.contact a:hover {
  border-bottom-color: currentColor;
}

/* Mail icoon */
.icon-mail {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  body {
    flex-direction: column;
  }
  .left, .right {
    width: 100%;
    height: 50%;
  }
  .left img.logo {
    max-width: 90%;
	width: auto;
	height: auto;
  }
}
