/* ========== */

/*  */
.akt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: 0;
  background: var(--dark-teal, #0F2E33);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  /* */
  --akt-header-h: clamp(56px, 9vw, 80px);
  --akt-space-xs: clamp(6px, 1vw, 8px);
  --akt-space-sm: clamp(10px, 1.2vw, 14px);
  --akt-space-md: clamp(14px, 1.8vw, 20px);
  --akt-radius-sm: 6px;
  --akt-primary-teal: var(--primary-teal, #0C7F83);
}

/* B*/
.akt-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--akt-header-h);              
  gap: clamp(8px, 2vw, var(--akt-space-md));
  padding-inline: clamp(10px, 4vw, 24px);
  max-width: clamp(320px, 100vw, 64rem); 
  margin: 0 auto;                              
}

.akt-header__spacer {
  flex: 1;  /* duwt LinkedIn + CTA + hamburger naar de rechterrand */
}

/* Logo / titelblok links */
.akt-header .site-logo {
  display: block;
  text-decoration: none;
  color: #ffffff;
}
.akt-header .site-logo h1 {
  margin: 0;
  line-height: 1.1;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}
.akt-header .site-logo h2 {
  margin: 2px 0 0;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-teal, #2AA6A2);
}
.akt-header .site-logo p {
  margin: 2px 0 0;
  line-height: 1.2;
  font-size: 14px;
  color: #ffffff;
}

/* Contact-link rechts */
.akt-header__link {
  text-decoration: none;
  padding: 4px 6px;
  line-height: 1;
}
.akt-header__link:hover {
  text-decoration: underline;
}

/* */
.akt-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  line-height: 0;
  text-decoration: none;
  color: #ffffff;
}
.akt-header__icon:hover {
  opacity: 0.85;
}

/*  */
.btn--cta.akt-header__cta {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--akt-radius-sm);
  border: 2px solid var(--akt-primary-teal);
  background: var(--akt-primary-teal);
  color: #ffffff;
}
.btn--cta.akt-header__cta:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.akt-header__cta:focus-visible,
.akt-menu__link:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/*  */
.akt-header__toggle {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: var(--akt-radius-sm);
  line-height: 1;
  font-size: 18px;
}

/*  */
.akt-menu {
  position: absolute;
  right: calc(-1 * var(--akt-space-md) * 1);     
  top: 100%;                                   
   
  /*  */
  background: rgba(15, 46, 51, 0.88);            
  backdrop-filter: blur(8px);                    
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--akt-radius-sm);
  padding: 12px 18px 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 999;                                  
}

.akt-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/*  */
.akt-menu__link {
  display: block;
  padding: 8px 0;
  color: #ffffff;                              
  text-decoration: none;
  font-weight: 500;
  text-align: left;
}

.akt-menu__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);         
  border-radius: 4px;
  text-decoration: none;
}

.akt-menu[hidden] {
  display: none;  
}

/* */
@media (min-width: 992px) {
  .akt-header__toggle {
    margin-left: var(--akt-space-sm);
  }
}

/* =====*/

main .wp-block-button .wp-block-button__link,
main .btn,
main .btn--cta {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--primary-teal);
  background: var(--primary-teal);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.08s ease;
}

/* */
main .wp-block-button .wp-block-button__link:hover,
main .btn:hover,
main .btn--cta:hover {
  background: var(--dark-teal);
  border-color: var(--dark-teal);
  color: #ffffff;
  transform: translateY(-1px);
}

/*  */

.cmplz-cookiebanner .cmplz-message {
  line-height: 1.4;
}

.cmplz-cookiebanner .cmplz-message p {
  margin: 0.25rem 0;   
  hyphens: none;       
}

.cmplz-cookiebanner .cmplz-title {
  margin-bottom: 0.4rem;  
}


