*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f7941d;
  --blue: #1b3d9c;
  --cyan: #6fd3f3;
  --green: #52b43e;
  --red: #e52520;
  --yellow: #f9d800;
  --dark: #0d1f52;
  --light: #f8f9fc;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7280;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ============================
   NAVIGATION
   ============================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 29, 80, 0.96);
  backdrop-filter: blur(10px);
  padding: 0 5vw;
  height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-combined {
  display: flex;
  align-items: center;
  gap: -6px;
}

.nav-title {
  font-size: 15px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}
.nav-title span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 800 !important;
  transition:
    background 0.2s,
    transform 0.15s !important;
}
.nav-cta:hover {
  background: #e0841a !important;
  transform: translateY(-1px);
}

/* ============================
   HERO
   ============================ */
.hero {
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 5vw 80px;
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hb1 {
  width: 700px;
  height: 700px;
  background: var(--blue);
  opacity: 0.4;
  top: -200px;
  right: -200px;
}
.hb2 {
  width: 400px;
  height: 400px;
  background: var(--orange);
  opacity: 0.15;
  bottom: -120px;
  left: -100px;
}
.hb3 {
  width: 180px;
  height: 180px;
  background: var(--green);
  opacity: 0.25;
  top: 60%;
  right: 8%;
}
.hb4 {
  width: 90px;
  height: 90px;
  background: var(--yellow);
  opacity: 0.35;
  top: 30%;
  left: 45%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.hero-left,
.hero-right {
  min-width: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}

.hero-title {
  font-size: clamp(54px, 7vw, 86px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 24px;
  margin-top: 0 !important;
}
.hero-title .t1 {
  color: var(--orange);
  display: block;
}
.hero-title .t2 {
  color: rgba(255, 255, 255, 0.9);
  display: block;
}
.hero-title .t3 {
  display: block;
  color: var(--green);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s,
    background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: #e0841a;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* Hero right – info card */
.hero-right {
  width: 100%;
  min-width: 0;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.hero-stack > .info-card,
.hero-stack > .countdown-block,
.hero-stack > .collab-row {
  width: 100%;
  min-width: 0;
  flex: 0 0 auto;
  align-self: stretch;
  box-sizing: border-box;
  overflow: hidden;
}

.info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.icon-orange {
  background: rgba(247, 148, 29, 0.2);
}
.icon-blue {
  background: rgba(107, 211, 243, 0.15);
}
.icon-green {
  background: rgba(82, 180, 62, 0.2);
}

.info-text {
}
.info-text strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 3px;
}
.info-text span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.countdown-block {
  background: var(--orange);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 22px 28px;
  text-align: center;
}
.countdown-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}
.countdown-numbers {
  display: flex;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  max-width: 100%;
}
.count-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.count-num {
  font-size: 36px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.count-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
}
.count-sep {
  font-size: 30px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  align-self: flex-start;
  margin-top: 4px;
}

/* Collab logos in hero */
.collab-row {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.collab-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}
.collab-logos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
}
.collab-logos img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}
.collab-org-gastel img {
  max-height: 120px;
}
.collab-org {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.collab-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
  line-height: 1;
}

/* ============================
   OVER HET CONGRES
   ============================ */
.section {
  padding: 90px 5vw;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 0 !important;
}

.section-sub {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 50px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--light);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.about-card:hover {
  transform: translateY(-4px);
}

.about-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 20px 20px 0 0;
}
.acc-orange {
  background: var(--orange);
}
.acc-blue {
  background: var(--blue);
}
.acc-green {
  background: var(--green);
}

.about-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.about-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
}

.about-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
}

/* ============================
   PROGRAMMA
   ============================ */
.program-section {
  background: var(--light);
  padding: 90px 5vw;
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.program-intro .section-sub {
  margin-bottom: 30px;
}

.program-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  background: white;
  border: 1.5px solid #e5e7eb;
  padding: 8px 16px;
  border-radius: 100px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
}

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 52px;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid white;
  outline: 2px solid var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
  z-index: 1;
  position: relative;
}
.timeline-dot.blue {
  background: var(--blue);
  outline-color: var(--blue);
}
.timeline-dot.green {
  background: var(--green);
  outline-color: var(--green);
}
.timeline-dot.yellow {
  background: #d4a800;
  outline-color: #d4a800;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: #e5e7eb;
  margin-top: 4px;
  min-height: 28px;
}

.timeline-content {
  padding-bottom: 26px;
  flex: 1;
}

.t-time {
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.t-time.blue {
  color: var(--blue);
}
.t-time.green {
  color: var(--green);
}
.t-time.yellow {
  color: #c49900;
}

.t-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.t-desc {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

/* ============================
   SAMENWERKING
   ============================ */
.collab-section {
  padding: 90px 5vw;
  background: white;
}

.collab-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.collab-logos-big {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 60px;
  margin-bottom: 56px;
}

.collab-logo-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  max-width: 320px;
  width: 100%;
}

.collab-logo-item--left {
  justify-self: end;
  align-items: flex-end;
}

.collab-logo-item--right {
  justify-self: start;
  align-items: flex-start;
}

.collab-logo-item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

.collab-plus {
  justify-self: center;
  font-size: 52px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.collab-logo-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  text-align: center;
}
.collab-logo-name span {
  display: block;
  font-size: 18px;
  color: var(--blue);
}

/* ============================
   LOCATIE
   ============================ */
.location-section {
  background: var(--dark);
  padding: 90px 5vw;
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.3;
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.location-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-section .section-title {
  color: white;
}
.location-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
.location-section .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--cyan);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.loc-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.loc-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 3px;
}
.loc-text span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.location-map {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  height: 300px;
  overflow: hidden;
}

.location-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================
   AANMELDEN
   ============================ */
.register-section {
  padding: 90px 5vw;
  background: var(--light);
}

.register-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.register-inner .section-title {
  margin-bottom: 14px;
}
.register-inner .section-sub {
  max-width: 100%;
  margin: 0 auto 40px;
  text-align: center;
}

.register-form {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: left;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea,
.register-form .wpcf7 input[type="text"],
.register-form .wpcf7 input[type="email"],
.register-form .wpcf7 input[type="tel"],
.register-form .wpcf7 textarea {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  background: var(--light);
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.register-form .wpcf7 input[type="text"]:focus,
.register-form .wpcf7 input[type="email"]:focus,
.register-form .wpcf7 input[type="tel"]:focus,
.register-form .wpcf7 textarea:focus {
  border-color: var(--orange);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-full {
  grid-column: 1 / -1;
}

.form-submit {
  margin-top: 8px;
  width: 100%;
  background: var(--blue);
  color: white;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  letter-spacing: 0.3px;
}
.form-submit:hover {
  background: #162e7a;
  transform: translateY(-2px);
}

.form-note {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: var(--dark);
  padding: 56px 5vw 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 36px;
}

.footer-brand .nav-title {
  font-size: 20px;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.footer-inline-list {
  flex-direction: row !important
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-inline-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-orgs {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
}

.footer-org-logo {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.footer-org-logo img {
  display: block;
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-org-sep {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
  line-height: 1;
}

.footer-org {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================
   BEDANKT
   ============================ */
.thank-you-section {
  min-height: calc(100vh - 68px);
  padding: 120px 5vw 90px;
  background: var(--light);
  display: flex;
  align-items: center;
}

.thank-you-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 36px;
  font-weight: 900;
  line-height: 72px;
}

.thank-you-inner .section-sub {
  max-width: 100%;
  margin: 0 auto 32px;
  text-align: center;
}

.thank-you-card {
  background: white;
  border-radius: 24px;
  padding: 28px 32px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thank-you-detail strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.thank-you-detail span {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.thank-you-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.thank-you-ghost {
  color: var(--blue) !important;
  border-color: rgba(27, 61, 156, 0.2) !important;
}

.thank-you-ghost:hover {
  border-color: var(--blue) !important;
  color: var(--blue) !important;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .program-grid {
    grid-template-columns: 1fr;
  }
  .location-inner {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .nav-links {
    display: none;
  }
}
