/* ============================================================
   OnDestination - Aanmelden als Artiestenpartner
   Extends: colors_and_type.css + home.css + artiestenpartner.css
   ============================================================ */

/* === PROGRESS INDICATOR === */
.aanm-progress {
  display: flex;
  align-items: center;
  max-width: 780px;
  margin: 0 0 64px;
}
.aanm-prog-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #141414;
  border: 1.5px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Kardige', sans-serif;
  font-size: 10px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.28);
  flex-shrink: 0;
  transition: all 240ms cubic-bezier(.22,.61,.36,1);
  position: relative;
  z-index: 1;
}
.aanm-prog-dot.done {
  background: rgba(111,224,0,.1);
  border-color: rgba(111,224,0,.3);
  color: #6FE000;
}
.aanm-prog-dot.active {
  background: #6FE000;
  border-color: #6FE000;
  color: #000;
  box-shadow: 0 0 18px rgba(111,224,0,.38);
}
.aanm-prog-line {
  flex: 1;
  height: 1.5px;
  background: rgba(255,255,255,.07);
  transition: background 240ms;
}
.aanm-prog-line.done {
  background: rgba(111,224,0,.25);
}

/* === FORM CONTAINER === */
.aanm-form { max-width: 780px; }

/* === STEP PANELS === */
.aanm-panel { display: none; }
.aanm-panel.active { display: block; }

/* === STEP HEADER === */
.aanm-step-eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(111,224,0,.5);
  margin: 0 0 14px;
}
.aanm-step-header { margin-bottom: 48px; }
.aanm-step-header h2 {
  font-family: 'Kardige', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -.025em;
  margin: 0;
  color: #F8F5EE;
}
.aanm-step-header h2 em {
  font-style: normal;
  color: #6FE000;
}

/* === FIELD SECTIONS === */
.aanm-fsec { margin-bottom: 40px; }
.aanm-fsec-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.28);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.aanm-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.aanm-fields.cols-1 { grid-template-columns: 1fr; }
.aanm-field { display: flex; flex-direction: column; gap: 7px; }
.aanm-field.span-2 { grid-column: span 2; }

/* === LABELS === */
.aanm-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.aanm-label .req { color: #6FE000; margin-left: 1px; }
.aanm-hint {
  font-size: 12px;
  color: rgba(255,255,255,.26);
  line-height: 1.5;
  margin-top: 2px;
}

/* === INPUTS === */
.aanm-input,
.aanm-select,
.aanm-textarea {
  background: #141414;
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Luxe Uno', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14.5px;
  color: #F8F5EE;
  width: 100%;
  transition: border-color 180ms, box-shadow 180ms;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.aanm-input:focus,
.aanm-select:focus,
.aanm-textarea:focus {
  border-color: rgba(111,224,0,.48);
  box-shadow: 0 0 0 3px rgba(111,224,0,.07);
}
.aanm-input::placeholder,
.aanm-textarea::placeholder { color: rgba(255,255,255,.17); }
.aanm-textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}
.aanm-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgba(255,255,255,0.32)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}
.aanm-select option { background: #141414; color: #F8F5EE; }

/* Price / number inputs */
.aanm-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.aanm-input-wrap .sym-l {
  position: absolute;
  left: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.3);
  pointer-events: none;
  z-index: 1;
}
.aanm-input-wrap .sym-r {
  position: absolute;
  right: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.24);
  pointer-events: none;
  z-index: 1;
}
.aanm-input-wrap .aanm-input.pl { padding-left: 30px; }
.aanm-input-wrap .aanm-input.pr { padding-right: 48px; }

/* === RADIO PILLS === */
.aanm-radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.aanm-radio-pill {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.aanm-radio-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.aanm-radio-pill-face {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: #141414;
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.42);
  transition: all 180ms;
  white-space: nowrap;
  user-select: none;
}
.aanm-radio-pill:hover .aanm-radio-pill-face {
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.72);
}
.aanm-radio-pill:has(input:checked) .aanm-radio-pill-face {
  background: rgba(111,224,0,.1);
  border-color: rgba(111,224,0,.4);
  color: #6FE000;
}

/* === CHECKBOX === */
.aanm-check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.aanm-check-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.aanm-check-box {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #141414;
  border: 1.5px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 180ms;
}
.aanm-check-label:has(input:checked) .aanm-check-box {
  background: #6FE000;
  border-color: #6FE000;
}
.aanm-check-box svg {
  width: 11px;
  height: 11px;
  stroke: #000;
  opacity: 0;
  transition: opacity 150ms;
}
.aanm-check-label:has(input:checked) .aanm-check-box svg { opacity: 1; }
.aanm-check-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(248,245,238,.6);
}
.aanm-check-text a {
  color: #6FE000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* === FILE UPLOAD ZONES === */
.aanm-upload-zone {
  border: 1.5px dashed rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 26px 20px;
  cursor: pointer;
  transition: all 200ms;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.aanm-upload-zone:hover {
  border-color: rgba(111,224,0,.3);
  background: rgba(111,224,0,.02);
}
.aanm-upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.aanm-upload-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: background 200ms;
}
.aanm-upload-icon svg { width: 17px; height: 17px; color: rgba(255,255,255,.28); transition: color 200ms; }
.aanm-upload-title {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  margin: 0 0 4px;
  transition: color 200ms;
}
.aanm-upload-sub { font-size: 12px; color: rgba(255,255,255,.26); }
.aanm-upload-zone.has-file {
  border-color: rgba(111,224,0,.32);
  background: rgba(111,224,0,.03);
}
.aanm-upload-zone.has-file .aanm-upload-icon {
  background: rgba(111,224,0,.12);
}
.aanm-upload-zone.has-file .aanm-upload-icon svg { color: #6FE000; }
.aanm-upload-zone.has-file .aanm-upload-title { color: #6FE000; }

/* === APPARATUS ITEMS === */
.aanm-apparatus { display: flex; flex-direction: column; gap: 8px; }
.aanm-app-item {
  background: #111111;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 180ms;
}
.aanm-app-item.has-ja { border-color: rgba(111,224,0,.14); }
.aanm-app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  flex-wrap: wrap;
}
.aanm-app-item-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  line-height: 1.3;
}
.aanm-app-desc {
  padding: 0 16px 14px;
  display: none;
}
.aanm-app-item.has-ja .aanm-app-desc { display: block; }

/* === CONDITIONAL BLOCKS === */
.aanm-cond { display: none; }
.aanm-cond.visible { display: block; }
.aanm-cond.visible-flex { display: flex; }

/* === SPEELTIJD OPTIES === */
.aanm-speeltijd-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.aanm-speeltijd-row {
  display: grid;
  grid-template-columns: 1fr 1fr 32px;
  gap: 10px;
  align-items: end;
}
.aanm-opt-remove {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  color: rgba(255,255,255,.28);
  cursor: pointer;
  font-family: inherit;
  transition: all 160ms;
  flex-shrink: 0;
  margin-bottom: 0;
}
.aanm-opt-remove:hover { border-color: rgba(255,80,80,.35); color: rgba(255,80,80,.6); }
.aanm-opt-add {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(111,224,0,.55);
  cursor: pointer;
  background: none;
  border: 1.5px dashed rgba(111,224,0,.2);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: inherit;
  transition: all 180ms;
}
.aanm-opt-add:hover { color: #6FE000; border-color: rgba(111,224,0,.45); background: rgba(111,224,0,.04); }

/* === VERVOLG STEPS === */
.aanm-vervolg { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
.aanm-vervolg-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 18px;
  background: #141414;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
}
.aanm-vervolg-num {
  font-family: 'Kardige', sans-serif;
  font-size: 9.5px;
  letter-spacing: .12em;
  color: rgba(111,224,0,.42);
  flex-shrink: 0;
  padding-top: 3px;
  min-width: 20px;
}
.aanm-vervolg-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(248,245,238,.46);
}

/* === CHANGE TYPE LINK === */
.aanm-type-change {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.28);
  text-decoration: none;
  transition: color 160ms;
  margin-top: 6px;
}
.aanm-type-change:hover { color: #6FE000; }

/* === FORM NAVIGATION === */
.aanm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  gap: 16px;
}
.aanm-nav-l { display: flex; align-items: center; gap: 16px; }
.aanm-step-counter {
  font-family: 'Kardige', sans-serif;
  font-size: 10.5px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.2);
}

/* === SUCCESS STATE === */
.aanm-success { display: none; text-align: center; padding: 80px 0; }
.aanm-success.visible { display: block; }
.aanm-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(111,224,0,.1);
  border: 2px solid rgba(111,224,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.aanm-success-icon svg { width: 28px; height: 28px; color: #6FE000; }
.aanm-success h2 {
  font-family: 'Kardige', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -.025em;
  color: #F8F5EE;
  margin: 0 0 16px;
}
.aanm-success h2 em { font-style: normal; color: #6FE000; }
.aanm-success p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(248,245,238,.48);
  max-width: 46ch;
  margin: 0 auto 36px;
}

/* === RESPONSIVE === */
@media (max-width: 680px) {
  .aanm-fields { grid-template-columns: 1fr; }
  .aanm-field.span-2 { grid-column: span 1; }
  .aanm-speeltijd-row { grid-template-columns: 1fr 1fr; }
  .aanm-speeltijd-row .aanm-opt-remove { display: none; }
  .aanm-nav { flex-direction: column-reverse; align-items: stretch; }
  .aanm-nav .btn { justify-content: center; }
  .aanm-nav-l { justify-content: center; }
  .aanm-app-row { flex-direction: column; align-items: flex-start; gap: 10px; }
}
