/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
  color: #333;
  font-family: "Segoe UI", sans-serif;
  height: 100vh;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #111;
  padding: 3rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.nav-links a {
  text-decoration: none;
  color: #ddd;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: #ff7b00;
  transform: translateY(-2px);
}

.nav-links a.active {
  color: #ff7b00;
}

@media (max-width: 768px) {
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 1.1rem; }
}

/* ===== HOMEPAGE HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(to right, #ff7b00 0%, #ff0040 25%, #ff00a0 60%, #a000ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem;
  padding-top: 120px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
  width: 100%;
  padding: 3rem;
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.hero-container .title { font-size: 3.5rem; color: #ff7b00; margin-bottom: 0.5rem; }
.hero-container .name { font-size: 2.2rem; color: #fff; margin-bottom: 1.2rem; }

.hero-container .buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-container .btn {
  background: transparent;
  border: 2px solid #ff7b00;
  color: #ff7b00;
  padding: 1.1rem 2.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-container .btn:hover {
  background-color: #ff7b00;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-container { max-width: 90%; padding: 2rem; }
  .hero-container .title { font-size: 2.8rem; }
  .hero-container .name { font-size: 1.8rem; }
  .hero-container .btn { padding: 0.9rem 2rem; font-size: 1rem; }
}

/* ===== ABOUT ME ===== */
.about-section {
  min-height: 100vh;
  background: linear-gradient(to right, #ff7b00 0%, #ff0040 25%, #ff00a0 60%, #a000ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11rem 2rem;
  padding-top: 120px;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  max-width: 1600px;
  width: 100%;
  padding: 2rem;
  background-color: rgba(0,0,0,0.85);
  border-radius: 20px;
}

.about-text { flex: 1.2; }
.about-text h1 { font-size: 3.5rem; color: #ff7b00; margin-bottom: 0.7rem; }
.about-text h2 { font-size: 2.5rem; color: #fff; margin-bottom: 2rem; }
.about-text p { font-size: 1.3rem; color: #ddd; margin-bottom: 1.5rem; line-height: 1.8; }

.about-image { flex: 1; display: flex; justify-content: center; align-items: center; }
.about-image img { width: 400px; height: 400px; object-fit: cover; border-radius: 50%; border: 5px solid #ff7b00; }

@media (max-width: 1200px) {
  .about-container { flex-direction: column; text-align: center; gap: 3rem; }
  .about-text h1 { font-size: 2.8rem; }
  .about-text h2 { font-size: 2rem; }
  .about-text p { font-size: 1.2rem; }
  .about-image img { width: 300px; height: 300px; }
}

/* ===== PROJECTS PAGE ===== */
.projects-section {
  min-height: 100vh;
  background: linear-gradient(to right, #ff7b00 0%, #ff0040 25%, #ff00a0 60%, #a000ff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 2rem;
  padding-top: 145px;
  gap: 4rem;
}

.projects-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
}

.project-box {
  width: 500px;
  height: 550px;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 123, 0, 0.4);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.8rem;
}

.project-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 3px solid #ff7b00;
}

.project-box h3 { font-size: 1.6rem; color: #ff7b00; margin-top: 1rem; }
.project-box p {
  font-size: 1rem;
  color: #ddd;
  padding: 0 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-box .btn {
  background: transparent;
  border: 2px solid #ff7b00;
  color: #ff7b00;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  align-self: center;
}

.project-box .btn:hover { background-color: #ff7b00; color: white; transform: translateY(-2px); }

/* ===== PROJECT DETAIL PAGE ===== */
.project-detail {
  min-height: 100vh;
  background: linear-gradient(to right, #ff7b00 0%, #ff0040 25%, #ff00a0 60%, #a000ff 100%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 140px;
  padding-bottom: 80px;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ===== PROJECT DETAIL PAGE - GROTERE BOX ===== */
.project-detail .project-box {
  margin-top: 80px;
  background-color: rgba(0, 0, 0, 0.92);
  color: #fff;
  width: 90%;          /* breedte blijft zoals eerder */
  max-width: 1700px;
  min-height: 1150px;   /* minimale hoogte vergroot voor meer ruimte */
  border-radius: 20px;
  padding: 4rem 3rem;  /* meer padding rondom de inhoud */
  text-align: center;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;         /* iets meer ruimte tussen elementen */
  transition: none;    /* geen hover-effect */
}

/* Titel */
.project-detail .project-title {
  font-size: 3.5rem;
  color: #ff7b00;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

/* Tekst */
.project-detail .project-text p {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #e0e0e0;
  text-align: left;
}

.project-detail .project-image img {
  width: 1700px;               /* iets breder dan de box */
  height: auto;
  max-height: none;          /* geen limiet meer */
  object-fit: cover;
  border: 3px solid #ff7b00;
  margin-top: 0;
  margin-left: 0;          /* centreert de extra breedte */
  box-shadow: 0 0 35px rgba(255, 123, 0, 0.6); /* optisch effect */
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  .project-detail .project-box { padding: 3rem 2.5rem; min-height: auto; }
  .project-detail .project-title { font-size: 3rem; }
  .project-detail .project-text p { font-size: 1.2rem; }
  .project-detail .project-image img { max-height: 500px; }
}

@media (max-width: 768px) {
  .project-detail .project-box { padding: 2.5rem 2rem; }
  .project-detail .project-title { font-size: 2.6rem; }
  .project-detail .project-text p { font-size: 1.1rem; }
  .project-detail .project-image img { max-height: 350px; }
}


/* ===== PROJECT 2 DETAIL PAGE (vergrote layout) ===== */
.project2-detail {
  min-height: 100vh;
  background: linear-gradient(
    to right,
    #ff7b00 0%,
    #ff0040 25%,
    #ff00a0 60%,
    #a000ff 100%
  );
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 140px;
  padding-bottom: 100px;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* BOX */
.project2-box {
  margin-top: 150px;
  background-color: rgba(0, 0, 0, 0.92);
  color: #fff;
  width: 95%;
  max-width: 1300px; /* breder */
  border-radius: 25px;
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* TITEL */
.project2-title {
  font-size: 3.8rem;
  color: #ff7b00;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

/* TEKST */
.project2-text p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #e0e0e0;
  text-align: left;
  margin-bottom: 1rem;
}

/* GALERIJ */
.project2-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding: 0 1rem;
}

/* FOTO'S */
.project2-gallery img {
  width: 30%;
  aspect-ratio: 10 / 9;
  object-fit: contain; /* foto’s volledig zichtbaar */
  border-radius: 20px;
  border: 5px solid #ff7b00;
  background-color: #000;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .project2-box {
    max-width: 1000px;
    padding: 3rem 2.5rem;
  }

  .project2-title {
    font-size: 3rem;
  }

  .project2-text p {
    font-size: 1.25rem;
  }

  .project2-gallery img {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .project2-box {
    max-width: 90%;
    padding: 2.5rem 1.5rem;
  }

  .project2-title {
    font-size: 2.4rem;
  }

  .project2-text p {
    font-size: 1.1rem;
  }

  .project2-gallery img {
    width: 90%;
  }
}


/* ===== PROJECT 3 DETAIL PAGE ===== */
.project3-detail {
  min-height: 100vh;
  background: linear-gradient(
    to right,
    #ff7b00 0%,
    #ff0040 25%,
    #ff00a0 60%,
    #a000ff 100%
  );
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 140px;
  padding-bottom: 100px;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* BOX */
.project3-box {
  margin-top: 125px;
  background-color: rgba(0, 0, 0, 0.92);
  color: #fff;
  width: 95%;
  max-width: 1300px;
  border-radius: 25px;
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* TITEL */
.project3-title {
  font-size: 3.8rem;
  color: #ff7b00;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

/* TEKST */
.project3-text p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #e0e0e0;
  text-align: left;
  margin-bottom: 1rem;
}

/* GALERIJ */
.project3-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding: 0 1rem;
}

/* FOTO'S */
.project3-gallery img {
  width: 30%;
  aspect-ratio: 10 / 9;
  object-fit: contain; /* toont de volledige afbeelding */
  border-radius: 20px;
  border: 5px solid #ff7b00;
  background-color: #000;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .project3-box {
    max-width: 1000px;
    padding: 3rem 2.5rem;
  }

  .project3-title {
    font-size: 3rem;
  }

  .project3-text p {
    font-size: 1.25rem;
  }

  .project3-gallery img {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .project3-box {
    max-width: 90%;
    padding: 2.5rem 1.5rem;
  }

  .project3-title {
    font-size: 2.4rem;
  }

  .project3-text p {
    font-size: 1.1rem;
  }

  .project3-gallery img {
    width: 90%;
  }
}

/* ===== PROJECT 4 DETAIL PAGE ===== */
.project4-detail {
  min-height: 100vh;
  background: linear-gradient(
    to right,
    #ff7b00 0%,
    #ff0040 25%,
    #ff00a0 60%,
    #a000ff 100%
  );
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 140px;
  padding-bottom: 100px;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* BOX */
.project4-box {
  margin-top: 125px;
  background-color: rgba(0, 0, 0, 0.92);
  color: #fff;
  width: 95%;
  max-width: 1300px;
  border-radius: 25px;
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* TITEL */
.project4-title {
  font-size: 3.8rem;
  color: #ff7b00;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

/* TEKST */
.project4-text p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #e0e0e0;
  text-align: left;
  margin-bottom: 1rem;
}

/* GALERIJ (2 FOTO’S) */
.project4-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding: 0 1rem;
}

/* FOTO'S */
.project4-gallery img {
  width: 30%;
  aspect-ratio: 9 / 10;
  object-fit: contain; /* toont de volledige afbeelding */
  border-radius: 20px;
  border: 5px solid #ff7b00;
  background-color: #000;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .project4-gallery img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .project4-box {
    max-width: 90%;
    padding: 2.5rem 1.5rem;
  }

  .project4-title {
    font-size: 2.4rem;
  }

  .project4-text p {
    font-size: 1.1rem;
  }

  .project4-gallery img {
    width: 90%;
  }
}

/* ===== PROJECT 5 DETAIL PAGE ===== */
.project5-detail {
  min-height: 100vh;
  background: linear-gradient(
    to right,
    #ff7b00 0%,
    #ff0040 25%,
    #ff00a0 60%,
    #a000ff 100%
  );
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 140px;
  padding-bottom: 100px;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* BOX */
.project5-box {
  margin-top: 25px;
  background-color: rgba(0, 0, 0, 0.92);
  color: #fff;
  width: 95%;
  max-width: 1300px;
  border-radius: 25px;
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* TITEL */
.project5-title {
  font-size: 3.6rem;
  color: #ff7b00;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

/* TEKST */
.project5-text p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: left;
  margin-bottom: 1rem;
}

/* GALERIJ */
.project5-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding: 0 1rem;
}

/* FOTO'S */
.project5-gallery img {
  width: 30%;
  aspect-ratio: 9 / 10;
  object-fit: contain; /* volledig zichtbaar */
  border-radius: 20px;
  border: 5px solid #ff7b00;
  background-color: #000;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .project5-gallery img {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .project5-box {
    max-width: 90%;
    padding: 2.5rem 1.5rem;
  }

  .project5-title {
    font-size: 2.4rem;
  }

  .project5-text p {
    font-size: 1.1rem;
  }

  .project5-gallery img {
    width: 90%;
  }
}
