@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&family=Archivo+Black&display=swap");

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

html {
  background-color: #f0f2f5;
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f0f2f5;
  color: #333;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  margin-bottom: 25px;
}

header {
  background-color: white;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: black;
}

.logo span {
  color: #60a5fa;
}

.hamburger-icoon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger-icoon span {
  width: 25px;
  height: 3px;
  background: #333;
}

#menu-check {
  display: none;
}

nav ul {
  list-style: none;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  padding: 20px;
}

#menu-check:checked ~ ul {
  display: flex !important;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  padding: 15px;
  display: block;
  font-weight: bold;
}

nav ul li a.actief {
  background-color: #60a5fa;
  color: white;
  border-radius: 8px;
}

main {
  padding: 20px;
  flex-grow: 1;
}

.grid-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

section,
article {
  background-color: white;
  padding: 30px 20px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}

.blok-perzik {
  background-color: #fce1d4;
}

.blok-lila {
  background-color: #e8dff5;
}

.blok-geel {
  background-color: #fef9c3;
}

.blok-blauw {
  background-color: #d1e9ff;
}

.blok-munt {
  background-color: #e2f0d9;
}

picture {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  width: 100%;
}

picture img {
  width: 100%;
  border-radius: 20px;
}

.reis-formulier {
  display: flex;
  flex-direction: column;
}

.reis-formulier label {
  margin-bottom: 8px;
  font-weight: bold;
}

.reis-formulier input,
.reis-formulier textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.verzend-knop {
  background-color: #1e293b;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

/* --- AANGEPASTE TABEL --- */
.reis-tabel {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: white; /* Witte achtergrond */
  border: 2px solid black; /* Zwarte buitenrand */
}

.reis-tabel th,
.reis-tabel td {
  padding: 12px;
  border: 1px solid black; /* Zwarte binnenranden */
  text-align: left;
}

.reis-tabel th {
  background-color: #f2f2f2; /* Subtiel onderscheid voor de koptekst */
}

footer {
  text-align: center;
  padding: 40px 20px;
}

@media (min-width: 650px) {
  main {
    max-width: 1200px;
    margin: 0 auto;
  }

  .hamburger-icoon {
    display: none;
  }

  nav ul {
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
    padding: 0;
  }

  nav ul li a {
    padding: 10px 20px;
  }

  .grid-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }

  .grid-container section,
  .grid-container article {
    width: calc(50% - 20px);
    margin-bottom: 0;
  }

  article {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  article h2,
  article p,
  article ul {
    width: 100%;
  }

  picture {
    width: calc(50% - 15px);
  }
}
