
/* GENERAL
--------------------------------------------------- */

html, body {
  min-height: 100%;
  margin: 0;
  padding:0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

img {
  display: block;
  max-width: 100%;
}

.clickable {
  cursor: url("https://camille-sebastien.com/arrow.png"), auto;
}


.container {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.item {
  display: inline-block;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

#formulier {
  margin-top: 70px;
  margin-bottom: 70px;
  width: 100%;
  max-width: 1080px;
  padding: 20px;
  border: 1px solid #999;
  border-radius: 5px;
}

#inhoud {
  text-align: center;
}

.image img {
  margin-top: 70px;
  float: right;
}

.image2 img {
  width: 100%;
  height: 400px;
  margin-top: 70px;
}

.image3 {
  margin-top: 70px;
  float: right;
}

.image3 img {
  width: 250px;
  height: 250px;
  margin: 20px;
}

.headcursus {
  margin-top: 30px;
  text-align: center;
  text-decoration: underline;
}

.text {
  font-size: 20px;
  padding-left: 20px;
  margin-top: 70px;
  float: left;
  max-width: 50%;
}

/* FONT
--------------------------------------------------- */

@font-face {
    font-family: "Manassen";
    src: url("../fonts/manassen_01_regular.woff") format('woff');
}

@font-face {
    font-family: "Akzidenz";
    src: url("../fonts/akzidenz.woff") format('woff');
}

@font-face {
    font-family: "Fruitiger";
    src: url("../fonts/fruitiger.woff") format('woff');
}

body {
    font-family: Manassen, sans-serif;
    color: #999999;
}

footer {
    font-family: Akzidenz, sans-serif;
}

footer a {
    color: white;
}

.info-wrapper {
  font-family: Manassen, Akzidenz, sans-serif;
}

/* FIRST SCREEN
--------------------------------------------------- */

@keyframes first-screen-fade {
    to {
        opacity: 0;
        cursor: auto;
        pointer-events: none;
    }
}

.first-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    text-align: center;
    background-color: white;
    z-index: 12;
    cursor: progress;

    z-index: 999999;
    /* TESTING */
    animation-name: first-screen-fade;
    animation-duration: 1s;
    animation-delay: 5s;
    animation-fill-mode: forwards;
    opacity: 1;

    display: flex;
    justify-content: center;
    align-items: center;
}

.first-screen h2 {
    margin: 0 0 0 .1em;
    font-size: 2.5em;
    line-height: 1.4;
}

.first-screen p {
    margin: 0;
    font-size: 1.5em;
    line-height: 1.35;
    letter-spacing: .075em;
}


/* HEADER
--------------------------------------------------- */
header {
  position: relative;
  height: auto;
  background-color: white;
  overflow: hidden;
  margin-bottom: 4em;
}

header video {
  position: relative;
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  transition: opacity .4s;

}

header video.ended {
  opacity: 0;
  pointer-events: none;
}

header .video-finished {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%);
  font-size: 1.75em;
  z-index: 1;

}

header .video-finished a {
  color: #999;
  cursor: url(https://camille-sebastien.com/arrow.png), url(https://camille-sebastien.com/cursor.cur), pointer;
}

header .video-finished a:hover {
  color: black;
  text-decoration: none;
}

header .scroll-below-video {
  transition: 1.5s;
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 55px;
  height: 55px;
  background: url('../images/icons/arrow_white.svg') no-repeat center center;
  background-size: contain;
  fill: #999;
  cursor: url(https://camille-sebastien.com/arrow.png), url(https://camille-sebastien.com/cursor.cur), pointer;
  transform: translateX(-50%);
  z-index: 3;
}

@media ( max-width: 500px ) {
  header .scroll-below-video {
    opacity: 0;
    pointer-events: none;
  }
}

header .scroll-below-video:hover {
  fill: black;
}

header .scroll-below-video:hover {
  color: black;
}

header .container {
  position: relative;
  z-index: 2;
}


/* MENU + POP UP CONTAINERS
--------------------------------------------------- */

.open-menu {
    font-size: 1.3em;
    position: relative;
    top: 20px;
    left: 30px;
    width: 95%;
    z-index: 99999;
    cursor: url(https://camille-sebastien.com/arrow.png), url(https://camille-sebastien.com/cursor.cur), pointer;
}


.line-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.line {
  width: calc(100% - 60px); /* Totale breedte min 20px (10px aan beide zijden) */
  height: 1px;
  background-color: #999;
  margin: 40px 0 0 0;
}

/* .open-menu span:hover {
    color: black !important;
} */

.open-menu span {
    /* opacity: 0; */
    /* animation-timing-function: ease-in-out; */
}

.open-menu .iron {
    animation: show-hide 10s infinite;
}
.open-menu .class {
  animation: show-hide 10s infinite;
  animation-delay: 2.5s;
  position: absolute;
  top: 0;
  left: 0;
}
.open-menu .restoration {
    animation: show-hide 10s infinite;
    animation-delay: 5.0s;
    position: absolute;
    top: 0;
    left: 0;
}
.open-menu .x {
  animation: show-hide 10s infinite;
  animation-delay: 7.5s;
  position: absolute;
  top: 0;
  left: 0;
}



/* @keyframes show-hide {
    0% {
        opacity: 0;

    }
    10% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
} */
@keyframes show-hide {
    0% {
        color: transparent;
    }
    30% {
        color: transparent;
    }
    50% {
        color: #999;
    }
    70% {
        color: transparent;
    }
    100% {
        color: transparent;
    }
}


.menu-container, .info-wrapper {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 0;
    transform: scale(.1);
    transition: all 1s;
    transition-timing-function: ease-in-out;
    font-size: 1.5em;
    pointer-events: none;
}

.menu-container.open, .info-wrapper.open {
    pointer-events: all;
    background-color: white;
    opacity: 1;
    transform: scale(1);
}

.info-wrapper .close-wrapper,
.menu-container .close-menu {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: url("../images/icons/close.png") no-repeat center center;
    background-size: contain;
    cursor: url(https://camille-sebastien.com/arrow.png), url(https://camille-sebastien.com/cursor.cur), pointer;
    transition: transform .4s;
    transition-timing-function: ease-in-out;
}

@media (max-width: 500px) {
    .info-wrapper .close-wrapper,
    .menu-container .close-menu {
        top: 20px;
        left: 20px;
    }
}

.info-wrapper .close-wrapper:hover,
.menu-container .close-menu:hover {
    transform: scale(1.2);
}

.menu-container .email {
    position: relative;
    top: 50%;
    left: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    font-size: 1.5em;
}

.menu-container .email a {
    display: block;
    cursor: url("https://camille-sebastien.com/arrow.png"), auto;
}

@media (max-width: 500px) {
    .menu-container .email {
        font-size: .8em;
    }
}

.menu-container .email a:hover {
    color: black;
}

.menu-container .email a {
    text-decoration: none;
    color: #999;
}

.info-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;

    text-align: left;
}

.info-text {
    /* max-width: 88%; */
    text-align: left;
    padding-left: 6%;
    padding-right: 6%;
}

.info-wrapper.text-longer-than-wrapper {
    display: block;
    overflow-y: scroll;
}

.info-wrapper.text-longer-than-wrapper .info-text {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

@media (max-width: 500px) {
    .info-wrapper.text-longer-than-wrapper .info-text {
        max-width: 100%;
        padding-top: 80px;
    }
}



/* PHOTOS OF WORK = ITEMS
----------------------------------------------------- */
.owl-carousel .item {
  text-align: center;
}

.owl-carousel .item img {
  width: 200px;  /* Adjust as needed */
  height: 250px; /* Adjust as needed */
  object-fit: cover; /* This helps to keep the aspect ratio */
}

.owl-carousel .item:first-child {
  margin-left: 30px; /* Adjust the value as needed */
}

#info-text {
  padding: 10px;
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
}

#name-text {
  padding: 10px;
  margin-top: 20px;
  text-align: center;
  font-size: 40px;
  text-decoration: underline;
}

.row {
  margin-top: 0em;
  margin-bottom: 0em;
}

.item {
  margin: 8em 0 0;
}

.item.long {
  margin: 2em 0 0;
}

.item1 {
  width: 45%;
}

.item1.go {
  position: relative;
  transition: 2s;
  left: 5%;
}

.item2 {
  transition: 2s;
  display: block;
  width: 40%;
  margin-left: auto;
  margin-right: 15em;
}

.item2:hover, .item2.hover {
  -webkit-transform: scale(1.2) rotate(4deg);
  transform: scale(1.2) rotate(4deg);
}

.item3 {
  transition: 1.5s;
  width: 42%;
  margin-left: 5%;
}

.item3:hover {
  transform: translate(0, -125px);
}

.item4 {
  position: relative;
  z-index: 9999;
  transition: 3s;
  display: block;
  width: 62.5%;
  margin-left: auto;
  margin-right: 7.5%;
}

.item4:hover {
  transform: translate(-170px, -160px) scale(1.11);
}

.item5 {
  transition: 1.5s;
  transform: translateY(-250px);
}

.item5:hover {
  transform: translateY(-125px);
}

.item6 {
  transition: 2s;
  transform: translateY(20px);
}

.item6:hover {
  transform: translateY(-125px);
}

.item7 {
  transition: 3s;
  width: 20%;
  margin-left: 8%;
  transform: translateY(-50px);
}

.item7:hover {
  transform: ;
  transform: translate(120px, -50px);
}

.item8 {
  transition: 2.5s;
  display: block;
  margin-left: auto;
  width: 55%;
  transform: translateY(-75px);
}

.item8:hover {
  transform: translateY(-205px);
}

.item9 {
  transition: 1.5s;
  margin-left: 5%;
  width: 50%;
}

.item9:hover {
  /* transform: translateY(-100px); */
  -webkit-transform: scale(1.2) rotate(-5deg);
  transform: scale(1.2) rotate(-5deg);
}

.item10 {
  transition: 2.5s;
  display: block;
  margin-left: auto;
  width: 40%;
}

.item10:hover, .item10.hover {
  -webkit-transform: translateX(-115px) scale(1.1);
  transform: translateX(-115px) scale(1.1);
}

.item11 {
  transition: 2s;
  display: block;
  width: 45%;
  margin-left: 7.5%;
}

.item11:hover, .item11.hover {
  -webkit-transform: translateX(35px) rotate(8deg) scale(1.085);
  transform: translateX(35px) rotate(8deg) scale(1.085);
}

.item12 {
  transition: 4s;
  display: block;
  margin-left: 50%;
  transform: translate(-80%, 0);
  width: 15%;
}

.item12:hover, .item12.hover {
  -webkit-transform: translateY(57px);
  transform: translateY(57px);
}

.item13 {
  transition: 3s;
  display: block;
  margin-left: 7.5%;
}

.item13:hover {
  -webkit-transform: translateX(-17.5px) rotate(-17.5deg);
  transform: translateX(-17.5px) rotate(-17.5deg);
}

.item14 {
  transition: 2.8s;
  display: block;
  width: 55%;
  margin-left: auto;
}

.item14:hover {
  -webkit-transform: translate(-95px, 70px) scale(1.2);
  transform: translate(-95px, 70px) scale(1.2);
}

.item15 {
  transition: 5s;
}

.item15:hover {
  -webkit-transform: translateX(30%) rotate(-90deg);
  transform: translateX(30%) rotate(-90deg);
}

.item16 {
  transition: 2.75s;
  display: block;
  margin-left: auto;
  margin-right: 12%;
  transform: translateY(-175px);
}

.item16:hover {
  -webkit-transform: translateX(-35%) rotate(20deg);
  transform: translateX(-35%) rotate(20deg);
}

.item17 {
  transition: 3s;
  display: block;
  width: 45%;
  transform: rotate(-5deg);
  margin-left: 6%;
}

.item17:hover {
  -webkit-transform: translateX(10%) scale(1.2);
  transform: translateX(10%) scale(1.2);
}

.item18 {
  transition: 4s;
  width: 45%;
  margin-left: auto;
}

.item18:hover {
  -webkit-transform: translateX(-60%) scale(1.1);
  transform: translateX(-60%) scale(1.1);
}

.item19 {
  transition: 3s;
  width: 50%;
}

.item19:hover {
  -webkit-transform: translateX(25%) rotate(-45deg);
  transform: translateX(25%) rotate(-45deg);
}

.item20 {
  transition: 3s;
  width: 47.5%;
  display: block;
  margin-left: auto;
  margin-right: 9%;
}

.item20:hover {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.item21 {
  transition: 3.25s;
  width: 40%;
  margin-left: 14.5%
}

.item21:hover {
  -webkit-transform: translateX(40%) scale(1.15);
  transform: translateX(40%) scale(1.15);
}

.transition.off {
  transition: 0s;
}

/* Hover effects & animations */
.grow-rotate {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  transition-duration: 1s;
  transition-property: transform;
  -webkit-transition-property: transform;
  -webkit-transition-duration: 1s;
}

.grow-rotate:hover {
  -webkit-transform: scale(1.1) rotate(-4deg);
  transform: scale(1.1) rotate(-4deg);
}

@media (max-width: 1050px) {
  .item12 {
    max-width: 30%;
  }
}
@media (max-width: 850px) {
  .item {
    margin: 4.5em 0;
  }
  .item img {
    width: 90%;
  }
  img.item2 {
    width: 80%;
    margin-right: 2.5em;
  }
  .item4:hover {
    transform: translate(-50px, -50px) scale(1.25);
  }
  .item5 {
    transform: translateY(-25px);
  }
  .item5:hover {
    transform: translateY(-80px);
  }
  .item6 {
    transform: translateY(0px);
  }
  .item7 {
    transition: 4s;
    width: 40%!important;
  }
  .item8 {
    width: 100%!important;
  }
  .item3:hover {
    transform: translate(0, -100px);
  }
  .item10:hover {
    -webkit-transform: translateX(-35px) scale(1.1);
    transform: translateX(-35px) scale(1.05);
  }
  .item14:hover {
    -webkit-transform: translate(-30px, 55px) scale(1.1);
    transform: translate(-30px, 55px) scale(1.1);
  }
  .item15:hover {
    -webkit-transform: translateX(15%) rotate(-90deg);
    transform: translateX(15%) rotate(-90deg);
  }
  .item16:hover {
    -webkit-transform: translateX(-15%) rotate(8deg);
    transform: translateX(-15%) rotate(8deg);
  }
  .item17:hover {
    -webkit-transform: translateX(5%) scale(1.1);
    transform: translateX(5%) scale(1.1);
  }
  .item18:hover {
    -webkit-transform: translateX(-12%) scale(1.05);
    transform: translateX(-12%) scale(1.05);
  }
  .item19:hover {
    -webkit-transform: translateX(15%) rotate(-30deg);
    transform: translateX(15%) rotate(-30deg);
  }
  .item20:hover {
    -webkit-transform: translateX(-12%);
    transform: translateX(-12%);
  }
  .item21 {
    margin-left: 5%
  }
  .item21:hover {
    -webkit-transform: translateX(5%) scale(1.075);
    transform: translateX(5%) scale(1.075);
  }
  .open-menu .info {
    margin-left: 0em!important;
  }
  .header .video-finished a {
    top: 50%;
    font-size: 1.25em;
  }
}

/* FOOTER
----------------------------------------------------- */


body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  text-align: center;
  margin-top: auto;
  background-image: linear-gradient(rgba(153, 153, 153, 0), rgba(153, 153, 153, 1));
  color: white;
  padding: 70px 40px 20px;
}


#folder {
  float: left;
  display: inline;
  width: 49%;
}

@media screen and (max-width: 593px) {
    #folder {
        width: 95%;
        float: right;
    }
}


/* VIDEO PAGE
--------------------------------------------------- */

.video-container {
    max-width: 88%;
    min-height: 80%;
    margin-top: 5%;
}

.video-container a {
    display: block;
    margin-left: 5.7%;
    padding-bottom: 30px;
    font-size: 1.2rem;
    color: #999;
}
.video-container a:hover {
    color: black;
    text-decoration: none;
    cursor: url(https://camille-sebastien.com/arrow.png), url(https://camille-sebastien.com/cursor.cur), pointer;
}

.video-container iframe {
    display: block;
}

/* NO JS PAGE
--------------------------------------------------- */
.no-js-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 9999999999999;
}

/* Form page
--------------------------------------------------- */