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

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.5;
  background: #fff;
}

html {
  scroll-padding: 110px;
  scroll-behavior: smooth;
}

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

/* Achtergrondtekst groot */
.background-text {
  position: fixed;
  top: 40px;
  left: 10px;
  font-size: 8vw;
  font-weight: 800;
  color: #ccc;
  z-index: -1;
  user-select: none;
  white-space: nowrap;
}

header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 30px;
  background: transparent; 
  border-bottom: none; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10; 
  gap: 40px;
}
header nav ul li a {
  color: white !important;
  text-decoration: none;
}

header nav ul li a:hover,
header nav ul li a:focus {
  color: white !important;
}

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

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: black;
  font-weight: 500;  
}

.logo {
  font-weight: 700;
  font-size: 1.8rem;
  color: #222;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #0078d7;
}

/* Hero Section */
.hero {
  padding: 80px 30px 50px;
  background: #e0e7ff;
  text-align: left !important;  /* FORCEREN: tekst altijd links */
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #fdf9f9;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 600px;
}

.hero-content p a {
  color: #0078d7;
  text-decoration: underline;
}

.stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat {
  font-weight: 600;
  font-size: 1rem;
  color: #ecebeb;
}

.stat strong {
  color: #f3eded;
}

.scroll-down {
  display: inline-block;
  padding: 8px 20px;
  background: #0078d7;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.scroll-down:hover {
  background: #005a9e;
}

/* About Section */
.about-protrafo {
  padding: 50px 30px;
}

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

.about-container h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.about-content-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.about-content-row p {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.6;
}

.right-image {
  flex: 1;
  max-width: 500px; /* Of pas aan naar wens */
  width: 100%;
  height: auto;
  object-fit: contain;
}



.left-text {
  display: flex;
  /* flex: 1 1 500px; */
}

.left-text h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
  width: 675px;
}

.left-text p {
  font-size: 1.05rem;
  color: #555;
}

/* Transformer Section */
.transformer-section {
  padding: 50px 30px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  position: relative;
  flex-wrap: wrap;
  align-items: flex-start;
}

.card {
  background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 250px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card-content h4 {
  font-weight: 600;
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.card-content h2 {
  font-weight: 700;
  font-size: 1.6rem;
  color: #222;
  line-height: 1.2;
}

/* Afbeelding links */
.image {
  flex: 0 0 220px;
  position: relative;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Kleine afbeelding rechtsboven */
.text-content {
  flex: 1 1 400px;
  position: relative;
  padding: 10px 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 8px;
  font-size: 0.9rem;
  color: #444;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;  /* Tekst in het midden */
}

.text-content small {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
  color: #0078d7;
  display: block;
  margin-bottom: 8px;
}

.text-content h3 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #222;
}

.text-content p {
  margin-bottom: 15px;
  line-height: 1.4;
}

.text-content p a {
  color: #0078d7;
  text-decoration: underline;
}

.text-content .cta {
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #0078d7;
  user-select: none;
  transition: color 0.3s ease;
  justify-content: center;
}

.text-content .cta:hover {
  color: #004a7f;
}

.text-content .cta span {
  font-size: 1.2rem;
  line-height: 1;
}

/* Kleine afbeelding rechtsboven positionering en styling */
.text-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 197px;
  height: 278px;
  background: transparent url('assets/Image4.png') no-repeat 0 0;
  background-size: contain;
  mix-blend-mode: multiply;
  opacity: 1;
  pointer-events: none;
  border-radius: 8px;
  transform: translate(25%, -25%);
  z-index: 1;
}

/* Support Section */
.support-section {
  background: rgb(4, 32, 189);
  padding: 50px 30px;
}

.support-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.support-list {
  flex: 1 1 200px;
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-weight: 600;
  max-height: 300px;
  overflow-y: auto;
}

.support-list li {
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
  user-select: none;
}

.support-list li.active,
.support-list li:hover {
  background: #0078d7;
  color: #fff;
}

.support-right {
  flex: 3 1 600px;
  font-size: 1rem;
  color: #444;
}

.support-btn {
  margin-top: 20px;
  display: inline-block;
  background: #0078d7;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease;
}

.support-btn:hover {
  background: #005a9e;
}

/* Project Section (zelfde als transformer-section) */
.transformer-section .card {
  cursor: default;
}

/* Footer */
.site-footer {
  background: #222;
  color: #bbb;
  padding: 40px 30px 20px;
  font-size: 0.9rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 15px;
  color: #999;
}

/* PROTRAFO Insights - Afbeeldingen naast elkaar */
.insights-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 30px;
  flex-wrap: wrap;
}

.insight-img {
  max-width: 100%;
  width: 45%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* About Container: Afbeelding links + tekst + afbeelding rechts netjes naast elkaar */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.image-left,
.image-right {
  flex: 1 1 30%;
  max-width: 30%;
}

/* Zorg dat afbeeldingen volledig passen */
.image-left img,
.image-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Tekst iets prettiger */
.left-text {
  font-size: 1rem;
  color: #444;
}

/* Responsive: op kleinere schermen onder elkaar */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .image-left,
  .image-right {
    max-width: 100%;
    flex: 1 1 100%;
    margin-bottom: 15px;
  }
}
.hero {
  padding-left: 0 !important;  /* helemaal geen padding links */
  text-align: left !important;
}

 /* Video achtergrond styling */
 .hero {
  position: relative;
  overflow: hidden;
  height: 60vh; /* hele schermhoogte */
  color: white;
  display: flex;
  justify-content: center;
  text-align: center;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero {
    height: 110vh; /* meer ruimte op mobiel */
  }
}
.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
}
/* Support section styling */
.support-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.support-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

.support-image img {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}

.support-list-container {
  flex: 1;
}

.support-list {
  list-style: none;
  padding: 0;
}

.support-list li {
  cursor: pointer;
  padding: 10px 0;
  font-size: 16px;
}

.support-list li.active {
  font-weight: bold;
  text-decoration: underline;
}

.support-right {
  flex: 1;
}

.support-right p {
  margin-bottom: 20px;
}

.support-btn {
  display: inline-block;
  background-color: #222;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .support-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .support-image img {
    max-width: 100%;
  }
}
    /* Kleine stijl om actieve knop te markeren */
    .support-list li {
      cursor: pointer;
      padding: 8px 12px;
      display: inline-block;
    }
    .support-list li.active {
      font-weight: bold;
      text-decoration: underline;
    }
    .support-list li {
  position: relative;
  cursor: pointer;
  padding-left: 45px; /* iets meer ruimte voor grotere pijl */
  transition: color 0.3s;
}

.support-list li::before {
  content: "➔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;      /* Groter */
  font-weight: 900;     /* Dikker */
  color: #eef7f7;       /* Pijl kleur */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  letter-spacing: 3px;  /* Iets meer ruimte tussen de streepjes */
}

.support-list li.active {
  font-weight: bold;
  color: #dfe8eb;
}

.support-list li.active::before {
  opacity: 1;
}

.title-image-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* zorgt voor mooie layout op mobiel */
}

.title-image-row h2 {
  margin: 0;
  font-size: 28px;
  flex: 1; /* neemt zoveel mogelijk ruimte in */
}

.right-image {
  max-width: 450px;
  width: 100%;
  height: auto;
  margin-left: 450px; /* als je nog verder naar rechts wilt */
}
.about-protrafo {
  position: relative; 
  overflow: hidden;   
}

.background-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: rgba(0, 0, 0, 0.05); 
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
header {
 
  padding: 20px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px; /* ruimte tussen logo en menu */
}

.questions-section {
  background-color: #000; 
  color: white;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left; 
}

.questions-container {
  max-width: 700px;
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
}

.questions-container img {
  max-width: 300px; 
  height: auto;
  border-radius: 8px;
}

.questions-text {
  flex: 1;
}

.questions-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.questions-section p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.contact-btn {
  display: inline-block;
  background-color: white;
  color: black;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #ddd;
}
/* Standaard menu */
nav {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-left {
  margin-left: auto;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

/* Lijst horizontaal op desktop */
.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-list li a {
  color: white;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    background-color: black;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
    z-index: 999;
    border-radius: 5px;
  }

  .nav-list.show {
    display: flex;
  }

  .nav-list li {
    margin-bottom: 15px;
  }

  .nav-list li:last-child {
    margin-bottom: 0;
  }
}
#menu-toggle {
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  position: absolute;
  top: -20px;
  right: -120px; /* Zorgt dat hij rechts staat */
  z-index: 999;
}
nav a {
  color: white;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}
.card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 20px; 
  border-radius: 8px; 
}
.text-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
  border-radius: 8px; 
}
.support-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Afbeelding links */
.support-image {
  flex: 1;
}

.support-image img {
  width: 100%;
  max-width: 800px; 
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  margin: 0; 
}

/* Lijst in het midden */
.support-list-container {
  flex: 1;
}

.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-list li {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.support-list li.active,
.support-list li:hover {
  color: #007BFF;
}

/* Tekst rechts */
.support-right {
  flex: 1;
}

#support-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.support-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.support-btn:hover {
  background-color: #0056b3;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  gap: 20px; 
  padding: 30px 20px;
  flex-wrap: nowrap; 
}

.left-text {
  flex: 1; 
  max-width: 45%; 
  padding: 0 15px;
}

.left-text h2 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.left-text p {
  font-size: 1.1rem;
  line-height: 1.5;
}
