@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,600,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap");

:root {
  --black: #000;
  --white: #fff;
  --light-grey: #b3b3b3;
  --dark-grey: #808080;
}

/* ------------------------------------------- General styling ------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-size: 62.5%;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

li {
  list-style: none;
}

main {
  position: relative;
  width: 100%;
  height: 100%;
}
textarea,
select,
input,
button {
  outline: none;
}

/* ------------------------------------------- Navigation ------------------------------------------- */
.burger {
  position: fixed;
  z-index: 6;
  width: 60px;
  height: 60px;
  background-color: var(--white);
  right: 0;
  top: 60vh;
  transition: 0.5s ease;
}

.invert {
  filter: invert(100%);
}

.line {
  width: 40px;
  height: 4px;
  margin: 12px 10px;
  background-color: var(--black);
  transition: 0.5s ease;
}
.nav-active .line1 {
  transform: rotate(45deg);
  margin-top: 28px;
}
.nav-active .line2 {
  opacity: 0;
}
.nav-active .line3 {
  transform: rotate(-45deg);
  margin-top: -32px;
}

nav {
  position: fixed;
  background-color: var(--black);
  width: 100vw;
  height: 100vh;
  transform: translateY(-100%);
  z-index: 5;
  overflow: hidden;
  transition: 0.5s ease;
}
.nav-content {
  margin-left: 10vw;
}

.nav-links {
  margin-top: 32vh;
}

.nav-active {
  overflow: hidden;
}
.nav-active nav {
  transform: translateY(0%);
  pointer-events: all;
}

.nav-active .logo {
  color: var(--white) !important;
}

.menu-items a {
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.5s ease;
}
.toggle-expand {
  cursor: pointer;
}
.expanded-menu {
  margin-top: -10px;
  margin-left: 20px;
  display: none;
  padding: 10px 0 0;
}
.expand-active {
  display: block;
}

.expanded-menu a {
  padding: 5px 0;
  display: inline-block;
  font-size: 20px;
  font-weight: 300;
  text-transform: none;
}
.social-media {
  position: absolute;
  bottom: 10vh;
}
.social-media a {
  color: white;
  font-size: 20px;
}

/* ------------------------------------------- Logo------------------------------------------- */

.logo {
  position: fixed;
  left: 10vw;
  top: 5vh;
  color: black;
  z-index: 10;
  font-size: 2rem;
  font-weight: 300;
  transition: 0.5s ease;
}
.logo span {
  font-weight: 700;
}
.logo-white {
  color: var(--white) !important;
}
.logo-black {
  color: var(--black);
}

/* ------------------------------------------- masthead------------------------------------------- */
.masthead {
  display: grid;
  position: relative;
}
#videoHeader {
  /* position: absolute; */
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  object-fit: cover;
}
.bg {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  grid-row: 1;
  grid-column: 1;
}
.masthead-text {
  grid-row: 1;
  grid-column: 1;
  color: white;
  align-self: center;
  justify-self: center;
  font-weight: 400;
  font-size: 5rem;
  text-align: center;
  font-family: "Playfair Display", serif;
}
.scroll-word {
  grid-row: 1;
  grid-column: 1;
  position: absolute;
  z-index: 9;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.5rem;
  color: white;
}

/* ------------------------------------------- header------------------------------------------- */
section {
  min-height: 100vh;
  min-width: 100vw;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.inner {
  position: relative;
  width: 80%;
}

/* ------------------------------------------- about------------------------------------------- */

.timeline {
  background-color: var(--black);
}

.inner-timeline {
  position: relative;
  width: 100vw;
  padding-left: 10vw;
}
.heading {
  font-size: 5rem;
  width: 80%;
  color: var(--white);
}
.scroll {
  padding: 5rem 0;
  width: 90vw;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  overflow: scroll;
  grid-column-gap: 25vw;
  scroll-behavior: smooth;
}
.scroll::-webkit-scrollbar {
  display: none;
}

.timeline-item {
  width: 50vw;
}
.timeline-item p {
  color: var(--white);
  font-weight: 300;
}

.year {
  font-size: 2rem;
  border-bottom: 1px solid var(--white);
  display: inline;
}

.description {
  padding: 1rem 0;
  font-size: 1.8rem;
}

.photoscroll {
  max-width: 80vw;
}

.space {
  width: 1px;
}

.personal-photo {
  width: 100%;
  max-width: 500px;
}

.secondary-title {
  font-size: 5rem;
  font-weight: 400;
}
.aboutme-text {
  font-size: 1.8rem;
  padding: 1rem 0;
}

.about {
  padding-top: 10vh !important;
}

.about .inner {
  width: 100%;
}
.personal-photo-desktop {
  display: none;
}

.about-svg {
  height: 80%;
  position: absolute;
  left: -50%;
  animation: rotate 30s linear infinite alternate;
}

/* ------------------------------------------- content------------------------------------------- */

.content {
  /* padding: 20vh 10vw; */
  padding: 50px 8vw 8vh 8vw;
  display: grid;
  grid-gap: 10rem;
  position: relative;
}

.quote h2 {
  font-size: 3rem;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  width: 70%;
}

.quote h3 {
  font-size: 2rem;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  width: 70%;
}

/* Author */
.quote span {
  font-size: 1.5rem;
}

.title {
  color: var(--light-grey);
  width: 100%;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 5rem;
  margin-top: 5rem;
}

.portfolio-items {
  display: grid;
  grid-row-gap: 5rem;
}
.portfolio-items a {
  overflow: hidden;
}

.portfolio-item {
  height: 30vh;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link {
  display: flex;
  justify-content: center;
}

.link a {
  color: var(--light-grey);
  font-size: 2.8rem;
  font-weight: 300;
  border-bottom: 1px solid var(--light-grey);
  padding: 0 20px;
}

.full-height {
  height: 100vh;
}

.portfolio-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}

.portfolio-images {
  width: 100%;
  display: flex;
}
.portfolio-images img {
  width: 100%;
  margin: 1rem 0;
}

.left-side {
  width: 50%;
  padding: 0 1rem;
  margin-top: 200px;
}
.right-side {
  width: 50%;
  padding: 0 1rem;
}
/* .custom-padding {
  padding: 10vh 10vw;
} */
.three-columns-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: 30px;
}
.no-grid-gap {
  grid-gap: 0;
}

.span-2 {
  grid-column: span 2;
}
.span-3 {
  grid-column: span 3;
}

/* ------------------------------------------- work------------------------------------------- */
#work-desktop {
  display: none;
}
.portfolio-items {
  grid-gap: 5rem;
}
.portfolio-item {
  display: flex;
  flex-direction: column;
}

.portfolio-items h3 {
  color: var(--dark-grey);
  text-align: left;
  font-size: 3rem;
  padding: 10px 0;
}

.portfolio-items span {
  font-size: 2rem;
  margin-right: 20px;
  font-weight: 300;
}

.categories {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.categories button {
  font-size: 2rem;
  color: var(--dark-grey);
}

/* ------------------------------------------- individual-work-items ------------------------------------------- */

.project-work {
  display: grid;
  grid-gap: 2rem;
}
.single-column {
  grid-template-columns: repeat(2, 1fr);
}
.double-column {
  grid-template-columns: repeat(2, 1fr);
}
.tripple-column {
  grid-template-columns: repeat(3, 1fr);
}

.stretch-2 {
  grid-column: span 2;
}
.stretch-3 {
  grid-column: span 3;
}

.project-work img {
  width: 100%;
}

.portfolio-detail {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
  padding: 20px 0;
}
.border-bottom {
  border-bottom: 1px solid var(--dark-grey);
}
.portfolio-details {
  width: 100%;
}
.portfolio-details p {
  font-size: 1.4rem;
  font-weight: 300;
}
.portfolio-detail-title {
  color: var(--light-grey);
  text-align: left;
}
.portfolio-detail-content {
  width: 50%;
  text-align: left;
}

.next {
  position: fixed;
  right: 10vw;
  top: 5.5vh;
  z-index: 5;
}
.next a {
  color: var(--black);
  border-bottom: 1px solid var(--black);
  font-size: 1.4rem;
  transition: 0.5s ease;
}
.full-width-img {
  width: 100%;
}

.image-description {
  width: 100%;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
  font-size: 1.4rem;
}

.image-description a {
  color: black;
  border-bottom: 1px solid black;
}
.show-all,
.show-business,
.show-wedding {
  background: white;
  border: none;
}

.current-filter {
  background: white;
  padding: 5px;
  border: none;
  border-bottom: 1px solid var(--light-grey);
}

/* ------------------------------------------- contact------------------------------------------- */

/* ------contact------ */
.contact {
  height: 100vh;
  width: 100vw;
  background-color: var(--black);
  overflow: hidden;
  position: relative;
}

.contact-text {
  position: absolute;
  left: 8vw;
  top: 25vh;
  font-family: "Poppins", sans-serif;
  color: white;
  font-weight: 300;
  font-size: 3rem;
}
.contact-text a {
  color: white;
  border-bottom: 1px solid white;
}
.contact-details {
  position: absolute;
  bottom: 10vh;
  left: 5.5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 4;
}
.contact-details a {
  color: var(--light-grey);
  padding: 5px 0;
  font-size: 1.5rem;
}
.contact-details-right {
  position: absolute;
  bottom: 10vh;
  right: 5.5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 4;
}
.contact-details-right p {
  color: var(--light-grey);
  padding: 1px 0;
  font-size: 1.1rem;
}
.get-in-touch {
  position: absolute;
  width: 80%;
  bottom: -10%;
  right: -20%;
  animation: rotate 30s linear infinite;
  z-index: 0;
}

.get-to-know-me {
  position: absolute;
  width: 85%;
  bottom: 75%;
  left: -20%;
  animation: rotate 30s linear infinite;
  z-index: 0;
}

video {
  width: 100%;
}

/* ------------------------------------------- footer------------------------------------------- */

footer {
  background: var(--black);
}

.footer-content {
  padding: 10vh 8vw;
}

.icons {
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid var(--light-grey);
}

.icon {
  width: 50px;
}

.personal-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0;
}
.personal-info p {
  color: var(--light-grey);
  font-size: 1.5rem;
}
.personal-info a {
  color: var(--light-grey);
  font-size: 1.5rem;
}
.personal-info:last-child {
  color: var(white);
}

@media screen and (min-width: 900px) {
  html,
  body {
    font-size: 75%;
  }

  /* ------------------------------------------- Nav------------------------------------------- */
  nav {
    transform: translateY(0%);
    background: none;
    color: black;
    width: 20vw;
  }
  .nav-content {
    margin-left: 4vw;
  }
  nav .logo-container {
    left: 4vw;
    top: 2rem;
  }

  nav .social-media {
    display: none;
    bottom: -30vh;
    position: fixed;
  }
  .work-only nav .social-media {
    display: block;
    color: white !important;
  }

  .social-media a {
    transition: 0.5s ease;
  }

  .menu-items a {
    color: var(--black);
  }
  .nav-links {
    margin-top: 50vh;
    transform: translateY(-50%);
  }
  .burger {
    display: none;
  }
  .menu-white {
    color: var(--white) !important;
  }

  /* ------------------------------------------- logo------------------------------------------- */
  .logo {
    left: 4vw;
  }

  /* ------------------------------------------- content------------------------------------------- */
  .content {
    padding: 20vh 25vw;
  }
  .custom-padding {
    padding: 10vh 25vw;
  }

  .quote {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .quote h2 {
    text-align: center;
    width: 40%;
    font-size: 4rem;
  }
  .portfolio-item {
    height: 50vh;
  }
  /* ------------------------------------------- about------------------------------------------- */

  .about-svg {
    width: 60%;
    position: absolute;
    left: -20%;
  }

  .inner-timeline {
    margin-left: 24%;
  }
  .personal-photo {
    display: none;
  }
  .about {
    padding-top: 20vh !important;
  }
  .personal-photo-desktop {
    display: block;
    position: absolute;
    width: 30%;
    right: 10vw;
  }

  /* ------------------------------------------- work------------------------------------------- */

  .index {
    font-size: 60%;
    margin-right: 1rem;
  }
  #work {
    display: none;
  }
  #work-desktop {
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
    position: relative;
  }

  .white a,
  .logo {
    color: white;
  }

  .work-items {
    display: flex;
    position: relative;
    z-index: 9;
    justify-content: space-between;
  }

  .wedding-list,
  .business-list {
    display: flex;
    flex-direction: column;
  }
  .wedding-list p,
  .business-list p {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 300;
  }
  .wedding-list a,
  .business-list a {
    color: var(--light-grey);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .wedding-list a:hover,
  .business-list a:hover {
    color: var(--white);
  }

  .thumbnail-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30vw;
    z-index: 0;
    height: 250px;
    display: none;
    object-fit: cover;
  }

  .g3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-images {
    justify-content: space-evenly;
  }

  .left-side {
    width: 30%;
  }
  .right-side {
    width: 30%;
  }

  .three-columns-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .single-images {
    display: grid;
    grid-gap: 5rem;
  }

  /* ------------------------------------------- contact------------------------------------------- */
  .contact-text {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 6;
    font-size: 3rem;
  }

  .contact-menu li a {
    color: white;
  }

  .get-to-know-me {
    width: 50%;
    bottom: 1.5%;
  }
  .contact-details {
    z-index: 10;
  }
  /* ------------------------------------------- footer------------------------------------------- */

  .footer-content {
    padding: 10vh 24vw;
  }
  #videoHeader {
    left: 0;
  }

  /* Voorbeeld van het veranderen foto op desktop */

  .beanroasted {
    content: url("../img/Banners/beanroastedpcheader.png");
  }

  .janice {
    content: url("../img/Janice/janiceheader.jpg");
  }

  .playmedia {
    content: url("../img/playmedia/header.png");
  }

  .hellodc {
    content: url("../img/Hellodc/3.JPG");
  }

  .sams {
    content: url("../img/Sam's Grillroom/foto's/vuurpan.jpg");
  }

  .donut {
    content: url("../img/3d/donut/1.png");
  }
  /* Linda probeert: */
  .zoom-max {
    transition: transform 0.2s; /* Animation */
    margin: 0 auto;
  }

  .zoom-max:hover {
    transform: scale(
      2.5
    ); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }

  .zoom {
    transition: transform 0.2s; /* Animation */
    margin: 0 auto;
  }

  .zoom:hover {
    transform: scale(
      1.5
    ); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }
}
/* ------------------------------------------- contact------------------------------------------- */

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 900px) {
  .portfolio-detail {
    flex-direction: column;
  }
  .portfolio-detail-content {
    width: 100%;
  }
}
