/* --- Site background (Strato-proof) --- */
html, body { 
  min-height: 100vh; 
  margin: 0;
  padding: 0;
}

/* Custom purple cursor */
* {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%236800ff"/></svg>'), auto;
}
body {
  /* Fallback-kleur als het beeld nog laadt */
  background-color: #0b0b0c;

  /* LET OP: pad is relatief t.o.v. style.css in assets/css/ */
  background-image: url("../img/BG5.png");

  /* Vullend, zonder herhalen, mooie kadrering */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;

  /* Optioneel: iets donkerder voor leesbaarheid 
     (comment uit als je full-bright wil) */
  /* background-image:
      linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.55) 100%),
      url("../img/BG5.png"); */
}

/* (Optioneel) Alleen op grote schermen parallax-achtig effect; op mobiel vaak janky */
@media (min-width: 1024px) {
  body { background-attachment: fixed; }
}

/* --- Typografie: system stack met San Francisco op Apple --- */
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* --- Basis links (voorkomt paars/blauw en onderstreping) --- */
a { color: inherit; text-decoration: none; }
a:visited { color: inherit; }



/* Logo linksboven netjes schalen */
.brand{ display:flex; align-items:center; gap:.5rem; }
.brand img{ display:block; height:70px; width:auto; object-fit:contain; }
.brand .text-logo{ height:35px; width:auto; object-fit:contain; }

/* Pagina lay-out */
main{ max-width: 1400px; margin: 32px auto; padding: 0 80px; color:#fff; }

/* --- NAV EXACT STYLE --- */
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.site-header {
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 24px;
  background: transparent;
}



/* Logo linksboven */
.brand { display:flex; align-items:center; }
.brand img { display:block; height:70px; width:auto; object-fit:contain; }
.brand .text-logo { height:35px; width:auto; object-fit:contain; }

/* === NAV (canoniek) === */
.site-nav { 
  display:flex; 
  gap:56px;
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

.site-nav a{
  color:#FFFFFF;
  text-transform:uppercase;
  letter-spacing:0.03em;   /* extreem dicht op elkaar */
  font-weight:300;
  font-size:18px;
  line-height:1;
  text-decoration:none;
  position: relative;
  padding-bottom: 12px;
}
.site-nav a:visited{ color:#FFFFFF; }
.site-nav a:hover,
.site-nav a:focus{
  color:#FFFFFF;
  text-decoration:none;
  opacity:1;
}

/* Paars lijntje animatie effect */
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #6800ff;
  transition: width 0.3s ease-in-out;
  transform: translateX(-50%);
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  width: 120%;
}

/* === TYPEWRITER EFFECT === */
.typewriter-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 60vh;
  text-align: left;
  margin-left: 50px;
  margin-top: 60px;
}

.typewriter-text {
  font-size: 3rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  max-width: 1200px;
  min-height: 3rem;
  white-space: nowrap;
}

/* Cursor effect */
.typewriter-text::after {
  content: '|';
  animation: blink 1s infinite;
  color: #6800ff;
  font-weight: 400;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* === CONTENT SECTION === */
.content-section {
  margin-top: 80px;
  text-align: center;
  margin-bottom: 400px;
}

/* Homepage specific - Our Process section lower */
body:has(.typewriter-container) .content-section {
  margin-top: 220px;
}

.section-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: #ffffff;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: #cccccc;
  text-align: center;
  line-height: 1.6;
}

.transparent-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-top: 3rem;
  padding: 0 0.5rem;
  max-width: 2200px;
  margin-left: auto;
  margin-right: auto;
}

.transparent-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 35px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 280px;
}

.transparent-card:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.6), 0 0 40px rgba(155, 89, 182, 0.4);
}

.transparent-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #ffffff;
}

.transparent-card p {
  color: #cccccc;
  line-height: 1.6;
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.transparent-card:nth-child(1) .icon {
  color: #4A90E2; /* Blauw */
}

.transparent-card:nth-child(2) .icon {
  color: #A600FF/* Paars */
}

.transparent-card:nth-child(3) .icon {
  color: #F1C40F; /* Geel */
}

.transparent-card:nth-child(4) .icon {
  color: #2ECC71; /* Groen */
}

/* === RESULTS CARDS (2x2 GRID LAYOUT) === */
.results-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.result-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 35px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-card:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.6), 0 0 40px rgba(155, 89, 182, 0.4);
}

.result-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #ffffff;
}

.result-card p {
  color: #cccccc;
  line-height: 1.6;
}

.result-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.result-card:nth-child(1) .icon {
  color: #4A90E2; /* Blauw */
}

.result-card:nth-child(2) .icon {
  color: #A600FF; /* Paars */
}

.result-card:nth-child(3) .icon {
  color: #F1C40F; /* Geel */
}

.result-card:nth-child(4) .icon {
  color: #2ECC71; /* Groen */
}

/* === FOOTER === */
.site-footer {
  background: transparent;
  margin-top: 5rem;
  padding: 0;
  position: relative;
}

.footer-content {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 35px 35px 0 0;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.footer-info {
  text-align: left;
}

.footer-info p {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  color: #ffffff;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 300;
}

.privacy-link {
  color: #6800ff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #8a2be2 !important;
}

/* === ABOUT TEXT === */
.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}

.about-text p {
  color: #cccccc;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* === CONTACT FORM === */
.contact-form-container {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.contact-form-card {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 35px !important;
  padding: 3rem 2.5rem !important;
  max-width: 600px !important;
  width: 100% !important;
}

.form-title {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #ffffff;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6800ff;
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
  background: #6800ff;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: #8a2be2;
  transform: translateY(-2px);
}

.submit-btn:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: rgba(46, 204, 113, 0.2);
  border: 1px solid rgba(46, 204, 113, 0.5);
  color: #2ECC71;
  display: block;
}

.form-message.error {
  background: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(231, 76, 60, 0.5);
  color: #E74C3C;
  display: block;
}

/* === RESPONSIVE DESIGN === */

/* Tablet styles (768px - 1023px) */
@media (max-width: 1023px) {
  main {
    padding: 0 40px;
  }
  
  .transparent-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .results-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .typewriter-text {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

/* Mobile styles (max-width: 767px) */
@media (max-width: 767px) {
  /* Header adjustments */
  .site-header {
    padding: 14px 16px;
    position: relative;
  }
  
  .brand img {
    height: 50px;
  }
  
  .brand .text-logo {
    height: 25px;
  }
  
  /* Mobile menu toggle */
  .mobile-menu-toggle {
    display: block !important;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }
  
  /* Mobile navigation */
  .site-nav {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(11, 11, 12, 0.95) !important;
    backdrop-filter: blur(10px);
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    transition: left 0.3s ease !important;
    z-index: 1000 !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
  }
  
  .site-nav.active {
    left: 0 !important;
  }
  
  .site-nav a {
    font-size: 1.5rem !important;
    padding: 1rem 2rem !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    width: auto !important;
    text-align: center !important;
    display: block !important;
    white-space: nowrap !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    position: relative !important;
  }
  
  .site-nav a:hover {
    background: rgba(104, 0, 255, 0.2) !important;
    color: #ffffff !important;
  }
  
  /* Main content adjustments */
  main {
    padding: 0 20px;
    margin: 16px auto;
  }
  
  /* Typewriter adjustments */
  .typewriter-container {
    margin-left: 0;
    margin-top: 40px;
    min-height: 40vh;
    justify-content: center;
    text-align: center;
  }
  
  .typewriter-text {
    font-size: 2rem;
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }
  
  /* Content section adjustments */
  .content-section {
    margin-top: 60px;
    margin-bottom: 200px;
  }
  
  body:has(.typewriter-container) .content-section {
    margin-top: 120px;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  /* Cards adjustments */
  .transparent-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .transparent-card {
    padding: 2rem 1rem;
    min-height: auto;
  }
  
  .transparent-card h3 {
    font-size: 1.3rem;
  }
  
  .transparent-card p {
    font-size: 0.95rem;
  }
  
  .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .results-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .result-card {
    padding: 2rem 1rem;
    min-height: auto;
  }
  
  .result-card h3 {
    font-size: 1.3rem;
  }
  
  .result-card p {
    font-size: 0.95rem;
  }
  
  /* Footer adjustments */
  .footer-content {
    padding: 2rem 1rem 1.5rem 1rem;
    margin: 0 20px;
  }
  
  .footer-info p {
    font-size: 0.9rem;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
  }
  
  /* Contact form adjustments */
  .contact-form-card {
    padding: 2rem 1.5rem !important;
    margin: 0 20px;
  }
  
  .form-title {
    font-size: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  
  .submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* Small mobile styles (max-width: 480px) */
@media (max-width: 480px) {
  main {
    padding: 0 16px;
  }
  
  .typewriter-text {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .transparent-card,
  .result-card {
    padding: 1.5rem 1rem;
  }
  
  .transparent-card h3,
  .result-card h3 {
    font-size: 1.2rem;
  }
  
  .transparent-card p,
  .result-card p {
    font-size: 0.9rem;
  }
  
  .icon {
    font-size: 1.8rem;
  }
  
  .footer-content {
    margin: 0 16px;
    padding: 1.5rem 1rem 1rem 1rem;
  }
  
  .contact-form-card {
    margin: 0 16px;
    padding: 1.5rem 1rem !important;
  }
}
