@import './base.css';

body {
  font-family: Arial, sans-serif;
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  width: 90%;
  max-width: 600px;
  text-align: center;
  padding: 2rem;
}

.question {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: var(--text-color);
  line-height: 1.2;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.option-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
  font-size: 1.5rem;
  border: none;
  border-radius: 15px;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.option-button:hover {
  background-color: var(--button-hover);
  transform: scale(1.02);
}

.option-button i {
  font-size: 1.8rem;
}

.progress-container {
  width: 100%;
  max-width: 400px;
  margin: 3rem auto;
  position: relative;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: var(--primary-color);
  transition: width 0.5s ease;
}

.progress-dots {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.progress-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #e0e0e0;
  transition: background-color 0.3s ease;
}

.progress-dot.active {
  background-color: var(--primary-color);
}

.step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.p-intro {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
