/* ===============================
   BASIS
================================= */

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
}

body {
  background-image: url('../img/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}


/* ===============================
   LAYOUT
================================= */

.content {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}

.upload-box {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


/* ===============================
   HAMBURGER
================================= */

.hamburger {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
}


/* ===============================
   LOGO & TEKST
================================= */

.brand-logo {
  width: 75px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.name {
  color: #4bf4ff;
}

.step-title {
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 700;
}


/* ===============================
   UPLOAD
================================= */

.file-upload {
  width: 100%;
  max-width: 420px;
  margin: 20px auto;
  cursor: pointer;
}

.file-upload input[type="file"] {
  display: none;
}

.file-label {
  display: block;
  padding: 16px;
  border-radius: 999px;
  border: 2px dashed rgba(255,255,255,0.35);
  font-weight: 700;
  transition: all 0.25s ease;
}

.file-upload:hover .file-label {
  border-color: #4bf4ff;
  color: #4bf4ff;
  background: rgba(75,244,255,0.08);
}


/* ===============================
   INPUTS & SELECTS
================================= */

.admin-input {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 24px auto;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: white;
  display: block;
  outline: none;
  appearance: none;
  transition: all 0.2s ease;
}

.admin-input::placeholder {
  color: rgba(255,255,255,0.6);
}

.admin-input:hover {
  border-color: rgba(75,244,255,0.6);
}

.admin-input:focus {
  border-color: #4bf4ff;
  box-shadow: 0 0 0 3px rgba(75,244,255,0.15);
}


/* ===============================
   BUTTONS
================================= */

.btn {
  margin-top: 10px;
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}


/* ===============================
   WIZARD – Clean Fade
================================= */

.wizard-step {
  display: none;
  width: 100%;
  margin-top: 40px;

  opacity: 0;
  transform: translateY(8px);
  transition: 
    opacity 0.35s ease,
    transform 0.35s ease;
}

.wizard-step.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  opacity: 1;
  transform: translateY(0);
}


/* ===============================
   CONFIRM BOX
================================= */

.confirm-box {
  margin-bottom: 24px;
}

.confirm-row {
  margin-bottom: 8px;
  font-size: 15px;
}

.confirm-label {
  opacity: 0.7;
  margin-right: 6px;
}


/* ===============================
   ANIMATIE
================================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Zorg dat preUpload en wizard elkaar niet stapelen */
#preUpload {
  width: 100%;
  text-align: center;
}

/* Verberg preUpload zodra wizard start */
#preUpload.hidden {
  display: none;
}
