html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  line-height: 1.6;
  background: #e5d5d2;
  width: 100%;
  height: 100%;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: bold;
}


/* Navbar base */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background-color: rgba(57, 57, 56, 0.95);
}

.logo {
  padding: 0;
  margin: 0;
  display: block;
}

.logo img {
    height: 5vh;
    min-height: 2rem;
    display:block;
}

#logoHover{
  display:none;
}

#logo:hover #logoRegular{
  display:none;
}

#logo:hover #logoHover{
  display:block;
}

.nav-links {
  list-style: none;
  display: flex;
  grid-column-gap: 2rem;
  margin-right:0;
}

.nav-links a {
  text-decoration: none;
  color: #f2f1f0;
  font-size: 1rem;
  transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
  text-decoration: none;
  color: #899442;
}

#hero {
  height: 100vh;
  background-color: #b98473;
  background-image: url("images/hero-bg.png");
  background-size: cover;
  background-repeat:   no-repeat;
  background-position: left;
  background-position-y: top;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5vh;
  cursor: default;
}

#heroText {
  text-align: center;
  color: #f2f1f0;
  cursor: default;
}

#heroText h1 {
  text-shadow: 2px 2px 0px #5e5e5e;
  font-size: 8vmin;
  text-align: left;
  font-weight: 500;
  cursor: default;
}

.content {
    display: grid;
    grid-template-columns: repeat(1);
    grid-template-rows: repeat(8);
    place-items: center;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
}

.contentBlockBGLight {
  width: 100%;
  color: #393938;
  display: grid;
  grid-template-columns: repeat(1);
  grid-template-rows: repeat(1);
  place-items: center;
  box-sizing: border-box;
}

.contentBlockBGDark {
  width: 100%;
  background-color: #b98473;
  color: #f2f1f0;
  display: grid;
  grid-template-columns: repeat(1);
  grid-template-rows: repeat(1);
  place-items: center;
  padding: 1vh;
  box-sizing: border-box;
}

.contentBlock {
  width: 60vw;
  text-align: center;
  padding-top: 4vh;
  padding-bottom: 4vh;
  box-sizing: border-box;
}

.contentBlock h1 {
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
}

.contentBlock h2 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 300;
  margin: 0;
}

.contentBlock p {
  font-size: 1rem;
}


.contentBlock button {
  background-color: #393938;
  color: #f2f1f0;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  margin: 1rem 0 0 0;
  cursor:pointer;
}

.buttonTransitionRed {
  transition: all 0.3s ease-in-out;
  background-color: #393938;
}

.buttonTransitionRed:hover {
  background-color: #b02c33;
}

.buttonTransitionGreen {
  transition: all 0.3s ease-in-out;
  background-color: #393938;
}

.buttonTransitionGreen:hover {
  background-color: #899442;
}

#contentBlockIntro {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-row-gap: 2vh;
  grid-column-gap: 0;
}

#contentBlockIntro .image {
  grid-row-start: 1;
}

#contentBlockIntro .image img {
  height: 20vh;
  margin: 0;
}

#contentBlockIntro .introTitle {
  grid-row-start: 2;
}

#contentBlockIntro .intro {
  grid-row-start: 3;
}

#contentBlockIntro .introButtonRow {
  grid-row-start: 4;
}

#contentBlockOndersteuning {

}

#contentBlockOndersteuning .supportBlocks {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3vh;
    margin-bottom: 3vh;
}

#contentBlockOndersteuning .supportBlocks .block {
  background-color: #efe3e3;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 1vh;
  padding: 2vh;
  border-radius: 10px;
}

#contentBlockOndersteuning .supportBlocks .block ul {
}

#contentBlockOndersteuning .supportBlocks .block ul li {
  background-color: #f2f1f0;
  margin: 1vh 1vh 1vh 0vh;
  width: auto;
  display:inline-block;
  *display:inline; /*IE7*/
  *zoom:1; /*IE7*/
  margin-right:10px;
  padding: 10px;
  color: #899442;
  cursor: default;
  border-radius: 10px;
}



#contentBlockOndersteuning .supportBlocks .block .div1 img {
  height: 7vh;
}

#contentBlockWerkwijze {
  box-sizing: border-box;
}

#contentBlockWerkwijze button {
  background-color: #899442;
}

#contentBlockWerkwijze button:hover {
  background-color: #393938;
}

.buttonWerkwijzeTransition {
  transition: all 0.3s ease-in-out;
  background-color: #899442;
}

.buttonWerkwijzeTransition:hover {
  background-color: #393938;
}

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  margin: 0;
  margin-top:3vh;
  padding-bottom: 3vh;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #899442;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  margin-top: 22px;
}

/* Container around content */
.timelineContainer {
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timelineContainer h2 {
  font-weight: 500;
  color: #b98473;
  margin-bottom: 2vmin;
}

/* The circles on the timeline */
.timelineContainer::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: #899442;
  border: 4px solid #899442;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timelineStep {
    border-radius: 10px;
    background: #b98473;
    padding: 1vmin;
    color: #efe3e3;
    text-align: center;
    margin-right: 1vmin;
    font-size: 1.2rem;
    margin-bottom: 2vmin;
}

/* Place the container to the left */
.timelineLeft {
  left: 0;
  padding: 10px 40px 40px 0;
}

/* Place the container to the right */
.timelineRight {
  left: 50%;
  padding: 10px 0 40px 40px;
}

/* Add arrows to the left container (pointing right) */
.timelineLeft::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #efe3e3;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #efe3e3;
}

/* Add arrows to the right container (pointing left) */
.timelineRight::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #efe3e3;
  border-width: 10px 10px 10px 0;
  border-color: transparent #efe3e3 transparent transparent;
}

/* Fix the circle for containers on the right side */
.timelineRight::after {
  left: -16px;
}

/* The actual content */
.timelineContent {
  padding: 20px 30px;
  background-color: #efe3e3;
  position: relative;
  border-radius: 10px;
}

#contentBlockAbout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-row-gap: 2vh;
  grid-column-gap: 0;
}

#contentBlockAbout .title {
  grid-row-start: 1;
  grid-column: span 4 / span 4;
}

#contentBlockAbout .brightlight {
  grid-row-start: 2;
  grid-column: span 4 / span 4;
}

#contentBlockAbout .left {
  grid-row-start: 3;
  grid-column: span 3 / span 3;
  background-color: #e5d5d2;
  color: #393938;
  border-radius: 10px 0 0 10px;
  padding: 2vh;
}

#contentBlockAbout .right {
  grid-row-start: 3;
  grid-column-start: 4;
  background-image: url("images/profielFoto.png");
  border-radius:  0 10px 10px 0;
  background-size:     cover;
  background-repeat:   no-repeat;
  background-position: top;
}

#contentBlockAbout .buttonRow {
  grid-row-start: 4;
  grid-column: span 4 / span 4;
}

#contentBlockContact {
  display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-row-gap: 2vh;
}

.contactTitle {
  grid-row-start: 1;
}

.contactFormContainer {
  grid-row-start: 2;
}

#contactForm{
  display:flex;
  flex-direction:column;
  gap:15px;
  width:100%;
}

#contactForm input,
#contactForm textarea{
  padding:12px;
  font-size:1rem;
  border-radius:10px;
  border:none;
}

#contactForm textarea{
  height:200px;
  resize:vertical;
}

/* hide honeypot */
.honeypot{
display:none;
}

.formResponse{
  grid-row-start: 3;
  background-color: #899442;
  color: #f2f1f0;
  font-weight: bolder;
  font-size: 1.2rem;
  border-radius: 10px;
  padding: 1vh;
  display: none;
}

.contactDetails {
    grid-row-start: 4;
}

.contactDetails img {
  height: 3vh;
}

.contactDetails ul {
}

.contactDetails ul li {
  background-color: #f2f1f0;
  margin: 0vh 1vh 1vh 0vh;
  width: auto;
  display:inline-block;
  *display:inline; /*IE7*/
  *zoom:1; /*IE7*/
  padding: 10px;
  color: #899442;
  cursor: default;
  border-radius: 10px;
}

.sloganBand {
  background-image: url("images/sloganBand1BG.jpg");
  background-size:     cover;
  background-repeat:   no-repeat;
  background-position: bottom;
  background-attachment: fixed;
  align-items: center;
  text-align: center;
  padding: 1.5vh;
  width: 100%;
 color: #f2f1f0;
}

.sloganBand h1 {
  font-size: 1.5rem;
  font-weight: 400;
}

.sloganBand h2 {
  font-size: 3vmin;
  font-style: italic;
  font-weight: 400;
}

footer {
  display: flex;
  justify-content: space-around;
  background-color: #393938;
  padding: 1.5vh;
  font-size: 0.8rem;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  #nav-links {
    display: none;
  }
}

@media (max-width: 1250px) {
  .sloganBand {
    background-image: url("images/sloganBand1BG.jpg");
    background-size:     cover;
    -webkit-backgound-size: cover;
    -o-backgound-size: cover;
    -moz-backgound-size: cover;
    background-repeat:   no-repeat;
    background-position: bottom;
    align-items: center;
    text-align: center;
    padding: 1.5vh;
    width: 100%;
   color: #f2f1f0;
  }

  #hero {
    height: 100vh;
    background-image: url("images/hero-bg.png");
    background-size: auto;
    -webkit-backgound-size: auto;
    -o-backgound-size: auto;
    -moz-backgound-size: auto;
    background-repeat:   no-repeat;
    background-position: left;
    background-position-y: top;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5vh;
    cursor: default;
  }

  .contentBlock {
    width: 90vw;
  }

  #contentBlockWerkwijze button {
    width: 100%
  }

  /* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

/* Full-width containers */
  .timelineContainer {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
  }

/* Make sure that all arrows are pointing leftwards */
  .timelineContainer::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent #efe3e3 transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .timelineLeft::after, .timelineRight::after {
    left: 15px;
  }

/* Make all right containers behave like the left ones */
  .timelineRight {
    left: 0%;
  }
}

@supports (-webkit-touch-callout: inherit) {
  background-attachment: scroll;
}
