/* Moderne CSS Reset */

/* Verwijder standaard marges en stel box-sizing in */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Zorg voor consistente line-height en tekst-rendering */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

/* Basis body-stijl */
body {
  min-height: 100vh;
  font-family: system-ui, sans-serif;
  background-color: #fff;
  color: #000;
}

/* Afbeeldingen en media responsief */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Formulieren en inputs */
button,
input,
select,
textarea {
  font: inherit;
}

/* Links zonder standaard onderstreping */
a {
  text-decoration: none;
  color: inherit;
}

/* Tabellen netjes */
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* eigen css */
.contpage{
  max-width: 1440px;
}

header{
  width: 100vw;
  height: 10vh;
  display: flex;                  /* Flexbox inschakelen */
  justify-content: space-between; /* Logo links, menu rechts */
  align-items: center;            /* Verticaal centreren */
  padding: 1vh;  
}

header img{
  height: 100%;
}

nav {
  background-color: #333;
  padding: 10px;
}

nav ul {
  list-style: none;       /* geen bullets */
  margin: 0;
  padding: 0;
  display: flex;          /* horizontale layout */
  justify-content: flex-start;
  align-items: center;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Speciaal voor de aanmeldknop */
nav ul li.signup a {
  background-color: #ffcc00;
  color: #333;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: bold;
}

nav ul li.signup a:hover {
  background-color: #ffdb4d;
}

/* Basisstijl */
button {
  background-color: #3498db;   /* Blauwe achtergrond */
  color: white;                /* Witte tekst */
  padding: 10px 20px;          /* Binnenruimte */
  border: none;                /* Geen rand */
  border-radius: 5px;          /* Afgeronde hoeken */
  font-size: 16px;             /* Tekstgrootte */
  cursor: pointer;             /* Handje bij hover */
}

/* Hover-effect */
button:hover {
  background-color: #2980b9;   /* Donkerder blauw bij hover */
  transition: background-color 0.3s ease;
}

/* Extra stijl: schaduw */
button:active {
  transform: scale(0.98);      /* Klein indruk-effect */
}

footer{
  color: white;
  background-color: black;
  height: 10vh;
  width: 100vw;
  padding: 1vh;  
}

footer img{
  height: 45px;
  width: auto;
  margin-right: 5px;
}

.footer-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.social-links{
  display: flex;
  justify-content: space-around;
  align-items: center;
}