/* _______________________________ algemene stijl _______________________________ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Apple Braille", sans-serif;
  }
  
  body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
  }
  
  /* Navigatiebalk */
  .navbar {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s, color 0.3s;
    border-bottom: 1px solid #000;
  }
  
  .nav-links,
  .social-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s, background-color 0.3s;
    position: relative;
    padding: 5px;
  }
  
  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s;
  }
  
  .nav-links li a:hover::after {
    width: 100%;
  }
  
  .nav-links li a.active::after {
    width: 100%;
  }
  
  /* Hover-effect en status na scrollen */
  .navbar.scrolled {
    background-color: #fff;
  }
  
  .navbar.scrolled .nav-links li a {
    color: #000;
  }
  
  .navbar.scrolled .nav-links li a::after {
    background-color: #000;
  }
  
  .navbar.scrolled .nav-links li a:hover::after {
    width: 100%;
  }
  
  .nav-links li a.active {
    font-weight: bold;
  }
  
  /* Social media-iconen */
  .social-links img.social-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    transition: transform 0.3s;
  }
  
  .social-links img.social-icon:hover {
    transform: scale(1.2);
  }
  
  /* beginscherm-sectie */
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 50px;
    background-image: url(/images/background_1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #252519;
    color: #fff;
    height: 90vh;
    width: 100%;
  }
  
  .hero h2 {
    font-size: 38px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 600px;
    text-align: center;
  }
  
  .hero p {
    font-size: 15px;
    margin-bottom: 5px;
    width: 100%;
    max-width: 600px;
    text-align: center;
  }
  
  /* Scroll Arrow */
  .scroll-arrow {
    margin-top: 20px;
    cursor: pointer;
  }
  
  .scroll-arrow img {
    width: 40px;
    height: auto;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  /* index grid */
  .index-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 20px;
    padding: 20px;
    margin: 175px auto;
    background-color: #fff;
    border-radius: 8px;
    width: fit-content;
  }
  
  .index-item {
    position: relative;
    width: 200px;
    height: 200px;
  }
  
  .index-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }
  
  .index-content {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.6s;
    border-radius: 18px;
  }
  
  .image:hover .index-content {
    opacity: 1;
  }
  
  .index-content h1 {
    font-size: 12px;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
  }
  
  .index-content > * {
    transform: translateY(20px);
    transition: transform 0.6s, opacity 0.6s;
  }
  
  .image:hover .index-content > * {
    transform: translateY(0);
  }

  /* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 100px;
  padding: 25px;
  margin: 100px auto;
  background-color: #fff;
  border-radius: 8px;
  width: fit-content;
}

.portfolio-item {
  position: relative;
  width: 350px;
  height: 350px;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.portfolio-content {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.6s;
  border-radius: 25px;
}

.image:hover .portfolio-content {
  opacity: 1;
}

.portfolio-content h1 {
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.content > * {
  transform: translateY(20px);
  transition: transform 0.6s, opacity 0.6s;
}

.image:hover .portfolio-content > * {
  transform: translateY(0);
}

 /* portfolio werk 1 tekst */

h2 {
  text-align: center;
  font-size: 36px;
  margin: 30px 0;
  margin-top: 100px;
}

.content {

  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}

p {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 30px;
}

 /* Slide-deck */

 .container{
  padding: 2rem;
}

.slider-wrapper{
  position: relative;
  max-width: 350px;
  margin: 0 auto;
}

.slider {
  display: flex;
  aspect-ratio: 12.07 / 17;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0, 0, 0.25);
  border-radius: 0.5rem;
}

.slider img {
  flex: 1 0 100%;
  scroll-snap-align: start;
  object-fit: cover;
}

.slider-nav {
  display: flex;
  column-gap: 1rem;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translate(-50%);
  z-index: 1;
}

.slider-nav a {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.75;
  transition: opacity ease 250ms;
}

.slider-nav a :hover {
  opacity: 1;
}
  
  /* Footer */
  .footer {
    background-color: #CFC6B2;
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
    color: #333;
    position: relative;
  }
  
  .footer-icons {
    margin-bottom: 10px;
  }
  
  .footer .footer-icons {
    border-bottom: 1px solid #333;
    width: 75%;
    padding-bottom: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-icons a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .footer-icons img.social-icon {
    width: 25px;
    height: 25px;
  }
  
  .footer-icons a:hover {
    transform: scale(1.2);
  }
  
  .footer-text {
    font-size: 12px;
    color: #333;
  }

  .blog-whitespace {
    padding-top: 750px;
  }

  .about-whitespace {
    padding-top: 750px;
  }

  .contact-whitespace {
    padding-top: 750px;
  }
  