/* CSS RESET */
* {
  -webkit-font-smoothing: antialiased;
  -mox-osx-font-smoothing: grayscale;
}

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-soft-black: #292B2D;
  --color-blue: #1352F2;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 1.6rem;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* FONT & TEXT STYLING */
@font-face {
  font-family: 'Archivo';
  src: url("/assets/fonts/Archivo-Regular.woff") format("woff"),
  url("/assets/fonts/Archivo-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
/* FONT & TEXT STYLING */
@font-face {
  font-family: 'Archivo';
  src: url("/assets/fonts/Archivo-Light.woff") format("woff"),
  url("/assets/fonts/Archivo-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: light;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 5.4rem;
  line-height: 1.5;
}

p,a,u,span,select,section,td,th,option,form,input,b,strong,ul,ol,li,textarea,label,button,input,iframe,table {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.5;
}

.navigation {
  padding: 4rem 0 0 4.8rem;
}

/* 
*************************
PLATE RESET
*************************
*/
.navbar .plate--container {
  margin: 0;
}

.wrapper {
  height: 100vh;
}

.render-content {
  position: relative;
}

.section-container {
  position: relative;
}

.section-container .fullwidth .plate--container {
  padding-left: 0;
  padding-right: 0;
}

.fullheight {
  height: 80vh;
  position: relative;
}

.main-content-wrapper {
  width: 100%;
}

#section-tussenruimte {
  height: 25vh;
}

.content-container {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 2rem;
}



.content-container-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: flex-start;
  margin-top: 10%;
  height: 50%;
  gap: 1rem;
}


.content-container-row .title {
  max-width: 75%;
}

.content-container-row:nth-child(2) {
  height: fit-content;
  margin-top: auto;
  align-content: flex-end;
  align-items: flex-end;

}

.content-container-row .link {
  margin-bottom: 0;
  flex-grow: 1;
}

.content-container--information {
  flex-shrink: 1;
  max-width: 48rem;
}

/* 
*************************
Background
*************************
*/
/* bg-pos X Y */

.backgroundImage-container {
  overflow: hidden;
  overflow-y: hidden;
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;

}

.backgroundImage {
  height: 100vh;
  width: 100vw;
  filter: blur(3vw);
  position: absolute;
  z-index: 1;
  opacity: 1;
  background-position: 65% 20%;
  background-repeat: no-repeat;
  background-size: 200vw;
  animation: scales 2s ease-in infinite alternate ;

  transform: scale(1.2);
}

@keyframes scales {
  from {
    transform: scale3d(1,1,1) scale(1.2) translateX(1vw) rotate3d(0,0,1,3deg);
  }
  to {
    transform: scale3d(1,2,1) scale(1.5) translateX(-1vw) rotate3d(0,0,2,45deg);
  }
}


/* 
*************************
elements/links/link.plate
*************************
*/
:root {
  --size: 5.6rem;
}
.link__text {
  color: var(--color-blue);
  text-decoration: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
}

.link__svg__wrapper {
  position: relative;
}

.link__svg__background {
  width: var(--size);
  height: var(--size);
  background-color: var(--color-white);
  border-radius: var(--size);
  position: relative;
  transition: transform 300ms cubic-bezier(.38,.25,.5,.97);
}

.link .link__svg__background:hover {
  transform: scale(1.1);
}

.link__svg {
  --pos-calc: calc(50% - 12px);
  position: absolute;
  top: var(--pos-calc);
  left: calc(var(--pos-calc) + 0.7rem);
}

.link__svg > svg {
  width: 1.2rem;
  height: 1.2rem;
}
.link__svg > svg > path {
  fill: var(--color-blue);
}

/* 
*************************
elements/titles/title.plate
*************************
*/
.title {
  font-weight: 300;
  font-size: 7.3rem;
  line-height: 7.4rem;
  color: var(--color-blue);
  margin-top: 1.5rem;
}

.title--text {
  clip: rect(0 0 0 0); 
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; 
  width: 1px;
}
/* 
*************************
elements/texts/text.plate
*************************
*/
.paragraph > * {
  color: var(--color-blue);
  font-size: 2.1rem;
  line-height: 123%;
}

.paragraph a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.render-content {
  overflow: hidden;
  position: relative;
}


/* letters */
.line--container {
  display: inline-block;
  min-width: 0.4ch;
  overflow: hidden;
}

.line {
  position: relative;
  display: inline-block;
  font-size: 7.3rem;
  line-height: 7.4rem;
  font-weight: 300;
  color: var(--color-blue);
  margin-top: 0;
}

.space {
  width: 0.35ch;
}

/* 
*************************
Media Queries
*************************
*/
@media screen and (max-width: 780px) {
  .content-container-row {
    align-items: flex-start;
  }
  .content-container-row:nth-child(2) {
    flex-direction: column;
    margin-top: 0;
    align-items: flex-start;
  }
  .content-container-row .title {
    max-width: 75%;
  }
  .link {
    height: 5rem;
  }

  .navigation {
    padding: 4rem 0 0 1rem;
  }
}

@media screen and (min-width: 480px) and (max-width: 1000px) {
  .content-container-row .title {
    max-width: 100%;
  }

  .link {
    margin-bottom: 4rem;
    }
}

@media screen and (max-width: 480px) {
  .backgroundImage-container {
    /* max-height: 700px; */
    overflow: hidden;
  }

  .backgroundImage {
    background-position: 50% 0%;
    background-size: 350vw;
  }

  .navigation {
    padding: 15px 0px 15px 15px;
  }

  .navbar-inner {
    padding: 0;
  }

  .content-container {
    display: flex;
    justify-content: space-between;
    height: calc(80vh);
    /* height: 100%; */
  }

  .content-container-row {
    height: fit-content;
    margin-top: 0;
  }

  .content-container-row:nth-child(2) {
    margin-bottom: 2.25rem;
  }

  .content-container .title {
    max-width: 70%;
    /* margin-top: 3rem; */
    display: flex;
    flex-direction: column;
  }

  .title .line--container {
    height: fit-content;
  }

  .line--container .line {
    --size: 4.6rem;
    font-size: var(--size);
    line-height: var(--size);
  }

  /* .content-container .title .line  {
    font-size: 5.4rem;
    line-height: 5.6rem;
    max-width: 100%;
    margin-bottom: 0;
  } */

  /* .line--container div.line {
    max-width: 90%;
    margin-bottom: 0;
    --size: 4.8rem;
    font-size: var(--size);
    line-height: var(--size);
  } */

  .content-container--information * {
    font-size: 16px;
  }

  .content-container--information .contactDetails {
    width: 65%;
  }

  .link {
    height: fit-content;
    margin-bottom: 1rem;
  }
}
