.elementor-kit-7{--e-global-color-primary:#FFFFFF;--e-global-color-secondary:#000000;--e-global-color-text:#FFFFFF;--e-global-color-accent:#509B8D;--e-global-color-a44c864:#326159;--e-global-typography-primary-font-family:"Fenix";--e-global-typography-primary-font-weight:400;--e-global-typography-secondary-font-family:"Fenix";--e-global-typography-secondary-font-weight:300;--e-global-typography-text-font-family:"Montserrat";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:transparent;color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );background-image:linear-gradient(180deg, var( --e-global-color-secondary ) 0%, var( --e-global-color-secondary ) 100%);}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.site-footer{background-color:var( --e-global-color-secondary );}.elementor-kit-7 h1{color:#FFFFFF;font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-kit-7 input:not([type="button"]):not([type="submit"]),.elementor-kit-7 textarea,.elementor-kit-7 .elementor-field-textual{border-radius:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:100%;}.e-con{--container-max-width:100%;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Scroll indicator container */
.unfolde-scroll-bird {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  cursor: pointer;
  padding-bottom: 10px;
}

/* V-shape */
.unfolde-scroll-bird .bird {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 22px solid #ffffff; /* kleur van de V */
  
  opacity: 0.7;
  transform-origin: center;
  animation: birdFloat 2s ease-in-out infinite;
}

/* Basale ademende float animatie */
@keyframes birdFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(6px) scale(1.05);
    opacity: 1;
  }
}

/* Hover: lichte adem + focus */
.unfolde-scroll-bird:hover .bird {
  animation: birdBreathe 1s ease-in-out infinite;
  opacity: 1;
}

@keyframes birdBreathe {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(2px) scale(1.12);
  }
}

/* Responsiveness voor telefoon */
@media (max-width: 480px) {
  .unfolde-scroll-bird .bird {
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 18px solid #ffffff;
  }
}

/* Basis stijl voor alle boeken */
.growth-book {
  display: inline-block;
  transition: transform 0.4s ease;
  animation: breathe 4s ease-in-out infinite;
}

/* Hover: iets sterker omhoog + iets groter */
.growth-book:hover {
  transform: translateY(-8px) scale(1.04);
}

/* Subtle breathing animatie */
@keyframes breathe {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.03);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}/* End custom CSS */