/* houdoe.css – algemene basisstijlen voor alle websites */

/* Reset + box sizing */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  box-sizing: border-box;
  height: 100%;
}

body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7em;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* Media, formulieren, typografie */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 2rem;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 120px 0 10px 0;
  padding: 60px 10px 20px 0;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 { font-size: 2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.2rem; }

p {
  margin-top: 0;
  margin-bottom: 1.2em;
}

/* Links (mag overschreven worden in user.css) */
a {
  text-decoration: none;
  color: inherit;
}

/* Layout: containers & grids */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col, .flex-item {
  flex: 1;
  padding: 1rem;
}

/* Header layout */
.site-header {
  width: 100%;
  z-index: 10;
  background: #ffffff;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}

.logo img {
  height: 50px;
}

/* Mobiel menu-toggle */
.menu-toggle {
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  display: none;
}

/* Utilities */
.u-full-width {
  width: 100%;
}

.u-max-full-width {
  max-width: 100%;
}

.u-pull-right {
  float: right;
}

.u-pull-left {
  float: left;
}

/* Responsive */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
  }

  .hoofdmenu {
    display: none;
    width: 100%;
  }

  .hoofdmenu.open {
    display: block;
  }

  .hoofdmenu ul {
    flex-direction: column;
    gap: 1em;
    padding: 1em 0;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .hoofdmenu {
    display: block !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .header-buttons {
    display: flex;
    gap: 1rem;
  }
}
