
/* === BASISSTIJL === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Sora', sans-serif;
  background-color: #0a0a0a;
  color: #eeeeee;
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  padding: 20px;
  z-index: 1000;
}

.logo {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 60px;
  z-index: 1000;
}

a {
  color: #ffbb33;
  text-decoration: none;
}

a:hover {
  color: #ffaa00;
  text-decoration: underline;
}

a:visited {
  color: #ffbb33;
}

.responsive-img {
  display: block;
  max-width: 50%;
  height: auto;
  margin: 0 auto;
}

/* === MENU & HAMBURGER === */
nav ul.menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin: 0;
  padding: 20px;
  z-index: 1000;
  position: relative; 
}


nav ul.menu li a {
  text-decoration: none;
  color: #dddddd;
  font-weight: bold;
  font-size: 1.2rem;
  transition: color 0.3s;
  user-select: none;
}

nav ul.menu li a:hover {
  color: #ffbb33;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: fixed;
  top: 40px;
  right: 20px;
  width: 30px;
  height: 21px;
  z-index: 1100;
}

.hamburger div {
  background-color: #ffbb33;
  height: 3px;
  width: 100%;
  transition: all 0.3s ease;
}

.hamburger.active div {
  background-color: #ffbb33;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 8px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -8px);
}

#mobileMenu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #222222;
  z-index: 1000;
  padding: 100px 20px;
  background-image: url('../images/logo_menu.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40vw;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#mobileMenu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#mobileMenu ul {
  list-style: none;
  padding: 0;
}

#mobileMenu ul li {
  margin: 20px 0;
}

#mobileMenu ul li a {
  font-weight: bold;
  text-decoration: none;
  color: #dddddd;
  font-size: 1.5rem;
  user-select: none;
}

#mobileMenu ul li a:hover {
  color: #ffbb33;
}

/* === STRUCTUUR EN OPMAAK === */
section {
  padding: 100px 20px 60px;
  max-width: 800px;
  margin: 0 auto;
}

section:last-of-type {
  margin-bottom: 100px;
}

h2 {
  color: #ffbb33;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h3 {
  color: #dddddd;
  margin-top: 2rem;
}

h4 {
  color: #dddddd;
  font-size: 1rem;
  line-height: 1.6;
}

p {
  line-height: 1.6;
  font-size: 1rem;
  color: #dddddd;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 40px 40px;
  background-color: #111;
  color: #ffbb33;
  box-sizing: border-box;
  max-width: 100vw;
  font-family: 'Sora', sans-serif;
}

.footer-col {
  flex: 1 1 33%;
  padding: 0 20px;
}

.footer-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ffbb33;
}

.footer-text p {
  color: #dddddd;
  font-size: 1rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 10px 0;
}

.footer-social img {
  width: 28px;
  height: 28px;
  filter: brightness(1.2);
  transition: transform 0.2s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.footer-div3 {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* schuift alles naar rechts */
  text-align: right;
}

.footer-div3 p {
  margin: 10px 0;
}

.footer-div3 a {
  text-decoration: none;
  color: #dddddd;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-div3 a:hover {
  color: #ffbb33;
}

.footer-div3 img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.copyright {
  background-color: #0a0a0a;
  text-align: center;
  font-size: 0.75rem;
  padding: 15px 0;
  color: #888;
  margin: 0;
}


.hero {
  background: radial-gradient(circle at top, #222222, #0a0a0a);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  color: #ffbb33;
  margin-bottom: 1rem;
  transition: text-shadow 0.3s ease;
    user-select: none;
  -webkit-user-select: none;  /* Safari/Chrome */
  -moz-user-select: none;     /* Firefox */
  -ms-user-select: none;      /* Internet Explorer/Edge */
}
.hero h1:hover {
  text-shadow: 0 0 10px #ffbb33, 0 0 20px #ffaa00;
}

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

.button {
  display: inline-block;
  margin-top: 20px;
  background-color: #ffbb33;
  color: #000000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

a.button {
  color: #000000; /* expliciet zwart voor button-tekst */
  text-decoration: none;
}

a.button:hover {
  background-color: #ffaa00;
  color: #000000; /* zwart blijft ook bij hover */
}

/* === WHITEPAPER SPECIFIEK === */
main.whitepaper {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px 60px;
}

h2.white-section {
  margin-top: 4rem;
}

.whitepaper ul {
  padding-left: 1.5rem;
  list-style: none;
  margin: 1rem 0;
}

.whitepaper ul li {
  color: #dddddd;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.whitepaper ul li::before {
  content: "◉";
  position: absolute;
  left: 0;
  color: #ffbb33;
  font-size: 0.9rem;
  line-height: 1;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

th, td {
  border: 1px solid #444;
  padding: 8px 12px;
  color: #dddddd;
}

th {
  background-color: #1f1f1f;
  color: #ffbb33;
}

a.download {
  display: inline-block;
  margin: 20px 0;
  padding: 12px 20px;
  background-color: #ffbb33;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

/* === SECTIE OPMAAK === */
.team-content, .roadmap-row {
  display: flex;
  align-items: flex-start; /* zorgt dat tekst + image gelijk starten bovenaan */
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.team-text, .roadmap-text {
  flex: 1 1 300px;
}

.team-image, .roadmap-image {
  flex: 1 1 300px;
  max-width: 400px;
  align-self: flex-start;
}

/* Laat de standaard gedeelde breedte voor roadmap-img gewoon staan */
.team-image img, .roadmap-img {
  width: 50%;
  height: auto;
  align-self: flex-start;
}

/* ✅ Overschrijving alleen voor de team image */
.team-image img {
  width: 80%;
  max-width: 350px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.roadmap-list {
  flex: 1;
  padding-left: 20px;
  margin-top: 0;
  padding-top: 0; /* optioneel als extra fix */
  list-style-type: square;
  color: #dddddd;
}

.faq ul,
.developer ul,
.roadmap-list {
  list-style: none;
  padding-left: 0;
}

.faq li,
.developer li,
.roadmap-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
  color: #dddddd;
}

.faq li::before,
.developer li::before,
.roadmap-list li::before {
  content: "◉";
  position: absolute;
  left: 0;
  color: #ffbb33;
  font-size: 0.9rem;
  line-height: 1;
}

.overlay-bar {
  display: none;
}


.overlay-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 900;
  pointer-events: none;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav ul.menu {
    display: none;
  }

  .overlay-bar {
    display: block;
  }

  .responsive-img {
    max-width: 90%;
  }

  .team-content{
    flex-direction: column;
    align-items: flex-start;
  }

  .roadmap-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .roadmap-image {
    max-width: 100%;
  }

  .roadmap-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    /* geen padding hier! */
  }

  .roadmap-list {
    padding: 0 20px; /* alleen padding op de tekst */
    text-align: left;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box; /* voorkomt dat padding buiten max-width gaat */
  }

  .team-image,
  .roadmap-image {
    max-width: 100%;
  }

  /* ✅ Team image specifiek op mobiel */
  .team-image img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
    padding: 20px 10px;
  }

  .footer-social {
    justify-content: center;
    margin: 10px 0;
  }

 .footer-div3 {
    align-items: center;
    text-align: center;
  }

  .footer-div3 a {
    justify-content: center;
  }

  .footer-div3 img {
    margin-right: 6px;
  }

}
