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

html, body {
    height: 100%;
}

/*-----PERSONAL PROGRAM----*/
    .loginwrapper {
        margin:150px 0 0 0;
    }  

.actions {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.actions button {
    display: inline-block;
    margin: 0 auto;
}

/*------TYPO----*/
/* Regular */
@font-face {
  font-family: "DanoneOne";
  src: url("fonts/DanoneOne-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: "DanoneOne";
  src: url("fonts/DanoneOne-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Light */
@font-face {
  font-family: "DanoneOne";
  src: url("fonts/DanoneOne-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Italic */
@font-face {
  font-family: "DanoneOne";
  src: url("fonts/DanoneOne-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Condensed regular */
@font-face {
  font-family: "DanoneOne Condensed";
  src: url("fonts/DanoneOne-Condensed.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Condensed bold */
@font-face {
  font-family: "DanoneOne Condensed";
  src: url("fonts/DanoneOne-CondensedBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Algemeen font gebruik voorbeeld */
body {
  font-family: "DanoneOne", sans-serif;
  color:white;
}
h1, h2, h3 {
  font-family: "DanoneOne Condensed", sans-serif;
  font-weight: 700;
}

/*-----STRUCTURE----*/
.containerhome {
    background-color:#00aced;
    border:18px solid #002677;
    height:100vh;
}

.containerother {
    background-color:#00aced;
    border:18px solid #002677;
    padding: 0 0 0 0;
    min-height:100vh;
}

/* ----- FIXED TOP LOGO ----- */
.top-logo {
  position: fixed;
  top: 48px; /* gelijke offset als border */
  left: 48px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-logo img {
  height: 150px; /* scherp en proportioneel */
  width: auto;
  display: block;
}

@media (max-width: 720px) {

.top-logo {
  position: fixed;
  top: 24px; /* gelijke offset als border */
  left: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}    
    
  .top-logo img {
    height: 70px;
  }
}

/* ----- FIXED TOP TABS ----- */
.top-tabs {
  position: fixed;
  top: -1px; /* align with outer border */
  right: 36px;
  display: flex;
  gap: 10px;
  z-index: 1000;
}
.top-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: auto;
  padding: 40px 16px 60px 16px;
  text-decoration: none;
  text-transform: uppercase;    
  font-weight: 700;
  background: #fff;
  border: 1px solid #fff;
  color: #002677;
  border-radius: 0 0 75px 75px; /* square top corners, rounded bottom */
  transition: background .2s ease, color .2s ease, transform .02s ease, box-shadow .2s ease;
}
.top-tab:hover { box-shadow: 0 6px 18px rgba(10,132,255,.15); }
.top-tab.active {
  background: #002677;
  border-color: #fff;
  color: #fff;
}
.login {width:30%;margin-left:35%}

@media (max-width: 720px) {
  .top-tabs { top: 12px; right: 12px; gap: 8px; }
  .top-tab { min-width: 108px; height: 38px; padding: 0 12px; font-size: .9rem; border-radius: 0 0 22px 22px; }
}


/* ROCKET — anchor op midden, enkel transform animeren */
.rocket {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 75vh;
  transform: translate(-50%, 120vh) scale(0.8); /* start ver onder viewport */
  animation: launch 5.5s cubic-bezier(0.15, 0.90, 0.30, 1.00) both;
  z-index: 5;
  will-change: transform, opacity;
}

@keyframes launch {
  0% {
    transform: translate(-50%, 120vh) scale(0.8);
    opacity: 0;
  }
  10% { opacity: 1; }
  60% { transform: translate(-50%, -60%) scale(1.05); } /* versnellen */
  100% {
    transform: translate(-50%, -60%) scale(1.05); /* exact midden, blijft staan */
    opacity: 1;
  }
}

/* Zorg dat de raket buiten beeld kan starten zonder scrollbars */
.containerhome { position: relative; overflow: hidden; }


/* CTA BUTTON - verschijnt na raket animatie */
.cta-register {
  position: fixed;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%, 150%); /* onder raket */
  padding: 0.2rem 4rem;
  background: #fff;
  color: #002677;
  font-family: "DanoneOne Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.0rem;
  text-decoration: none;
  border-radius: 25px;
  border: 2px solid #fff;
  opacity: 0;
  animation: ctaFade 1.5s ease forwards;
  animation-delay: 2.3s; /* iets later dan launch (5.5s) */
  z-index: 6;
}

.cta-register:hover {
  background: #00aced;
  color: #fff;
  border-color: #fff;
  cursor: pointer;
}

/* Fade-in */
@keyframes ctaFade {
  0% { opacity: 0; transform: translate(-50%, 150%); }
  100% { opacity: 1; transform: translate(-50%, 140%); }
}


/*-----REGISTRATION----*/
    :root {
      --gap: 1.2rem;
      --col-label: 360px;
      --maxw: 960px;
      --maxwcolumns:75vw;    
      --radius: 25px;
      --border: 1px solid #e2e2e2;
    }

    .container {max-width: var(--maxw); margin: 125px auto 0 auto; background: transparent; padding: 24px;}    
    .containercolumns {max-width: var(--maxwcolumns); margin: 125px auto 0 auto; background: transparent; padding: 24px;}    

    h1 {margin: 0 0 1rem 0; font-size: 1.6rem;}
    h2 {font-size: 1.2rem; letter-spacing: 0.03em; color: white; border-top: 0px; padding-top: 0; margin-top: 0}

    form {display: grid; gap: var(--gap);}    

    /* Row wrapper: 2 columns on desktop, stacked on mobile */
    .row {display: grid; grid-template-columns: var(--col-label) 1fr; gap: var(--gap); align-items: start;}

    .row > label {text-align: right; padding-top: .6rem; color: white;}

    .control {display: grid; gap: .5rem!important;}
    .hint {display:inline-block;.9rem; color: white; margin: 15px 0 15px 0;}
    .error {color: #b91c1c; font-size: .9rem;}
    .alert-error {display:none;background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; padding: 2rem; border-radius: 8px;}
    .alert-success {background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; padding: .9rem 1rem; border-radius: 8px;}

    input[type="text"], input[type="email"], select, textarea {
      width: 100%;
      border: var(--border);
      border-radius: 25px;
      padding: .5rem .8rem;
      font: inherit;
      background: #fff;
    }
    textarea {min-height: 110px;}
    input:focus, select:focus, textarea:focus {outline: none; box-shadow: 0 0 0 3px rgba(10,132,255,0.15); border-color: #0a84ff;}

    .radio-group {display: grid; gap: .5rem;}

    /* Toggle-style checkboxes */
    .toggle-grid {display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .6rem;}
    .toggle { position: relative; }
    .toggle input {position: absolute; inset: 0; opacity: 0;}
    .toggle label {
      display: block; text-align: center; border: var(--border);
      border-radius: 999px; padding: .5rem .8rem; user-select: none; cursor: pointer;
      transition: transform .02s ease-in-out, box-shadow .2s, border-color .2s, background .2s;
      background: #f9fafb; color:black;
    }
    .toggle input:focus + label {outline: none; box-shadow: 0 0 0 3px rgba(10,132,255,0.15);}    
    .toggle input:checked + label {background: #00aced; color: #fff; border-color: white;}
    .toggle input:not(:checked)+label:hover {border-color: #9ca3af;}

    fieldset {border: none; margin: 0; padding: 0;}
    fieldset legend {position: absolute; left: -9999px;}

    .hidden {display: none !important;}

    .consents {display: grid; gap: .6rem;}
    .consents label {text-align: left; margin: 10px 0 0 0}

    button[type="submit"] {
      margin: 2rem 0; padding: .5rem 2rem; border-radius: 25px; border: 1px solid white; background: #00aced;
      color: #fff; font-weight: 600; letter-spacing: .02em; cursor: pointer; box-shadow: 0 6px 18px rgba(10,132,255,.2);
    }
    button[type="submit"]:hover {filter: brightness(0.96);}    

    @media (max-width: 720px) {
      .row {grid-template-columns: 1fr;}
      .row > label {text-align: left; padding-top: 0;}
      .toggle-grid {grid-template-columns: repeat(2, minmax(0,1fr));}
    }


/* ----- THANK YOU CENTER ----- */
.thankyou-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 840px;
  padding: 0 24px;
  animation: tyFade .8s ease-out both;
  z-index: 4;
}

.thankyou-center h1 {
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  margin-bottom: .6rem;
}

.thankyou-center .hint {
  color: white; /* subtiel contrast op donkerblauw */
  margin-bottom: 1.2rem;
}

/* Buttons */
.thank-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 1.2rem;
}

.btn-primary {
  display: inline-block;
  padding: .7rem 1.6rem;
  background: #fff;
  color: #002677;
  border: 2px solid #fff;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
}

.btn-primary:hover {
  background: #00aced;
  color: #fff;
  border-color: #fff;
}

.btn-link {
  display: inline-block;
  padding: .7rem 1rem;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Subtiele fade-in */
@keyframes tyFade {
  from { opacity: 0; transform: translate(-50%, -48%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

@media (max-width: 720px) {
  .thankyou-center h1 { font-size: 1.7rem; }
}

/* PRACTICALITIES: two independent stacked columns */
.practical-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--gap) * 5);
  align-items: start;
  margin-top: .6rem;
}

.practical-col { display: grid; gap: var(--gap); }

/* Blocks inside each column */
.p-block { display: grid; gap: .35rem; }

.spacer10 {display:block; height:10px}
.spacer35 {display:block; height:35px}

/* Title row with inline icon */
.p-title {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: "DanoneOne Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .02em;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap; /* label compact houden */
  margin-bottom: 10px;    
}

/* FIX: text alignment per column */
.col-left .p-text {
  text-align: right;
}

.col-right .p-text {
  text-align: left;
}

/* Mobiel: alles links */
@media (max-width: 720px) {
  .col-left .p-text,
  .col-right .p-text {
    text-align: left;
  }
}

/* Align per column */
.col-left  .p-title { justify-content: flex-end; text-align: right; }
.col-right .p-title { justify-content: flex-start; text-align: left; }

.p-text { color: white; line-height: 1.5; }

/* Resize the icon */
.p-title .icon-svg {
    width: auto;
    height: 40px;
    flex: 0 0 40px;
    display: inline-block;
}

/* Links in info */
.p-text a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* Responsive: stack columns on mobile */
@media (max-width: 720px) {
  .practical-columns { grid-template-columns: 1fr; }
  .col-left .p-title { justify-content: flex-start; text-align: left; } /* mobiel alles links */
}

/* PROGRAMME */
.programme { margin-top: .4rem; }

.programme-list {
  list-style: none;
  display: grid;
  gap: .2rem;
  padding: 0;
  margin: 0;
}

/* Rijen met 2 kolommen: tijdsmarge + titel */
.programme-item {
  display: grid;
  grid-template-columns: 105px 1fr; /* tijdskolom / content */
  align-items: baseline;
  gap: 1rem;
  padding: .6rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.programme-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.slot-time {
  text-align: left;
  color: #cfe7ff;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
}

.slot-title {
  color: #fff;
  text-transform: none; /* of 'capitalize' als je Titels wilt */
  line-height: 1.35;
}

/* Kleine accentlijn links van de content voor premium feel (optioneel) */
.programme-item .slot-title {
  position: relative;
  padding-left: 12px;
}
.programme-item .slot-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: .3em;
  bottom: .3em;
  width: 2px;
  background: linear-gradient(to bottom, #00aced, rgba(255,255,255,.25));
  border-radius: 2px;
}

/* Responsief: stacken en groter klik-/leesvlak */
@media (max-width: 720px) {
  .programme-item {
    grid-template-columns: 1fr;
    gap: .25rem;
  }
  .slot-time {
    text-align: left;
    opacity: .9;
  }
  .programme-item .slot-title { padding-left: 10px; }
    
.cta-register {
    position: fixed;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, 150%);
    padding: 0.2rem 3rem;
    background: #fff;
    color: #002677;
    font-family: "DanoneOne Condensed", sans-serif;
    font-weight: 700;
    font-size: 0.8em;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid #fff;
    opacity: 0;
    animation: ctaFade 1.5s 
ease forwards;
    animation-delay: 2.3s;
    z-index: 6;
}    
    
}

/* ----- BOTTOM LEFT LOGO ----- */
.bottom-logo {
  position: fixed;
  bottom: 18px; /* uitlijning met onderkant behouden */
  left: 18px; /* uitlijning met border zoals bij jou */
  z-index: 100000;
}

.bottom-logo img {
  height: 125px;
  width: auto;
  display: block;
}

.bottom-logo-notfix {
  position: relative;
  bottom: 0px; /* uitlijning met onderkant behouden */
  left: 0px; /* uitlijning met border zoals bij jou */
  z-index: 100000;
}

.bottom-logo-notfix img {
  height: 125px;
  width: auto;
  display: block;
}



@media (max-width: 720px) {
    
.containerother {
    background-color: #00aced;
    border: 18px solid #002677;
    padding: 100px 0 0 0;
    min-height: 100vh;
}    
    
    .loginwrapper {
        margin:100px 0 0 5%;
        width:90%;
    }    
    
    .login {width:100%;margin-left:0%; margin-top:5%;}
    
  .bottom-logo {
    bottom: 0px; /* iets compacter op mobiel */
    left: 0px; /* afstemming op mobiel border */
  }
    
  .bottom-logo img {
    height: 40px;
  }
    
.bottom-logo-notfix {
  position: relative;
  bottom: 0px; /* uitlijning met onderkant behouden */
  left: 0px; /* uitlijning met border zoals bij jou */
  z-index: 100000;
}    
    
 
    
.bottom-logo-notfix img {
  height: 40px;
  width: auto;
  display: block;
}    
}