
:root {

  --primary-color: #d3d1c0; //#ffde99;
  --accent-color: #a9a893;
  --accent-color-red: #b88055;
  --accent-color-blue: #1d2d3d;
}



html, body {
    padding: 0;
    margin: 0;
    background-color: var(--primary-color);
}




/* FONT SETTINGS */

@font-face {
            font-family: 'Stratum';
            src: url("Stratum2-Regular.otf") format("opentype");
            font-style: normal;
}

@font-face {
            font-family: 'Maison';
            src: url("MaisonNeueWEB-Medium.woff") format("opentype");
            font-style: normal;
}


h1, h2 {
    font-family: Stratum, sans-serif;
    text-transform: uppercase;
    color: #231f20
}

p, a {
    font-family: Maison, sans-serif;
    color: #231f20
}

h1 {
    font-size: 24px;
}

h2 { font-size: 18px
}

p, a {
    font-size: 14px;
}

a {
    color: var(--accent-color-red);
    //color: var(--accent-colors);
}


/* MAIN GRID */

header {
    grid-area: header;
    text-align: center;

}

.contentcontainer {
    grid-area: content;
}


.container {
    display: grid;
    grid-template-areas:
                        "header"
                        "content";
    width: 80%;
    margin: 10%;
}


/* HEADER */

header h1 {
    display: none;
}

header img {
    width: 70%;
    margin: 0vh auto 2vh auto;
}

.menu {
    /*display: block;
    position: absolute;
    top: 5%;
    right: 10%;*/
    width: 80%;
    margin: auto;
    z-index: 9999;
    margin-top: -2.4vh;

}

.menu img {
    width: 10%;
    //float: right;
    z-index: 9999;
}



/* CONTENT GRID */

.content {
    display: none;
}

.logo {
    width: 96%;
    margin: 4vh 0 0vh 0;
}

.boot {
    width: 40%;
    margin: 6vh 0 12vh 8vw;
}

.boek {
    width: 25%;
    margin-left: 30%;
}

/* SINGLE IMAGE */

.singleimage img, .singleimage video {
    width: 100%;
}


/* IMAGE SLIDER */

.beforeAfter{
    width: 100%;
    height: auto;
    right: 0 important!;
}

.fader {
    width: 100%;
    height: 250px;
    position: relative;
}

.fader img {
    width: 100%;
    position: absolute;
    top: 0;
}

.fader img:first-child {
    z-index: 100;
}

/* CAROUSEL */

.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
}

.mySlides {
  display: none;
}

.mySlides:first-child() {
  display: inline;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 4px;
  margin-top: -22px;
  color: var(--accent-color-red);
  background-color: rgba(201, 200, 200, 0.5);

  font-weight: bold;
  font-size: 28px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev {
    left: 0;
     border-radius: 3px 0 0 3px;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(201, 200, 200, 0.8);
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

.slideshow-container img {
    height: auto;
    width: 100%;
    vertical-align: middle;
}

.Stij-slides {
        margin-top: 2vh;
}



/* TIMELNE */

.timeline {
    border-left: 6px solid var(--accent-color);
    padding: 0%;
}

.timeline div {
    width: 100%;
    margin-left: 20px;
}

.timeline div::before {
  content: " ";
  display: block;
  position: relative;
  z-index: 1;
  left: -20px;
  top: 35px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;

  border-left:10px solid var(--accent-color);
}

.timeline p {
    width: 60%;
    font-size: 1rem;
}

.timeline img {
    position: relative;
    left: 40%;
    top: -50px;
    display: block;
    width: 50%;
    height: auto;

    margin-bottom: 2%;
}

.singleimage img, .timeline img, .beforeAfter img, #map, #thumbs img {
    //border-radius: 1vw;

}

/* NAV */

nav {
    display: none;
    //margin-top: 4vh;
    //float: right;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    //display: none;
position: absolute;
//top: 12vh;


}

.main-nav {
    position: relative;
    //outline: 1px solid red;
    display: block;
    //height: 3vh;
  //  top: 3.5vh;
    margin-bottom: 2vh;
}

nav div, .main-nav div {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    position: absolute;
    color: var(--primary-color);
}

.back {
    border-right: 10px solid var(--accent-color-red);
    margin-right: 2vw;
    left: 2vw;
}

.forward {
    border-left: 10px solid var(--accent-color-red);
    right: 2vw;
}


/* TEXT */

.text, .text-intro {
    margin-top: 4vh;
    margin-bottom: 4vh;
}

.metadata {
    margin: 4vh 0 4vh 0;
}

.metadata h2 {
    margin: 0;
}

.metadata p {
    margin: 0;
}

.titel {
    font-style: italic;
}


.tags a, .tags span {

    color: var(--accent-color-red);
}

#map {
    height: 500px;
    height: 40vh;
    width: auto;
    margin: 5% 0%;
    border: 1px solid var(--accent-color);
}


/* view thumbs for navigation */

#thumbs {
    display: none;
    padding-top: 4vh;
}

#thumbs div {
    width: 29.33%;
    height: 15vh;
    float: left;
    margin: 0 2% 9% ;
}

#thumbs div:hover, nav img, .menu {
    cursor: pointer;
}

#thumbs img {
    max-width: 100%;
    width: auto;
    max-height: 80%;
    height: auto;
}

#thumbs p {
    margin: 0;
}

@media only screen and (orientation: landscape) {
    .container {
        margin-top: 0;
    }

    .contentcontainer {
        width: 70%;
        margin: 2% 15%;
    }

    header img {
        width: 40%;
        margin: 6vh auto 2vh auto;
    }

    .menu img {
        width: 5%;
        margin: 0;
    }

    .slideshow-container {
        max-width: 100%;
        width: auto;
        text-align: center;
    }

    .back {
        left: 9vw;
    }

    .forward {
       right: 9vw;
    }


    #thumbs div {
        height: 50vh;
    }

}




@media only screen and (orientation: landscape) and (min-width: 1080px) {

    header img {
        width: 30%;
    }

    .menu img {
        width: 3%;
    }

    .container {
        width: 60%;
        margin: 0 20%;
    }

    .boot {
        margin-left: 15vw;
    }

    #thumbs div {
        width: 23%;
        height: 15vh;
        float: left;
        margin: 0 1% 4% ;
    }
}

