/* ============================
   HEADER LAYOUT
============================ */

 .ehbo-header {
  background: linear-gradient(90deg, #e3f0ff 0%, #fffbe6 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding-left: 1rem;
   }

 .header-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
    }
  
/* ============================
   LOGO & TITEL
============================ */
.ehbo-logo {
  height: 130px;
  width: auto;
  flex-shrink: 0;
}

.ehbo-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.ehbo-title h1 {
  
  color: var(--kleur-accent-dark);
  margin-bottom: 5.5rem;
  margin-top: -10rem;
  position: relative;
  top: 65px; /* verticale uitlijning */
  margin: 0;
  padding-left: 100px;
  font-size: 2.5rem;
  text-align: 100pxleft;

}

/* ============================
   ECG-LIJN
============================ */
.ecg-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin-top: 2.5px;
}
.ecg-line {
  width: 100%;
  max-width: 650px;
  height: 130px; /* gelijk aan logo */
  display: block;
  margin-bottom: 0rem;
}

   
/* ============================
   ECG-PAD
============================ */
.ecg-path {
  stroke: url(#gradient);
  stroke-width: 4;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke 0.5s ease;
}

.ecg-path:hover {
  stroke: #ff6600;
}

