body {
  background-color: black;
  margin: 0;
  padding: 0;
  font-family: 'Prompt', sans-serif;
  font-family: "snug-variable", sans-serif;
  font-variation-settings: 'XHGT' 100, 'wdth' 100, 'wght' 900;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 1rem;
  z-index: 1000;
}

.menu-icon {
  font-size: 4rem;
  cursor: pointer;
  color: #E3E4E8;
  margin-right: 5%;
}

.logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 5%;
}

.logo img {
  height: 60px;
  width: auto;
  margin-left: 0;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  background-color: black;
  width: 300px;
  height: 100%;
  padding: 1rem;
  z-index: 1000;
  display: none;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.menu.open {
  display: flex;
  right: 0;
}

.close-icon {
  font-size: 4rem;
  text-align: left;
  cursor: pointer;
  color: #E7E56E;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.menu ul li {
  margin: 1.5rem 0;
  margin-bottom: 50px;
  font-family: 'Prompt', sans-serif;
}

.menu ul li a {
  color: #E7E56E;
  text-decoration: none;
  font-size: 2rem;

}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}

.hero-image {
  max-width: 100%;
  height: auto;
}

#over {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #C582B2;
  padding-top: 150px;
  padding: 80px;
  gap: 2rem;
}

#profielfoto {
  max-height: 550px;
  width: auto;
}

.text-over {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #E3E4E8;
}

.text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #E3E4E8;
  padding-left: 10%;
}

h1 {
  color: #E3E4E8;
  font-family: "snug-variable", sans-serif;
  font-variation-settings: 'XHGT' 100, 'wdth' 100, 'wght' 900;
  font-size: 150px;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  color: #E3E4E8;
  font-family: "snug-variable", sans-serif;
  font-variation-settings: 'XHGT' 100, 'wdth' 100, 'wght' 900;
  font-size: 150px;
  align-items: center;
  text-align: center;
  margin-top: 5rem;
  text-transform: uppercase;
}

h3 {
  color: #E3E4E8;
  font-family: "snug-variable", sans-serif;
  font-variation-settings: 'XHGT' 100, 'wdth' 100, 'wght' 900;
  font-size: 100px;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

p {
  font-family: 'Prompt', sans-serif;
  color: #E3E4E8;
  font-size: 1.2rem;
  line-height: 1.6;
  padding-right: 80px;
  margin: 20px 0;
}

#resume {
  color: #E3E4E8;
}

button {
  padding: 10px 20px;
  font-family: "snug-variable", sans-serif;
  font-variation-settings: 'XHGT' 100, 'wdth' 100, 'wght' 900;
  border: 3px solid #E3E4E8;
  color: #E3E4E8;
  background-color: #C582B2;
  cursor: pointer;
  font-size: 2rem;
  margin-top: 20px;
  border-radius: 3px;
}

button:hover {
  background-color: #E3E4E8;
  color: #C582B2;

}

.button-link {
  text-decoration: none;
  padding: 10px 20px;
  font-family: "snug-variable", sans-serif;
  font-variation-settings: 'XHGT' 100, 'wdth' 100, 'wght' 900;
  border: 3px solid #E3E4E8;
  color: #E3E4E8;
  background-color: #C582B2;
  cursor: pointer;
  font-size: 2rem;
  border-radius: 3px;
}

.button-link:hover {
  background-color: #E3E4E8;
  color: #C582B2;
}

#work {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* Horizontaal centreren */
  align-items: flex-start;
  /* Verticaal bovenaan uitlijnen */
  padding: 40px;
  gap: 20px;
  margin: 0 auto;
  /* Centreer het blok zelf in de pagina */
}

.titelcenter {
  text-align: center;
  margin-top: 80px;
}

.work-item {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-item-link {
  flex: 1 1 calc(50% - 1rem);
  /* precies twee per rij, ruimte inbegrepen */
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}


.work-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 7, 7, 0.5);
  /* 50% dekking */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-item:hover .overlay {
  opacity: 1;
}

.work-item figcaption.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 7, 7, 0.5);
  color: #E7E56E;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 1rem;
  pointer-events: none;
}

.work-item:hover figcaption.overlay,
.work-item:focus-within figcaption.overlay {
  opacity: 1;
  pointer-events: auto;
}

.work-item figcaption {
  color: #E7E56E;
  font-size: 2rem;
  text-align: left;
  padding: 1rem;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


#skills {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.row {
  display: flex;
  justify-content: center;
  gap: 8rem;
  margin-bottom: 80px;
}

.image-wrapper,
.image-wrapper-middle {
  position: relative;
  display: inline-block;
}

.image-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}

.image-wrapper figcaption {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  color: black;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  font-family: 'prompt';
  border-radius: 6px;
  text-align: center;
}

.image-wrapper-middle figcaption {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  color: black;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  font-family: 'prompt';
  border-radius: 6px;
  text-align: center;
}

.image-wrapper-middle {
  transform: translateY(150px);
}

strong {
  color: transparent;
  -webkit-text-stroke: 2px #E3E4E8;
}

h2 {
  font-size: 3rem;
  color: #E3E4E8;
}

#contact {
  margin-top: 15%;
  padding: 8rem;
  padding-right: 8%;
  background-color: #C582B2;
}

footer {
  background-color: black;
  padding: 1rem 0;
}

.footer-content {
  display: flex;
  /* Flexbox voor de rij-indeling */
  justify-content: space-between;
  /* Zorgt voor ruimte tussen de items */
  align-items: center;
  /* Verticaal centreren van de items */
  margin: 0 auto;
  /* Horizontaal centreren van de footer */
}

#footer-nav {
  list-style: none;
  /* Verwijder opsommingstekens */
  padding: 0;
  margin: 0;
  display: flex;
  /* Horizontale rij voor navigatielinks */
  justify-content: center;
  /* Centreer de navigatielinks */
  width: 100%;
  /* Laat de navigatie de volle breedte innemen */
}

#footer-nav li {
  margin: 0 2rem;
  /* Ruimte tussen de navigatie-items */
}

#footer-nav li a {
  color: #E7E56E;
  /* Gele kleur voor de tekst */
  text-decoration: none;
  /* Verwijder de onderstreping */
  font-size: 1.2rem;
  /* Stel de tekstgrootte in */
}

#footer-nav li a:hover {
  text-decoration: underline;
  /* Onderstreping bij hover */
}

footer p {
  color: #E3E4E8;
  font-size: 1rem;
}

footer p span {
  font-weight: bold;
  color: #E7E56E;
}

.text-info {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  color: #E3E4E8;
  padding-left: 15%;
  padding-right: 15%;
}

#random-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem auto;
}

#works-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 4rem;
}

#works-container figure {
  width: calc(50% - 1rem);
  /* 2rem gap verdeeld over 2 elementen */
  max-height: 500px;
  margin: 0;
  text-align: center;
}



#works-container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#burr-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  /* Zorgt dat content naar onderen schuift */
  max-height: 700px;
  /* of jouw gewenste hoogte */
  padding-bottom: 2rem;
  /* ruimte onderaan */
}

#burr-hero img {
  max-height: 700px;
  margin-bottom: 3rem;
}


html {
  scroll-behavior: smooth;
}

.info-button {
  align-items: center;
  font-family: 'Prompt', sans-serif;
  pointer-events: auto;
  background: none;
  border: none;
  color: #E3E4E8;
  text-decoration: underline;
  font-size: 1.2rem;
  cursor: pointer;
}

.get-in-touch {
  background-color: #C582B2;
  text-align: center;
  padding: 4rem;
}

.asset2 {
  max-width: 70%;
  height: auto;
  display: block;
}


@media (max-width: 768px) {
  #work {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .work-item-link {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .skills-row {
    flex-direction: column;
    align-items: center;
  }


  .image-wrapper,
  .image-wrapper-middle {
    height: auto;
    transform: none;
    padding-top: 0;
  }

  .hero-image {
    width: 100%;
    height: auto;
  }

  #profielfoto {
    width: 100%;
    justify-content: center;
  }

  #over {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #profielfoto img {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    height: auto;
  }

  .text-over {
    width: 100%;
  }


  .text-over h1 {
    display: block;
    margin: 0 auto;
    margin-bottom: 1rem;
    text-align: center;
  }


  .text-over p {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0 auto 2rem auto;
    text-align: center;
  }

  .text-over .button-link {
    display: inline-block;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    text-align: center;
  }

  h1 {
    font-size: 4rem;
  }

  .text-info {
    width: 100%;
    text-align: center;
  }

  .text-info p {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0 auto 2rem auto;
    text-align: center;
  }

  .text-info h1 {
    display: block;
    margin: 0 auto;
    margin-bottom: 1rem;
    text-align: center;
  }

  nav .menu {
    width: 100%;
  }

  #contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5%;
    padding-right: 4rem;
  }

  #contact h1 {
    margin-bottom: -2rem;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  #contact .text-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #contact-buttons button {
    display: flex;
    flex-direction: column;
    font-size: 25px;
    max-width: 350px;
    width: 100%;
  }
  #contact-buttons {
margin-bottom: 2rem;
  }

  #contact p {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .logo {
    display: flex;
    justify-content: center;
    /* i.p.v. flex-start */
    margin-left: 0;
    /* verwijder de linkermarge */
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-content .logo img {
    max-width: 120px;
    height: auto;
  }

  #footer-nav {
    display: flex;
    flex-direction: row;
    /* zet de <li>'s naast elkaar */
    flex-wrap: wrap;
    /* zodat ze doorlopen als het niet past */
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #footer-nav li a {
    text-decoration: none;
    font-size: 1.5rem;
  }

  .footer-content p {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: 20%;
  }

  .get-in-touch h3 {
    font-size: 4rem;
  }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    background-color: black;
    width: 80vw;
    /* dynamische breedte: 80% van scherm */
    max-width: 300px;
    /* optioneel: max breedte */
    height: 100vh;
    /* volle hoogte */
    padding: 1rem;
    z-index: 1000;
    display: none;
    flex-direction: column;
    transition: transform 0.3s ease;
    box-sizing: border-box;
    /* voorkomt dat padding buiten het menu duwt */
    overflow-x: hidden;
    /* verberg horizontale scroll als iets te breed is */
  }

  .menu.open {
    display: flex;
  }

  .close-icon {
    font-size: 2.5rem;
    color: #E7E56E;
    margin-bottom: 2rem;
    text-align: left;
    /* sluitknop naar rechts */
  }

  .menu ul {
    padding: 0;
    margin: 0;
  }

  .menu ul li {
    margin-bottom: 2rem;
    text-align: left;
  }

  .menu ul li a {
    color: #E7E56E;
    font-size: 1.6rem;
    text-decoration: none;
  }
  .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 1rem;
  z-index: 1000;
}
  
}