body {
  margin: 20px 30px 0 30px;
  padding: 0 25px;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.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;
}

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

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

/* ============== Hero sectie ============== */
.hero{
  margin-top: 100px;
}

.hero-container {
  display: flex;
  flex-direction: row;           
  justify-content: space-between; 
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-text {
  order: 0;                     
  flex: 1;                       
  text-align: left;         
}

.hero h1 {
  text-transform: uppercase;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.hero p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 60%;
  color: #555;
}

.hero b {
  color: #000;
  font-weight: 700;
}

.hero-button {
  display: inline-block;
  margin-top: 10px;
  padding: 15px 30px;
  background-color: #00cfc8;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.hero-button:hover {
  background-color: #00918d;
  transform: translateY(-2px);
}


.hero-image {
  order: 1;                       
  flex-shrink: 0;                
  text-align: right;
  margin-left: -50px;
}
.hero-image img {
  width: 350px;                   
  height: auto;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: block;
}

/* ============== Project overzicht ============== */
.project-overview {
  padding: 100px 0px;
  text-transform: uppercase;
  text-align: left;
}

.project-overview h2 {
  font-size: 32px;
}

.overview-items-wrapper {
  overflow-x: none;
}

.overview-items {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
}

.overview-item {
  flex: 0 0 auto;
  width: 300px;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(64, 64, 64, 0.1);
  background-color: #fff;
}

.overview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s;
}

.overview-item img:hover {
  transform: scale(1.05);
}

/* CTA knop */
.cta-button {
  margin-top: 20px;
  text-transform: none;
}

/* ============== 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;
}

.mobile-socials {
  display: none;
  gap: 25px;
  margin-top: 50px;
}
/* ============== Mobiel ============================================================ */
@media (max-width: 900px) {

  nav { display: none; }

  .hamburger { display: block; position: fixed; top: 20px; right: 20px; }

  .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;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
  }

  .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); }

  /* Hero mobiel */
  .hero-container {
    flex-direction: column; 
    align-items: flex-start; 
    gap: 30px; 
  }
  .hero-image { order: -1; text-align: left; }
  .hero-image img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; }
  .hero-text { margin: 0; max-width: 100%; }
  .hero h1 { font-size: 28px; margin-bottom: 15px; }
  .hero p { font-size: 16px; line-height: 1.6; }
  .hero-button { font-size: 16px; padding: 12px 24px; }

/* Carousel wrapper: scrollbaar */
.overview-items-wrapper {
  overflow-x: auto;                 /* horizontaal scrollen */
  scroll-snap-type: x mandatory;    /* snap naar elk item */
  -webkit-overflow-scrolling: touch; /* smooth scroll op mobiel */
  width: 100%;
  padding-bottom: 10px;
}

/* Container van items */
.overview-items {
  display: flex;
  gap: 20px;
}

/* Elk item: één zichtbaar per “viewport” */
.overview-item {
  flex: 0 0 100%;                    /* één item per zichtbare ruimte */
  scroll-snap-align: start;          /* snap naar begin van item */
  width: 100%;                        /* vult de wrapper */
  max-width: 400px;                   /* optioneel: maximaal breedte */
  height: 250px;                      /* hoogte van de carousel */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(64, 64, 64, 0.1);
  background-color: #fff;
}

.overview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}



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