*,
::before,
::after {
    box-sizing: border-box;
}

html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif, Apple Color Emoji, "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
    background: #08c6fa;
    /* min-height: 100vh; */
    /* width: 100%; */
    /* margin: 0 auto; */
    /* padding: 0; */
    /* display: grid;
    gap: 3vw;
    grid-template-rows: min-content 1fr min-content; */
}
.main {
    min-height:100vh;
    margin:0 auto;
}

/* Backgrounds will cover all the section */
.section,
.slide{
    background-size: cover;
    /* background-attachment: fixed; */
}

.overlayfullscreenscroll {
    position: absolute;
    width: 100%;
    min-height: 2rem;
    bottom: 200px;
    left: 50px;
}

.overlayfullscreenscroll h1{
    color: white;
    animation-name: fullscreenscrolloverlayanim;
    animation-duration: 3s;
}

.txtshadow {
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
}

#section1 {
    background-image: url("/static/wegItalie.e46024573aab.jpg");
}

#section2 {
    background-image: url("/static/buitenkoken.2fac4c410272.jpg");
}

#section3 {
    background-image: url("/static/springplank2.5f996fc40579.jpg");
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
}

.navbar .nav-link {
    z-index: 70;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem; /* 16px */
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.5px;
    position: relative;
}

/* Hover-effect op de tekstkleur */
/* .navbar .nav-link:hover {
  color: #1e90ff;
} */

/* De onderstreping als pseudo-element */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #1e90ff;
  /* transition: width 0.5s ease-in-out; */
  /* transition: width 0.4s cubic-bezier(0.42, 0, 1, 1); ease-in (custom) */
}

/* Hover: laat de lijn uitrollen met ease-in */
.navbar .nav-link:hover::after {
  width: 100%;
  transition: width 0.4s cubic-bezier(0.42, 0, 0.58, 1); /* ease-out (direct stop) */
}


a {
    color: currentColor;
}

/* Test animatie website */
#test_anim{
    width: 100px;
    height: 100px;
    transition: matrix 0.8s;
}

#test_anim:hover{
    /* matrix(scaleX(), skewY(), skewX(), scaleY(), translateX(), translateY()) */
    transform: translateX(200px);
    transition-timing-function: ease-in-out;
}

@keyframes fullscreenscrolloverlayanim {
    from {opacity: 0.20; left:50px; color: red;}
    to {opacity: 1.0; left:200px; }
}

/* contact - page ---------------------------------------------------------------*/
.page-form label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
}

.page-form :is(textarea, input, select) {
    width: 100%;
    max-width: 500px;
    min-height: 30px;
    margin-top: 5px;
    margin-bottom: 10px;
    margin-left: 5px;
}

.page-form .helptext {
    font-style: italic;
}

/* Portfolio-page -----------------------------------------------------------------*/
.template-portfolio h1 {
    text-align: center;
    margin-bottom: 10px;
}

.portfolio-info {
    margin-left: 20px;
}

/* @keyframes cursorBlink {
      0% { border-color: black; }
      50% { border-color: transparent; }
      100% { border-color: black; }
    } */

@keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0; }
  }


.block-paragraph_block {
    display: inline-block;
    font-family: sans-serif;
    font-size: 16px;
    position: relative;
    /* white-space: nowrap; */
    /* overflow: hidden; */
    /* border-right: 2px solid black; */
    /* animation: cursorBlink 0.8s infinite; */
}

  .block-paragraph_block::after {
    content: "|"; /* Simuleert een cursor */
    position: absolute;
    right: 0;
    animation: blink 0.5s alternate;
  }