/* ------------------------------- sectie1 - header-titel ---------------------------------- */
section.colors.header-section {
  width: 100vw;
  height: 65vh;

  margin-top: 0px;

  background-color: var(--bg-grijs);
  display: flex;
  align-items: flex-end;
}

section.logo.header-section .container h1 {
  margin-bottom: 50px;
}



/* ------------------------------- sectie2 - Inleiding ---------------------------------- */
section.colors.inleiding-section {}

section.colors.inleiding-section p {
  font-size: 1.6em;
  width: 60%;
}


/* ------------------------------- sectie3 - Inleiding-header ---------------------------------- */
section.colors.inleiding-header img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

section.colors.inleiding-header video {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}




/* ------------------------------- sectie3 - Logo's ---------------------------------- */
section.colors.oplijsting-colors {
  background-color: var(--bg-grijs);
  padding: 150px 0;

  display: grid;
  gap: 100px;
  margin-bottom: 0;
}

.colors-grid {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: 30px;

  margin-top: 30px;
}

.color-box:nth-child(1) {
  grid-column: span 2;
}

.color-box {
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 15px;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  border-radius: 15px;
}

.color-box p {
  margin: 2px 0;
  font-size: 0.7rem;
  line-height: 1;
  text-align: center;
  word-break: break-word;
}

.color-box .name {
  font-weight: bold;
  font-size: 0.8rem;
}

.tooltip {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .7);
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  white-space: nowrap;
}

.color-box.show-tooltip .tooltip {
  opacity: 1;
}