html, body {
  height: auto;
  min-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: white;

  /* Premium dark → light gradient */
  background: linear-gradient(
    180deg,
    #071a2f 0%,   /* donker boven */
    #123b61 55%,  /* midden */
    #2f6f9e 100%  /* lichter onder */
  );

  position: relative;
  overflow-x: hidden;
}

/* ===== LIGHT SOURCE OVERLAY ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background: radial-gradient(
    circle at 20% 10%,
    rgba(255, 255, 255, 0.10),
    transparent 45%
  );

  opacity: 0.5;
}

/* ===== RIBBON ===== */
.ribbon {
  background-color: #071a2f;
  border-bottom: 3px solid #ff7a00;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
}

/* LOGO */
.logo {
  height: 85px;
  width: auto;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* MENU */
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  height: 100px;
}

/* LINKS */
.menu a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s ease;
  font-size: 16px;
}

.menu a:hover {
  color: #ff7a00;
}

/* CONTENT */
main {
  padding: 120px 50px 50px;
}

/* TEKST */
h1, h2, h3 {
  font-weight: 600;
}

p, li {
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
