/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #111;
  color: white;
}

/* Basis lay-out */
.canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 720px;
  padding: 50px;
  border-radius: 8px;
  z-index: 20;
}

/* Logo styling */
.logo-image {
  display: block;
  width: 200px;
  height: 110px;
  margin-bottom: 30px;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Tekst styling */
.designer-header {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: white;
  margin: 0 0 4px 0;
  text-align: center;
  width: 100%;
  line-height: 1;
}

/* Styling voor de tweede header (h2) */
h2.designer-header {
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 2px;
  margin: -4px 0 22px 0;
  text-transform: uppercase;
}

.designer-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: white;
  margin: 0 0 35px 0;
  text-align: center;
  max-width: 620px;
}

.under-construction {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  text-align: center;
  width: 100%;
  margin-top: 10px;
  background-color: #E6B400; /* Oker geel */
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  width: auto;
}

/* Navigatie */
.navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 10px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 400;
  min-width: 120px;
  text-align: center;
}

.nav-link:hover {
  background-color: white;
  color: #000;
  border-color: white;
}

.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pdf-icon {
  width: 12px;
  height: 12px;
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
}

.nav-link:hover .pdf-icon {
  fill: #000;
}

/* Responsive styling - verbeterd voor alle schermformaten */
@media screen and (min-width: 1440px) {
  /* Voor grotere schermen */
  .logo-container {
    max-width: 800px;
    padding: 60px;
  }
  
  .logo-image {
    width: 220px;
    height: 121px;
  }
  
  .designer-header {
    font-size: 44px;
    letter-spacing: 3.5px;
    margin: 0 0 5px 0;
  }
  
  h2.designer-header {
    font-size: 28px;
    letter-spacing: 2.5px;
    margin: -5px 0 24px 0;
  }
}

@media screen and (max-width: 768px) {
  .logo-container {
    width: 94%;
    max-width: 680px;
    padding: 40px 35px;
  }
  
  .logo-image {
    width: 180px;
    height: 99px;
  }
  
  .designer-header {
    font-size: 40px;
    letter-spacing: 2.5px;
    margin: 0 0 4px 0;
  }
  
  h2.designer-header {
    font-size: 22px;
    margin: -4px 0 20px 0;
  }
  
  .designer-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 35px 0;
    max-width: 450px;
  }
  
  .under-construction {
    font-size: 16px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 580px) {
  .logo-container {
    width: 96%;
    max-width: 520px;
    padding: 35px 25px;
  }
  
  .navigation {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .nav-link {
    min-width: 110px;
    padding: 0.7rem 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .logo-container {
    width: 96%;
    max-width: 340px;
    padding: 25px 15px;
  }
  
  .logo-image {
    width: 160px;
    height: 88px;
  }
  
  .designer-header {
    font-size: 36px;
    letter-spacing: 3px;
    margin: 0 0 8px 0;
    max-width: 300px;
  }
  
  h2.designer-header {
    font-size: 20px;
    letter-spacing: 1.5px;
    margin: 0 0 18px 0;
  }
  
  .designer-description {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 30px 0;
    max-width: 320px;
  }
  
  .under-construction {
    font-size: 14px;
    margin-top: 20px;
  }
  
  .navigation {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  .nav-link {
    width: 90%;
    max-width: 280px;
    padding: 0.8rem 1.5rem;
    font-size: 15px;
    border-width: 1.5px;
  }
}

/* Extra kleine schermen */
@media screen and (max-width: 360px) {
  .logo-container {
    width: 98%;
    padding: 20px 10px;
  }
  
  .logo-image {
    width: 140px;
    height: 77px;
    margin-bottom: 20px;
  }
  
  .designer-header {
    font-size: 32px;
    letter-spacing: 2px;
    margin: 0 0 7px 0;
  }
  
  h2.designer-header {
    font-size: 18px;
    letter-spacing: 1.2px;
    margin: 0 0 16px 0;
  }
  
  .designer-description {
    font-size: 14px;
    line-height: 1.3;
    margin: 0 0 25px 0;
  }
  
  .nav-link {
    padding: 0.7rem 1.2rem;
    font-size: 14px;
  }
} 