@charset "UTF-8";
/* Hero Section */
section {
  padding: 2em 2em;
}
article {
    max-width: 620px;
    margin: 2rem auto 0;
}
.hero {
  background: var(--color-beige);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  min-height: 100vh; /* for visual balance, but not fixed */
  padding: 0 2em;
}
@media (max-width: 900px) {
  .hero {
    min-height: unset;
    /* let it expand naturally */
  }
  h1 {
    font-size: 2em;
  }
}
.hero .form {
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translate(0, 0);
  transform-origin: center center;
}
canvas#network-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* → ZET ONDER DE CONTENT! */
  pointer-events: none; /* → zodat het NOOIT je clicks blokkeert */
}
.svg-forms {
  top: 0 !important;
  left: 0;
  width: 100%;
  height: 600px;
  z-index: 1;
  pointer-events: none;
}
.form {
  transform-origin: center;
  transition: transform 1.5s ease;
}
.anna-section {}
.anna-section img {
  width: 100%;
  height: auto;
  display: block;
}

.contactbtn-section {
  display: flex;
  justify-content: flex-end;  /* Zorgt dat de knop naar rechts schuift */
  padding-right: 2rem;        /* Alleen rechtermarge nodig */
}
.columns {
  display: flex;
  gap: 4vw;
  justify-content: center;
  max-width: 1200px;
  margin: 2rem auto 0;
  /* flex-wrap: wrap; mag, maar dan wel min-width: 0 */
}
.column, .column-right {
  width: 50%;
  min-width: 0;
  box-sizing: border-box;
  padding-bottom: 0;
}
@media (max-width: 900px) {
  .columns {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
    margin: 0 auto;
  }
  .column, .column-right {
    padding-bottom: 2em;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .hero .column {
    padding: 0;
  }
  hero .columns {
    gap: 0;
  }
}
.voicebox {
  margin: 1.4em 0 2em 0;
}
.voice-hint {
  display: block;
  font-size: 0.98em;
  color: var(--color-dark50);
  margin-top: 0.3em;
}
.text-content {
  max-width: 850px;
  margin: 0 auto;
}
/* Services Section */
.services {
  padding: 4rem 2rem;
  text-align: center;
  background: #FFDC97;
}
/* Testimonials */
.testimonial {
  background: #1F2C38;
  padding: 2em 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.testimonial-title {
  color: var(--color-lightyellow);
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
}
.testimonial img {
  text-align: center;
  margin: 1rem;
}
.swiper {
  width: 100%;
}
.swiper-slide {
  width: 620px!important;
  box-sizing: border-box;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.swiper-slide-active {
  opacity: 1;
}
@media (max-width: 700px) {
  .swiper-slide {
    width: 100%;
    max-width: 100vw;
    padding: 0 2em;
  }
  .svg-forms {
    height: 180px;
  }
}
.quote {
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-beige);
  line-height: 1.3rem;
  text-align: left;
}
.author {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--color-lightyellow) !important;
}
/* Swiper Pijlen */
.swiper-button-prev, .swiper-button-next {
  color: var(--color-beige);
  width: 30px;
  height: 30px;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 24px;
  color: var(--color-beige);
}
.swiper-button-prev {
  left: 2em;
}
.swiper-button-next {
  right: 2em;
}
/* ======= CV Timeline ======= */
.timeline {
  border-left: 4px solid var(--color-secondary);
  padding-left: 2em;
  margin-top: 1.5em;
}
.timeline-block {
  position: relative;
  margin-bottom: 3em;
}
.timeline-block ul {
  margin-top: 0.7em;
  margin-left: 1.2em;
  list-style: disc;
}
.timeline-block ul li {
  font-size: 0.98em;
  color: #575757;
}
.timeline-block a {
  color: var(--color-secondary);
  font-weight: 500;
  text-decoration: underline;
}
.edu-badge {
  margin-top: 2.2em;
  text-align: center;
}
.edu-badge img {
  max-width: 250px;
}
/* ======= Responsive Timeline & Education ======= */
@media (max-width: 700px) {
  .anna-section {
    padding: 2em;
  }
  .timeline {
    padding-left: 1em;
  }
  .timeline-date {
    position: static;
    left: 0;
    top: 0;
    margin-bottom: 0.4em;
    display: inline-block;
  }
  .timeline-dot {
    left: -2em;
    width: 0.8em;
    height: 0.8em;
  }
  .education-list {
    gap: 1.1em;
  }
  .edu-year {
    width: 1.9em;
    height: 1.9em;
    font-size: 0.98em;
  }
.edu-badge img {
  width: 100%;
  max-width: 250px;
  height: auto;
}
}
.blog-overview h1 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}
.blog-card {
  background: var(--color-lightyellow);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  width: 330px;
  margin-bottom: 2em;
}
.blog-card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}
.blog-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.blog-card a {
  color: var(--color-dark);
  text-decoration: none;
  display: block;
  padding: 1.3em 1.2em 1.3em 1.2em;
}
.blog-meta {
  font-size: 0.96em;
  color: var(--color-accent);
  margin-bottom: 0.5em;
  display: flex;
  gap: 1.2em;
  align-items: center;
}
.blog-tag {
  background: var(--color-secondary);
  color: var(--color-dark);
  border-radius: 12px;
  padding: 0.1em 0.8em;
  font-weight: 600;
}
.blog-date {
  color: var(--color-secondary);
}
.blog-card h2 {
  font-size: 1.2em;
  margin: 0.5em 0 0.5em 0;
  color: var(--color-dark);
  font-weight: 700;
}
.blog-more {
  font-size: 0.98em;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 0.8em;
  display: block;
}
@media (max-width: 900px) {
  .blog-list {
    flex-direction: column;
    gap: 1.4em;
    align-items: center;
  }
  .blog-card {
    width: 100%;
    max-width: 420px;
  }
}
/* Blog Detail */
.blog-detail {
  max-width: 800px;
  margin: 3em auto;
}
.blog-detail .link-button {
  margin-bottom: 1.5em;
}
.blog-detail header {
  text-align: center;
  margin-bottom: 2em;
}
.blog-detail h1 {
  margin-bottom: 0.7em;
}
.blog-detail-img {
  width: 100%;
  max-width: 700px;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  margin: 1.3em auto;
  box-shadow: 0 2px 14px rgba(255, 171, 7, 0.08);
  display: block;
}
.blog-content h2 {
  margin-top: 2em;
  color: var(--color-accent);
  font-size: 1.18em;
}
.blog-content blockquote {
  font-style: italic;
  color: var(--color-dark50);
  background: var(--color-light);
  border-left: 4px solid var(--color-accent);
  padding: 1.1em 1.6em;
  margin: 2em 0;
  border-radius: 8px;
}
/* ======= Footer ======= */
footer {
  background: var(--color-dark);
  color: var(--color-lightyellow);
  padding: 2rem;
  margin-top: 2rem;
  font-size: 0.8rem;
}
.footer-logo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 30px;
}
.footer-logo {
  text-align: center;
  margin-bottom: 3rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-left, .footer-right {
  flex: 1 1 10px;
  text-align: center;
}
footer a {
  color: var(--color-lightyellow);
  text-decoration: underline;
  margin: 0 0.5rem;
  font-size: 0.8rem;
}
footer a:hover {
  color: var(--color-lightyellow);
}