@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #fcfcf8;
  color: #333;
  margin: 0;
  padding: 0;
}

.header {
  text-align: center;
}

.header-image img {
  width: 100%;
  max-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

header {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px; /* of zoveel je wilt */
  background: linear-gradient(to bottom right, #8ecae6, #a8d9ec 30%, #2f89c0);
  /* background: linear-gradient(45deg, red 0 50%, yellow 70%, blue 50% 100%); */
  color: #072246;
}
header .header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 10%;
     object-position: center 10%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3; /* transparantie voor 'subtiel' effect */
}
header .header-logo {
  font-size: clamp(2rem, 5vw, 5rem); /* min, voorkeurswaarde, max */
  font-weight: bold;
}
header .seohelder-logo {
  font-family: "Inter", sans-serif;
  font-size: 4rem; /* of 96px */
  font-weight: 500;
  letter-spacing: -0.5px;
}
header .seohelder-logo .seo {
  color: #072246;
  font-weight: 700;
}
header .seohelder-logo .helder {
  color: #2f89c0; /* of #2196F3 zoals hierboven */
}
header .header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.6rem 0;
  margin-bottom: 25px;
}
header .header-top-wrapper {
  position: relative;
}
header .ronald-avatar {
  width: 150px;
  height: 150px;
  border-radius: 20px 20px 20px 0px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}
header nav {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  background: #8ecae6;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.06); /* of zelfs 0.06 */
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 8px 8px 0px 0px;
}
header nav .lang-inline {
  margin-left: auto;
  font-size: 0.8rem;
  position: absolute;
  right: 10px;
}
header nav .lang-inline a {
  color: #072246;
  text-decoration: none;
  margin: 0 0.2em;
}
header nav .lang-inline a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  header nav {
    flex-direction: column;
    display: none;
    width: 100%;
    /* padding: 1rem 2rem; */
    padding: 0px;
    top: 100%; /* nu ten opzichte van .header-top-wrapper */
    left: 0;
    margin-top: 0px;
    background: #2f89c0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    gap: 0px;
  }
  header nav div {
    padding: 1rem;
  }
  header nav div:hover {
    background: #8ecae6;
  }
  header nav.active {
    display: flex;
  }
}
header .menu-toggle {
  display: none;
  background: #0a192f;
  color: #FCFCF8;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}
header nav a {
  color: #FCFCF8;
  text-decoration: none;
}
header nav a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  header nav {
    flex-direction: column;
    display: none;
  }
  header nav.active {
    display: flex;
  }
  header .menu-toggle {
    display: block;
  }
}

.header-bg {
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #072246, #4a5cf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
  position: relative;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #072246;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h1::after {
  content: "";
  display: block;
  width: 300px;
  background: #4a5cf2;
  margin: 1rem auto 0;
  border-radius: 2px;
  height: 1px;
}

.hero {
  padding: 4rem 2rem;
  text-align: left;
  background: #e3f2fd;
}

.hero h2 {
  font-size: 1.5rem;
  color: #0a192f;
  margin-bottom: 1rem;
}

.hero p, .hero ul, .hero div {
  /* margin: 0 auto; */
}

.hero ul {
  margin-top: 10px;
  margin-bottom: 10px;
  list-style-type: none;
}

section {
  padding: 3rem 2rem;
  margin: 0 auto;
}

section .card h3 {
  margin-bottom: 1rem;
  color: #0a192f;
  font-size: 1.4rem;
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
  background: #0a192f;
  color: #ccc;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .hero h2 {
    font-size: 1.8rem;
  }
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem auto;
}

input, textarea, button {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #0a192f;
  color: #FCFCF8;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #142c50;
}

.honeypot {
  display: none;
}

/** kolommen **/
main.driekolommen {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  /* max-width: 1200px; */
  margin: 0 auto;
}

section.top, section.bottom, section.middle {
  background: #FCFCF8;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  margin: 0px 0px 20px 0px;
}

section.top {
  flex: 1;
}

section.middle {
  flex: 1;
}

section.bottom {
  flex: 1;
}

.card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea, button {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background-color: #4A5CF2;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border: none;
}

button:hover {
  background-color: #3c4ed0;
}

/* Tussenformaat: 2 kolommen (top en middle naast elkaar), bottom onder */
@media (max-width: 992px) {
  main.driekolommen {
    flex-wrap: wrap;
    gap: 2rem;
  }
  section.top,
  section.middle {
    flex: 0 0 calc(50% - 1rem);
  }
  section.bottom {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  main.driekolommen {
    flex-direction: column;
  }
  section.top,
  section.middle,
  section.bottom {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
ul {
  list-style-type: none;
  padding: 0px !important;
  margin: 0px;
}

h2:after {
  content: "";
  display: block;
  background: #e3f2fd;
  margin: 1rem auto 0;
  border-radius: 2px;
  height: 1px;
}

section .card h3:after {
  content: "";
  display: block;
  background: #e3f2fd;
  margin: 1rem auto 0;
  border-radius: 2px;
  height: 1px;
}

.logo-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* desktop: 6 logo's naast elkaar */
  gap: 20px;
  align-items: center;
  justify-items: center;
  max-width: 100%;
  margin: 0 auto;
}
.logo-list img {
  max-width: 100%;
  height: auto;
  width: 100%; /* logo's vullen kolombreedte */
  -o-object-fit: contain;
     object-fit: contain;
}

/* Tablet/mobiel: 2 logo’s per rij */
@media screen and (max-width: 768px) {
  .logo-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
div.message {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  border: solid 1px #EEE;
  padding: 10px;
  color: green;
}

/** Google */
.googleSerpReview {
  padding: 10px;
  border: solid 1px #e3f2fd;
  margin: 10px 0px 30px 10px;
  max-width: 660px;
}
.googleSerpReview h3.googleSerpReview_title {
  font-family: "Rubik", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a0dab;
}
.googleSerpReview h3.googleSerpReview_title:after {
  content: "";
  display: block;
}
.googleSerpReview .googleSerpReview_description {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #474747;
}/*# sourceMappingURL=seohelder.css.map */