
.header-background {
  background-image: url('../images/header-background.png');
  background-repeat: no-repeat;
  background-size: 101% 102%;
  background-position: center top;
  position: relative;
  /* padding-top: 28%; /* Adjust based on your image's aspect ratio (e.g., 800px / 1920px = ~42%) */
  padding-top: 520px;
}
.header-background .floating-box {
  display: none;
}

.header-background.home .floating-box {
  display: block;
}
.header-background.home {
 display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url('../images/header-home.jpg');
}

.header-background.voor-wie {
  background-image: url('../images/header-voorwie.jpg');
  padding-top: 28%;
  background-size: 100%;
}


.header-background.therapeut {
  background-image: url('../images/header-therapeut.jpg');
  padding-top: 28%;
  background-size: 100%;
}

.header-background.contact {
  background-image: url('../images/header-contact.jpg');
  padding-top: 28%;
  background-size: 100%;
}

.header-background.tarieven {
  background-image: url('../images/header-tarieven.jpg');
  padding-top: 28%;
  background-size: 100%;
}

.header-background.locatie {
  background-image: url('../images/header-locatie.jpg');
  padding-top: 28%;
  background-size: 100%;
}

.header-background.verwijzers {
  background-image: url('../images/header-verwijzers.jpg');
  padding-top: 28%;
  background-size: 100%;
}

.header-background.ervaringen {
  background-image: url('../images/header-ervaringen.jpg');
  padding-top: 28%;
  background-size: 100%;
}

.nav-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1630px;
  padding: 0 20px;
  z-index: 10;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
    position: absolute;
    top: 10px;
    left: -16px;
    width: clamp(60px, 8vw, 117px);
    z-index: 10;
}


.nav-bar ul {
  list-style: none;
  display: flex;
  justify-content: center;    /* Centers items horizontally */
  align-items: center;        /* Centers items vertically */
  gap: 30px;
  background: white;
  padding: 15px 25px;
  border-radius: 0px 0px 10px 10px;
  width: 1630px;
  height: 95px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-bar a {
  text-decoration: none;
  color: black;
  font-weight: 400;
  padding: 8px 12px; /* Needed for spacing inside rounded bg */
  border-radius: 8px; /* Rounded corners even before hover */
  transition: all 0.2s ease-in-out;
  display: inline-block;
}

.nav-bar a:hover {
  background-color: #def1f5;
  color: #eb5d5c;
}
.slogan-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #539daa; /* Adjust if needed */
  color: white;
  font-size: 12px;
  font-weight: 400;
  padding: 10px 25px;
  border-radius: 0 0 8px 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0px auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  letter-spacing: 2px;
}
.highlighted-slogan {
  color: #f3e9a5;
}

.slogan-banner .dot {
  width: 6px;
  height: 6px;
  background-color: #f86e6e;
  border-radius: 50%;
  display: inline-block;
}


.floating-box {
  background: white;
  padding: 2vw;
  border-radius: 15px;
  max-width: 400px;
  width: 30%;
  position: absolute;
  top: 30%;
  left: 20%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 2;
}

.floating-box p {
  font-weight: bold;
  margin-bottom: 20px;
  color: #3a7b89;
  letter-spacing: 2px;
  font-weight: 200px;
  text-transform: uppercase;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.custom-list li a{
  text-decoration: none;
  color:#000000;
}
.custom-list li a:hover {
  color:#eb5d5c;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 14px;
  background-image: url(../images/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
}
