/**
 * Schulräume. – D&D: Namen den Bildern zuordnen.
 * Razporeditev kot E05_U01_2 (room-grid); dropzone in answer enake velikosti kot E04_U06_1.
 */

@font-face {
  font-family: "League Spartan";
  src: url('../assets/fonts/LeagueSpartan-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.exercise-container {
  width: 68rem;
  min-height: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "League Spartan", sans-serif;
}

.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 68rem;
  max-width: 100%;
  padding: 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}

.room-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 6rem;
}

.room-image {
  display: flex;
  width: 12rem;
  height: 8rem;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}

.room-drop {
  display: flex;
  align-items: center;
}

/* Enaka velikost kot .answer (po najdaljši besedi „der Computerraum“), kot E04_U06_1 */
.dropzone {
  width: 20ch;
  min-width: 20ch;
  height: 2.5rem;
  min-height: 2.5rem;
  border-radius: 1.25rem;
  border: 0.2rem solid #F9B002;
  background-color: rgba(249, 176, 2, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.dropzone.dragover {
  border-color: #00699f;
  background-color: rgba(0, 105, 159, 0.08);
}

.dropzone .drag_element {
  background-color: transparent;
  border: 0;
  margin: 0;
  width: 20ch;
  min-width: 20ch;
  cursor: default;
}

/* Odgovori spodaj – natančno 2 vrstici × 3 elementa */
.answers-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: 68rem;
  padding: 1rem;
  box-sizing: border-box;
  justify-items: center;
}

/* Vsi enaki po velikosti (kot E04_U06_1), najdaljši: der Computerraum */
.answer {
  width: 20ch;
  min-width: 20ch;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-family: "League Spartan", sans-serif;
  box-sizing: border-box;
  cursor: move;
  text-align: center;
  user-select: none;
  border-radius: 1.25rem;
  border: 0.2rem solid #00699F;
  background: #fff;
}

.answer .text-container {
  line-height: 1.4;
}

.answer.dragging {
  opacity: 0.7;
  cursor: grabbing;
}

.answer.correct,
.answer.incorrect {
  background-color: transparent;
}

.dropzone.correct,
.answer.correct {
  border-color: #258174;
}

.dropzone.incorrect,
.answer.incorrect {
  border-color: #ff0000;
}

#dragging-clone {
  background-color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  transition: none;
}

@media (hover: none) {
  .answer {
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: grab;
  }

  .dropzone {
    touch-action: none;
  }
}
