/* --------------------
   LAYOUT
-------------------- */

.section {
  width: 100%;
  padding: 40px 20px;
  display: none;
}

.section.active {
  display: block;
}

#fullpage {
  position: relative;
  text-align: center;
}

/* --------------------
   SLIDES
-------------------- */

.slide {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 80px 0;
}

.slide-question {
  font-size: 18px;
  font-weight: 600;
  color: #00529f;
  text-align: left;
}

/* --------------------
   ANSWER GROUP
-------------------- */

.answer-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* --------------------
   SIMPLE ANSWERS
-------------------- */

.answer {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  color: #333;
  transition: color 0.2s ease;
}

.answer:hover {
  color: #00b1a5;
}

/* Circle */
.answer .circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* Active simple answer */
.answer.active {
  color: #00b1a5;
}

.answer.active .circle {
  background: #00b1a5;
  border-color: #00b1a5;
  box-shadow: 0 0 0 3px rgba(0,177,165,0.25);
}

/* --------------------
   TILE ANSWERS
-------------------- */

.answer-tile {
  width: 140px;
  height: 150px;
  padding-top: 100px;
  text-align: center;
  font-size: 14px;
  border-radius: 16px;
  border: 2px solid #e5e5e5;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.answer-tile:hover {
  border-color: #00b1a5;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* Active tile */
.answer-tile.active {
  border-color: #00b1a5;
  box-shadow: 0 0 0 3px rgba(0,177,165,0.25);
  transform: translateY(-2px);
}

/* --------------------
   FIND BUTTON
-------------------- */

.find-your-lens {
  width: 200px;
  height: 48px;
  border-radius: 30px;
  border: 2px solid #d4d4d4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px auto;
  font-weight: 600;
  color: #999;
  cursor: not-allowed;
  transition: all 0.25s ease;
}

.find-your-lens.active {
  border-color: #00b1a5;
  color: #00b1a5;
  cursor: pointer;
}

.find-your-lens.active:hover {
  background: #00b1a5;
  color: #fff;
}

/* --------------------
   RESULTS
-------------------- */

.result {
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #eee;
  background: #fff;
  transition: all 0.25s ease;
}

.result:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.result-pic img {
  max-width: 160px;
}

.result-link img {
    width: 16px;
    height: 16px;
}

.result-text h4 {
  margin: 0 0 10px;
}

/* --------------------
   UTILITIES
-------------------- */

.hide {
  display: none;
}

/* --------------------
   RESPONSIVE
-------------------- */

@media (min-width: 768px) {
  .slide {
    flex-direction: row;
    align-items: flex-start;
  }

  .slide-question {
    width: 35%;
  }

  .answer-group {
    width: 65%;
  }

  .result {
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .section {
    width: 80%;
    margin: auto;
  }
}
