/* GENERAL */
body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f3f4f6;
  padding-top: 70px;
}

/* NAVIGATIE*/

#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  transition: opacity 0.3s ease;
  opacity: 0;
}


/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 65px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
  }
}

.hero-text h1 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 16px;
}

.hero-text h3 {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 20px;
}

.hero-image {
  width: 250px;
  height: auto;
  border-radius: 16px;
  background-image: url("images/waverechthoekdonker.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px;
}

@media (min-width: 768px) {
  .hero-image {
    width: 320px;
    margin-left: auto;
  }
}

/* EXPANDING CIRCLE */
.scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0.2);
  width: 300px;
  height: 300px;
  background: #5ab29f;
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
}

/* PROJECTS */

.project-section {
  background: #f3f4f6;
  padding: 0px 32px;
  height: auto;
}

.project-section h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 32px;
  text-align: center;
}

.project-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}


@media (min-width: 768px) {
  .project-container {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
  }
}


.project-kaart {
  width: 100%;
  max-width: 320px;
  min-height: 400px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  background-color: #5ab29f;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.project-kaart img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.project-kaart p {
  font-size: 16px;
  line-height: 1.6;
}

.projectknop {
  display: inline-block;
  padding: 12px 20px;
  background: #1F2937;
  color: white;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  align-items: center;
}

.projectknop:hover {
  background-color: #2F3D51;
  transform: scale(1.05);
}

/* Knoppen */
.knop-rij {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.project-knop {
  margin-top: 32px;
  gap: 16px;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 36px;
}

.knop,
.bekijkmeer {
  display: inline-block;
  padding: 12px 20px;
  background: #5ab29f;
  color: white;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  align-items: center;
}

.knop:hover,
.bekijkmeer:hover {
  background: #4a9c8b;
  transform: scale(1.05);
}

/* Over Section */
.over-section {
  background: #1f2937;
  color: white;
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.over-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 65px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .over-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 80px;
  }
}

.over-text {
  max-width: 600px;
}

.over-text h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.over-text p {
  font-size: 18px;
  line-height: 1.6;
}

.over-image {
  width: 250px;
  height: auto;
  border-radius: 16px;
  background-image: url("images/waverechthoeklicht.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px;
}

@media (min-width: 768px) {
  .over-image {
    width: 320px;
  }
}