/* :root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --background: #f8fafc;
} */

.showing-results {
  .section-top,
  .full-width-image:not(.show) {
    display: none;
  }
}

.container {
  /* max-width: 800px;
  position: relative;
  padding-bottom: 6rem; */
  /* margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
}

#assessment {
  padding-bottom: 6rem;
}

#assessment .two-columns-50-50,
#results .two-columns-50-50 {
  padding: 0 var(--padding-side);
  margin-bottom: 4rem;
}
.question-container {
  margin-bottom: 2rem;
}

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

.question.animate-in {
  animation: fadeSlideIn 0.3s ease-out;
}

.options.animate-in {
  animation: fadeSlideIn 0.3s ease-out 0.05s both;
}

.question {
}

.options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.option {
  padding: 1rem;
  /* border: 1px solid #e5e7eb; */
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}

.option:hover {
  background: var(--color-light);
  color: #fff;
}

.option.selected {
  background: var(--color-text);
  color: #fff;
  /* border-color: var(--primary); */
}

.navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.navigation .button {
  cursor: pointer;
}

#nextButton {
  transition: opacity 0.2s ease-out;
}

#nextButton.hidden {
  opacity: 0;
  pointer-events: none;
}

/* button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  background: var(--primary);
  color: white;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

button:hover {
  background: var(--primary-dark);
}

button:disabled {
  background: #9ca3af;
  cursor: not-allowed;
} */

.progress {
  /* text-align: center; */
  /* margin: 2rem 0 0 0; */
  /* color: white; */
  /* font-weight: 600; */
}

.results {
  display: none;
  /* display: block; */
}

.results ul {
  margin-bottom: 0;
}

#primaryImage {
  border-radius: 8px;
}

.archetype-card {
  /* border: 1px solid #e5e7eb; */
  border-radius: 8px;
  /* padding: 1.5rem; */
  /* margin-bottom: 1.5rem; */
  /* background-color: white; */
}

.archetype-name {
  /* color: var(--primary-dark); */
  /* font-size: 1.25rem; */
  /* font-weight: 600; */
  /* margin-bottom: 0.5rem; */
}

.phrases {
  /* margin-top: 1rem; */
  /* padding: 1rem; */
  /* background: #f8fafc; */
  /* border-radius: 6px; */
}

.score-breakdown {
  display: none;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

#thank-you-section {
  /* background: var(--color-light); */
  padding: 4rem 0;
  /* color: white; */

  .two-columns-30-70 {
    margin-bottom: 0;
  }

  .form-wrapper {
    /* background: rgba(255, 255, 255, 0.3); */
  }
}

.print {
  background: white;
  color: black;

  .bg-initials,
  .social-media,
  .menu-toggle,
  .menu-overlay,
  .crosses-wrapper,
  .section-top,
  .full-width-image,
  #assessment,
  .site-footer,
  .email-form,
  /* .buttons, */
  .loading-indicator,
  #thank-you-section,
  #primaryImageContainer {
    display: none !important;
  }

  main {
    max-width: 800px;
    margin: 0 auto;
  }

  .two-columns-30-70 {
    display: block;
  }
}
