/* --------------------
/* Made by Bram Janssen
/* --------------------

/* Loading fonts */
@font-face {
  font-family: Function_Regular;
  src: url(../fonts/Function_Regular.ttf);
  font-display: swap;
}

@font-face {
  font-family: Function_Bold;
  src: url(../fontsFunction_Bold.ttf);
  font-display: swap;
}

@font-face {
  font-family: Function_Italic;
  src: url(../fontsFunction_Italic.ttf);
  font-display: swap;
}

/* Setting variables */
:root {
  /* colors */
  --mainColor: #EEEEEE;
  /* verry light grey */
  --secColor: #1E2326;
  /* dark grey */
  --aColor1: #D27226;
  /* orange */
  --aColor2: #D22683;
  /* purple */
  --aColor3: #D24E51;
  /* red ish */
  --grad1: linear-gradient(90deg, rgba(210, 114, 38, 1) 0%, rgba(210, 38, 131, 1) 100%);
  /* orange > purple */
  /* movement */
  --trans1: 0.3s 0s ease;
  --trans2: 1s 0s ease;
  --trans3: 5s 0s ease;
  /* font size */
  --fSize1: 1rem;
  --fSize1half: 1.5rem;
  --fSize2: 2rem;
  --fSize3: 3rem;
  /* padding */
  --contPad: 20px;
  --contPad2: 50px;
  /* container ofset */
  --ofsetPos: translate(2px, 2px);
  --ofsetNeg: translate(-4px, -4px);
  --ofsetPos2: translate(2px, 2px);
  --ofsetNeg2: translate(-2px, -2px);
  /* background shadow */
  --shadow1: rgba(0, 0, 0, 0.44) 0px 3px 8px;

  /*gallery subitem width */
  --width: -440px;
}

/* loader */
.loader{
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(190, 190, 190);
  background: -moz-linear-gradient(45deg, rgba(190, 190, 190, 1) 0%, rgba(238, 238, 238, 1) 50%, rgba(190, 190, 190, 1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(190, 190, 190, 1) 0%, rgba(238, 238, 238, 1) 50%, rgba(190, 190, 190, 1) 100%);
  background: linear-gradient(45deg, rgba(190, 190, 190, 1) 0%, rgba(238, 238, 238, 1) 50%, rgba(190, 190, 190, 1) 100%);
  transition: var(--trans1);
  z-index: 999;
  position: fixed;
  flex-direction: column;
}

.loader-content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column
}


.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid var(--aColor1);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--aColor1) transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* scrollbar */
/* width */
::-webkit-scrollbar {
  width: 2px;
  height: 6px;
  cursor: pointer;
}

/* Track */
::-webkit-scrollbar-track {
  background: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--mainColor);
  transition: var(--trans1);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--secColor);
}

html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  scroll-behavior: smooth;
}

body {
  background: rgb(190, 190, 190);
  background: -moz-linear-gradient(45deg, rgba(190, 190, 190, 1) 0%, rgba(238, 238, 238, 1) 50%, rgba(190, 190, 190, 1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(190, 190, 190, 1) 0%, rgba(238, 238, 238, 1) 50%, rgba(190, 190, 190, 1) 100%);
  background: linear-gradient(45deg, rgba(190, 190, 190, 1) 0%, rgba(238, 238, 238, 1) 50%, rgba(190, 190, 190, 1) 100%);
  background-attachment: scroll;
  background-size: 100vw 100vh;
  transition: var(--trans1);
}

p, a {
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-size: var(--fSize2);
  font-family: Function_Regular;
  color: var(--secColor);
  transition: var(--trans1);
}

h1 {
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-size: var(--fSize3);
  font-family: Function_Regular;
  color: var(--secColor);
  transition: var(--trans1);
  font-weight: bold;
}

h2 {
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-size: var(--fSize2);
  font-family: Function_Regular;
  color: var(--secColor);
  transition: var(--trans1);
  font-weight: bold;
}

h3 {
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-size: var(--fSize1);
  font-family: Function_Regular;
  color: var(--secColor);
  transition: var(--trans1);
  font-weight: bold;
}

header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Likely future */
  transition: var(--trans1);
}

div {
  transition: var(--trans1);
}

img {
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Likely future */
}

/* generic classes */
.container {
  width: 100vw;
  height: auto;
  padding: var(--contPad);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  transition: var(--trans2);
}

.content-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-container {
  width: 200px;
  height: 200px;
  transition: var(--trans1);
  background-color: var(--secColor);
  transform: var(--ofsetPos);
}

.box-container:hover {
  transition: var(--trans1);
  transform: var(--ofsetPos2);
}

.box-container-image {
  transition: var(--trans1);
  transform: var(--ofsetNeg);
}

.box-container-image:hover {
  transform: var(--ofsetNeg2);
}

.no-select {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}

/* header */
#header-container {
  width: auto;
  height: auto;
}

#header-nav-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 20px;
}

.header-hamburger {
  display: none;
  cursor: pointer;
  z-index: 300;
}

.header-info{
  display: none;
  z-index: 400;
  font-size: 0.5rem;
  width: 100%;
  height: 3rem;
  text-align: center;
  padding-top:var(--contPad);
  transition: var(--trans1);
}

.header-info>p{
  font-size: 1rem;
}

.header-back{
  display: none;

}

.header-nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--trans1);
  padding: 20px;
}

.header-nav-item:hover>p {
  color: var(--aColor1);
  transform: scale(1.15);
}

/* home */
#home-container {
  width: calc(100% - (var(--contPad) * 2));
  height: calc(100vh - (var(--contPad) * 2));
}

#home-content {
  flex-direction: row;
}

#home-logo>img {
  width: 100%;
  height: 100%;
}

#home-text-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

#home-text {
  padding: 20px;
  cursor: pointer;
}

#home-text>p {
  padding: 10px;
  font-size: var(--fSize3);
}

#home-text>p:nth-child(1) {
  font-weight: bold;
  padding-bottom: 0px;
}

#home-text>p:nth-child(3) {
  font-size: var(--fSize1);
}

#home-text:hover {
  color: var(--aColor2);
  transform: scale(0.99);
}

#home-text:hover>p:nth-child(3) {
  color: var(--aColor2);
  font-size: var(--fSize2);
}

/* gallery content */
#gallery-container {
  width: calc(100% - (var(--contPad) * 2));
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  transform: translateY(100vh);
}

#gallery-content {
  width: 100%;
  height: 100%;
  flex-direction: column;
  transition: var(--trans2);
}

.gallery-item-container {
  margin: calc(4 * var(--contPad));
  height: calc(100vh - (var(--contPad) * 8));
  width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}

.gallery-item-wrapper {
  padding: var(--contPad);
  width: 100%;
  height: 900px;
}

.gallery-item-titel {
  margin-bottom: var(--contPad);
}

.gallery-item-des {
  font-size: var(--fSize1half);
}

.gallery-item-img {
  padding: var(--contPad);
  width: 500px;
  height: 900px;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Likely future */
}

.gallery-item-img>img {
  width: 500px;
  height: 668px;
  object-fit: contain;
  object-position: bottom;
  -webkit-box-shadow: 8px 8px 0px 0px var(--secColor);
  box-shadow: 8px 8px 0px 0px var(--secColor);
}

.gallery-subitem-container {
  position: relative;
  left: 30px;
  width: 440px;
  display: flex;
  flex-direction: row;
  margin-top: var(--contPad);
  overflow: hidden;
}

.gallery-sliding-container {
  position: relative;
  display: flex;
  width: auto;
  flex-direction: row;
  left: 0px;
}

.gallery-subitem {
  margin: calc(var(--contPad) / 2);
  width: 126.66px;
  object-fit: contain;
  transition: var(--trans1);
  cursor: pointer;
  -webkit-box-shadow: 4px 4px 0px 0px var(--secColor);
  box-shadow: 4px 4px 0px 0px var(--secColor);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background-color: var(--aColor2);
}

.gallery-subitem:hover {
  transform: scale(1.1);
  -webkit-box-shadow: 0px 0px 0px 0px var(--secColor);
  box-shadow: 0px 0px 0px 0px var(--secColor);
}

.gallery-item-button {
  position: absolute;
  width: 34px;
  padding: 5px;
  height: 168.88px;
  margin-top: 702px !important;
  z-index: 100;
  cursor: pointer;
  transition: var(--trans1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item-button:hover {
  transform: scale(2);
}

.gallery-item-button>img {
  width: calc(100% - 10px);
  transition: var(--trans1);
}

.gallery-item-next {
  left: 480px;
}

.gallery-item-subtext-link {
  font-size: var(--fSize1);
  cursor: pointer;
}

.gallery-item-subtext-link>a {
  font-size: var(--fSize1);
  color: var(--aColor2);
}

.gallery-more-button {
  display: none;
}

.gallery-item-hide{
  display: none;
}

/* about me section */
#about-container {
  width: calc(100% - (var(--contPad) * 2));
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  transform: translateX(100vw);
}

#about-content {
  width: 100%;
  height: 100%;
  transition: var(--trans2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-item-container {
  margin: calc(4 * var(--contPad));
  height: calc(100vh - (var(--contPad) * 8));
  width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-img-container {
  padding: var(--contPad);
}

.about-img {
  width: 500px;
  height: 668px;
  object-fit: contain;
  object-position: bottom;
  -webkit-box-shadow: 8px 8px 0px 0px var(--secColor);
  box-shadow: 8px 8px 0px 0px var(--secColor);
}

.about-text-container {
  padding: var(--contPad);
  width: 100%;
  height: 668px;
}

.about-desc {
  margin-top: var(--contPad);
}

.about-socials {
  margin-top: var(--contPad);
  width: 100%;
  height: 140px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.about-socials>a {
  transition: var(--trans1);
  margin: var(--contPad);
  width: 50px;
  height: 50px;
  -webkit-box-shadow: 4px 4px 0px 0px var(--secColor);
  box-shadow: 4px 4px 0px 0px var(--secColor);
  cursor: pointer;
  z-index: 100;
}

.about-socials>a:first-child{
  margin-left: 0px;
}

.about-socials>a:hover {
  transform: scale(1.1);
  -webkit-box-shadow: 0px 0px 0px 0px var(--secColor);
  box-shadow: 0px 0px 0px 0px var(--secColor);
}

.about-socials>a>img {
  width: 100%;
  height: 100%;
}


/* Contact container */
#contact-container {
  width: calc(100% - (var(--contPad) * 2));
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  transform: translateX(-100vw);
}

#contact-content {
  width: 100%;
  height: 100%;
  flex-direction: column;
  transition: var(--trans2);
}

.contact-item-container {
  margin: calc(4 * var(--contPad));
  height: calc(100vh - (var(--contPad) * 8));
  width: 600px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contact-header>h2{
  font-weight: normal;
}

.contact-img-container {
  padding: var(--contPad);
}

.contact-img-container>img {
  width: 500px;
  height: 668px;
  object-fit: contain;
  object-position: bottom;
  -webkit-box-shadow: 8px 8px 0px 0px var(--secColor);
  box-shadow: 8px 8px 0px 0px var(--secColor);
}

.contact-text-container {
  padding: var(--contPad);
  width: 100%;
  height: 668px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-links {
  margin-top: var(--contPad);
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.contact-a {
  transition: var(--trans1);
  width: 100px;
  height: 100px;
  -webkit-box-shadow: 4px 4px 0px 0px var(--secColor);
  box-shadow: 4px 4px 0px 0px var(--secColor);
  cursor: pointer;
  z-index: 100;
}

.contact-links>div>a:hover {
  transform: scale(1.1);
  -webkit-box-shadow: 0px 0px 0px 0px var(--secColor);
  box-shadow: 0px 0px 0px 0px var(--secColor);
}

.contact-links>div>a>img {
  width: 100px;
  height: 100px;
}

.contact-links>div>div {
  font-size: var(--fSize1);
  margin-top: var(--contPad);
}

.contact-item {
  transition: var(--trans1);
  margin: var(--contPad);
  margin-left: calc(var(--contPad) * 2);
  margin-right: calc(var(--contPad) * 2);
  width: 200px;
  height: 200px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-copy-to-clipboard {
  width: 200px;
  text-align: center;
  height: 40px;
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-size: var(--fSize2);
  font-family: Function_Regular;
  color: var(--secColor);
  transition: var(--trans1);
  font-weight: bold;
}

.contact-copy-to-clipboard:hover {
  color: var(--aColor3);
  transform: scale(1.4);
}

.contact-copyed {
  transition: var(--trans2);
  position: relative;
  padding: var(--contPad);
  top: 66%;
  transform: scale(0.1);
  color: var(--aColor3);
  opacity: 0%;
}

.contact-copyed>h3 {
  color: var(--aColor3);
}
