/* Custom overrides for Shear Pleasure Salon */
body {
  font-family: "Nunito", sans-serif;
  background-color: #FDF8F3;
  color: #6B5344;
  -webkit-font-smoothing: antialiased;
}

.font-heading {
  font-family: "Playfair Display", serif;
}

*:focus-visible {
  outline: 2px solid #E8A598;
  outline-offset: 2px;
}

/* Find Your Look quiz animations */
@keyframes quiz-option-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-option-animate {
  animation: quiz-option-in 0.35s ease-out forwards;
}

/* Step indicator bar - visible warm background */
.quiz-step-indicator {
  background-color: rgba(196, 167, 125, 0.5);
}
