/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
  background-color: #f8f8fa;
  font-family: verdana;
  margin: 0 auto;
  line-height: 150%;
  padding-top: 100px;

  @media (min-width: 768px) {
    padding-top: 0px;
  }

  &.home{
    padding-top: 50px;

    @media (min-width: 768px) {
      padding-top: 0px;
    }
  }
}

.block{
  padding: 24px 0;
}

.flex {
  @media (min-width: 1400px) {
    gap: 20px;
    align-items: center;
    display:flex;
  }
}

.bottom-navigation{
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: 24px;

  .seemore{
    font-weight: 700;
    color: #132043;
  }

  a{
    display: flex;
    gap: 15px;
    align-items: center;
    color: #132043;
    font-weight: 400;
  }
}

.container {
  width: 95%;
  margin: 0 auto;

  @media (min-width: 1400px) {
      max-width: 1100px;
  }
}

a {
  text-decoration: none;
  color: #f1b4bb;
  font-weight: bold;
}

p {
  margin-top: 16px;
  margin-bottom: 64px;

  @media (min-width: 1400px) {
    margin-bottom: 16px;
  }
}

img {
  max-width: 95vw;
  margin-bottom: 16px;
  margin-top: 16px;

  @media (min-width: 768px) {
    max-width: 100%;
  }
}

p {
  font-size: 16px;
}

ul.bulletpoints li {
  list-style: disc;
  margin-left: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 16px;
  margin-top: 16px;
}

strong{
  font-weight: 700;
}

h1 {
  font-size: 64px;
  padding: 0;
  color: #132043;
}

h2 {
  font-size: 32px;
  color: #132043;
  margin: 8px;
}

h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: #f1b4bb;
  margin: 0;
}

.mb{
  margin-bottom: 32px;
}

.center {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
}

.banner {
  background-image: url("img/banner3.png");
  background-size: cover;
  background-position: center;
  height: 85vh;

}

.banner h1 {
  color: #fdf0f0;
  margin: 0;
}

nav{
  ul li {
    margin-left: 40px;
    text-transform: uppercase;
  }

  li {
    font-size: 20px;
    font-weight: bold;
    padding: 0;
    margin: 0;
    font-family: Verdana;
  }

  img {
    margin: 0;
  }

  li a {
    text-decoration: none;
    color: #fdf0f0;
  }
}

/* main nav section */
nav.main-nav {
  display: none;

  @media screen and (min-width: 768px) {
    display: flex;
    justify-content: space-between;
    max-width: 90vw;
    margin: 0 auto;
    padding: 48px 0;

    width: 100%;
  }

  ul {
    display: flex;
    gap: 20px;
  }
}

/* mobile nav section */
.mobile-nav{
  position: fixed;
  top: 0;
  left: 0;
  background-color: #132043;
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: space-between;

  @media screen and (min-width: 768px) {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    height: 100vh;
    width: 100vw;
    background-color: #132043;
    color: white;
    align-items: center;
    justify-content: center;
    text-align: center;

    ul {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    a{
      color: white;
    }
  }

  .mobile-menu.active {
    display: flex;
  }
}

.hamburger {
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  display: flex;
  padding: 16px;
  z-index: 1000;

  span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    display: block;
  }
}

.logo {
  width: 100px;
  padding-left: 16px;

  @media screen and (min-width: 768px) {
    width: 150px;
  }
}

/* Nav other pages */
.simple {
  color: #132043;
  background-image: none;
  background-color: #f8f8fa;
  height: fit-content;
  padding-bottom: 100px;
}

.work {
  background-image: url("img/bannerwhite.png");
}

.simple nav li a {
  color: #132043;
}

.cocreation{
  padding: 32px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 24px;
  text-align: center;
  font-weight: 700;

  div{
    flex: 1;
  }
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fdf0f0;

  @media screen and (min-width: 768px) {
    flex-direction: row;
  }

  img {
    height: 100%;
    object-fit: cover;
    max-height: 325px;

    @media screen and (min-width: 768px) {
      max-height: 60vh;
    }
  }

  p {
    display: inline;
    font-family: Verdana;
    font-size: 20px;
    line-height: 30px;
  }
}

.transition {
  text-align: center;
  padding: 64px 0;
}

.projects {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;

  @media screen and (min-width: 768px) {
    display: grid;
    grid-template-areas:
    "campusprint blossomcrafts"
    "snufflefiets grad ";
    gap: 34px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.case {
  box-shadow: 0px 4px 10px 0px rgba(48, 16, 73, 0.15);
  display: flex;
  flex-direction: column;
}
.case a {
  margin-top: auto;
  
  }

.campusprint {
  grid-area: campusprint;
  padding: 35px;
  object-fit: cover;
  background-color: white;
  text-align: left;
  border-radius: 15px;

  img {
    width: 100%;
    text-align: center;
    object-fit: cover;
    border-radius: 15px;
  }

}

.tags {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;

  span {
    font-weight: 900;
    background-color: #F2F5FC;
    border-radius: 15px;
    border: 1px solid #E1E3F8;
    padding: 8px;
    color: #132043;
  }
}

.snufflefiets {
  grid-area: snufflefiets;
  padding: 35px;

  object-fit: cover;
  background-color: white;
  text-align: left;
  border-radius: 15px;

  img {
    width: 100%;
    text-align: center;
    object-fit: cover;
    border-radius: 15px;
  }
}

.blossomcrafts {
  grid-area: blossomcrafts;
  padding: 35px;

  object-fit: cover;
  background-color: white;
  text-align: left;
  border-radius: 15px;

  img {
    width: 100%;
    text-align: center;
    object-fit: cover;
    border-radius: 15px;
  }
}

.grad {
  grid-area: grad;
  padding: 35px;

  object-fit: cover;
  background-color: white;
  text-align: left;
  border-radius: 15px;

  img {
    width: 100%;
    text-align: center;
    object-fit: cover;
    border-radius: 16px;
  }
}

footer {
  background-color: #132043;
  color: white;
  margin-top: 100px;
}

.footer-details {
  padding: 72px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  gap: 20px;

  @media screen and (min-width: 768px) {
    flex-direction: row;
  }

  span {
    font-weight: bold;
  }
}

/*Playground css */
.title h1 {
  color: #132043;
}

.title {
  text-align: center;
}

.playground img {
  object-fit: cover;
  height: 320px;
  width: 320px;
  padding: 16px;
  border-radius: 5%;
}

.line {
  border: none;
  border-bottom: 3px solid #f1b4bb;
  width: 50%;
  margin-left: 0;
}

/*Campusprint css */
.project-header span {
  font-weight: 900;
  background-color: #F2F5FC;
  border-radius: 16px;
  border: 1px solid #E1E3F8;
  padding: 8px;
}

.project-property span {
  color: #f1b4bb;
}

.project-header {
  margin-bottom: 40px;
}

.project-info {
  margin-top: 10px;
  flex-direction: column;
  gap: 40px;
  font-weight: 1000;
  font-family: Verdana;
  font-size: 20px;

  @media screen and (min-width: 768px) {
    display: flex;
  }
}

.project-properties {
  @media screen and (min-width: 768px) {
    display: flex;
    justify-content: space-between;
  }
}

.project-image img {
  @media screen and (min-width: 768px) {
    max-width: 600px;
  }
}

/* End of about project banner */

h4 {
  font-size: 24px;
  color: #132043;
  font-weight: 900;
  margin-bottom: 0px;
}

.project1-how {
  align-items: center;
  gap: 30px;
  margin: 48px 0px 48px 0;

  @media screen and (min-width: 768px) {
    display: flex;
  }

  img{
    max-width:600px ;
  }
}
 
.white-bg {
  background-color: white;
}

.project1-problem {
  @media screen and (min-width: 768px) {
    padding: 40px;
  }
}

.project1-challenges {

  @media screen and (min-width: 768px) {
    padding: 40px;
    
  }
}

.project1-challenges img {
  max-height: 600px;
  object-fit: contain;
}

.print-jobs {
  justify-content: space-between;
  align-items: center;

  @media screen and (min-width: 768px) {
    display: flex;
  }
}

.refresh-button {
  width: 360px;
}

.other-fixes {
  padding: 40px;
}

.project1-fixes {

  justify-content: space-between;
  align-items: center;
  padding: 24px;
  gap: 100px;

  @media screen and (min-width: 768px) {
    display: flex;
  }
}

.project1-conventions {
  @media screen and (min-width: 768px) {
    align-items: center;
    max-width: 800px;
    display: flex;
    margin: 0 auto;
    gap: 56px;
  }
}

.project1-other {
  gap: 100px;
  justify-content: center;

  @media screen and (min-width: 768px) {
    display: flex;
  }
}
.project1-separation { 
  img {
    margin: 0 20px;
  }
}
.millers-law {
  width: 400px;
}

.quick-answer {
  width: 400px;
}

/*about me */
.aboutme {
  color: #000000;
  font-size: 16px;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  color: #fdf0f0;
  gap: 50px;

  @media screen and (min-width: 768px) {
    flex-direction: row;
  }

}

.aboutme img {
  max-height: 365px;

  @media screen and (min-width: 768px) {
    max-height: 60vh;
  }
}

.aboutme p {
  display: inline;
  color: #132043;
  font-size: 16px;
}

/*blossomcrafts page */

.project2-introduction img {
  width: 900px;
}

.project2-userflow img {
  width: 1400px;
}

.project2-finding img {
  width: 800px;
}

.project2-step1 img {
  width: 700px;
}

.project2-step1 {
  gap: 20px;
  align-items: center;

  @media screen and (min-width: 768px) {
    display: flex;
  }
}

.project2-step2 img {
  width: 700px;
}

.project2-step2 {
  gap: 20px;
  align-items: center;

  @media screen and (min-width: 768px) {
    display: flex;
  }
}