/* =========================
   INDEX PAGE LAYOUT
========================= */
body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-box {
  margin: 20px auto;
}

/* =========================
   MAIN 2-COLUMN LAYOUT
========================= */
.layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

/* =========================
   LEFT COLUMN (AVATAR)
========================= */
.left-column {
  display: flex;
  justify-content: center;
}

.avatar {
  width: 350px;
  height: auto;
}

.title {
  font-size: 2.5rem;
  font-family: "Gabriela", serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0px;
}

/* =========================
   RIGHT COLUMN
========================= */
.right-column {
  font-family: "Gabriela", serif;
  font-style: normal;
  display: grid;
  grid-template-rows: auto auto;
  gap: 30px;
}

/* =========================
   SPEECH BUBBLE
========================= */
.speech-bubble {
  position: relative;
  background: #f9a7db85;
  padding: 20px 25px;
  border-radius: 16px;
  max-width: 420px;
  text-align: left;
}

.speech-bubble::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 120px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 14px solid #f9a7db85;
}

/* =========================
   QUIZ LIST
========================= */
#quiz-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#quiz-list button {
  font-family: "Gabriela";
  font-style: normal;
  width: 230px;
  height: 100px;
  border-radius: 12px;
  border: none;
  background: #eee;
  cursor: pointer;
  font-size: 16px;
}

#quiz-list button:hover {
  background: #bfd8f9;
  border: 2px solid #77a5c9;
}

/* =========================
   INDEX RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .avatar {
    width: 200px;
    margin: 0 auto;
    padding: 0;
  }

  .speech-bubble {
    max-width: 100%;
    font-size: 16px;
    padding: 12px 16px;
    margin: 0 auto;
  }

  .speech-bubble::before {
    display: none;
  }

  #quiz-header {
    font-size: 20px;
  }

  #quiz-list{
    display: grid;
    grid-template-columns: 1fr;      /* one per row */
    gap: 12px;
    margin-top: 10px;
  }

  #quiz-list button{
    width: 100%;
    max-width: 420px;               /* optional */
    height: auto;                   /* key: no forced big height */
    padding: 14px 16px;             /* controls button size */
    min-height: 56px;               /* good tap target */
    font-size: 16px;
    line-height: 1.2;
    white-space: normal;            /* allow wrap */
    text-align: left;               /* feels nicer on mobile */
  }

  #quiz-header {
    font-size: 16px;
    margin: 10px 0;
  }

  #footer {
    font-size: 13px;
    margin: 12px 0;
  }
}

@media (max-width: 600px){
  .avatar{ width: 200px; }
  .title{ font-size: 28px; }
  .speech-bubble{ font-size: 16px; }
}
