/* ============== Algemeen van de site ============== */
body{
  margin-right: 30px;
  margin-left: 30px;
  margin-top: 20px;
  margin-bottom: -20px;
  padding: 0 25px; 
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============== Header ============== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}

header .headerlogo img {
  height: 7vh;
  width: auto;
}

nav a {
  text-transform: uppercase;
  font-size: 25px;
  color: #333;
  text-decoration: none;
  margin-left: 20px;
}

nav a:hover {
  color: #c7c7c7;
}

/* ============== Footer ============== */
footer {
  background-color: #cdcdcd;
  color: #fff;
  padding: 40px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-links a {
  margin: 0 5px;
  display: inline-block;
  transition: transform 0.3s;
}

.footer-links a img {
  height: 24px;
  width: auto;
}

.footer-links a:hover {
  transform: scale(1.2);
}

.footer-rights {
  width: 100%;
  text-align: left;
  margin-top: 20px;
  font-size: 14px;
  color: #a5a5a5;
}

.logo-text {
  font-size: 14px;
  color: #454545;
  margin-top: 5px;
  text-align: left;
  text-transform: uppercase;
}

/* =============== Project Detail Pagina =============== */
.project-detail-page {
  padding: 80px 0;
}

.project-detail-page .project-card {
  max-width: 800px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-detail-page .project-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.project-detail-page .project-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-detail-page .project-info h1.project-title {
  font-size: 28px;
  margin: 0;
  color: #333;
  text-transform: uppercase;
}

.project-detail-page .project-meta {
  font-size: 14px;
  color: #9e9e9e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-detail-page .project-description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.project-details {
  max-width: 800px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-details h2 {
  font-size: 22px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 10px;
}

.project-details h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.project-details p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.project-details ul {
  list-style-type: disc;
  margin-left: 20px;
}

.project-images {
  display: flex;
  overflow-x: auto;  
  gap: 15px;
  scroll-behavior: smooth; 
}

.project-images img {
  flex: 0 0 auto;       
  width: 250px;       
  height: 200px;       
  border-radius: 10px;
  object-fit: cover;   
}

.project-detail-page .project-btn {
  display: inline-block;
  margin: 20px auto;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  background-color: #00cfc8;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.project-detail-page .project-btn:hover {
  background-color: #00918d;
}

footer .footer-container {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

footer .footer-logo img {
  height: 50px;
}

footer .footer-links a img {
  height: 24px;
}


/* =================== Toollist ======================== */
.tools-list {
    list-style: none;       
    padding: 0;
    margin: 0;
}

.tools-list li {
    display: flex;          
    align-items: center;
    gap: 10px;              
    margin-bottom: 10px;  
    font-size: 14px;
    color: #555;
}

.tools-list img {
    width: 25px;          
    height: 25px;
    object-fit: contain;   
}

/* =========================================================================================================== */
/* ==================================================Dit moet overal========================================================= */
/* ======= Hamburger menu ======= */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #333;
  z-index: 1001;
}

.nav-menu {
  display: flex; /* desktop */
  gap: 20px;
  align-items: center;
}

/* MOBIEL MENU */
@media (max-width: 900px) {

  body {
    overflow-x: hidden;
    margin: 0;
    padding: 0 20px;
  }

  .hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    z-index: 1001;

    position: fixed;
    top: 20px;
    right: 20px;
  }

  .hamburger.is-active {
    color: white;
    transform: rotate(90deg);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100vh;
    background-color: #000;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-menu.is-active {
    transform: translateX(0);
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }

  .nav-links a {
    font-size: 28px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
  }

  .nav-links a:hover {
    color: #00cfc8;
  }

  .mobile-socials {
    display: flex;
    gap: 25px;
    margin-top: 50px;
  }

  .mobile-socials img {
    height: 30px;
    filter: brightness(0) invert(1);
    margin-left: 10px;
    transition: transform 0.3s;
  }

  .mobile-socials img:hover {
    transform: scale(1.2);
  }
}
/* =========================================================================================================== */
 .mobile-socials {
    display: none;
    gap: 25px;
    margin-top: 50px;
  }