/**
 * E05_U08_1 – Wo ist welcher Raum? Plan z 7 fill-in polji, slika na spodnjem robu nad footerjem.
 * Pisava: 02_Output_J8/assets/fonts
 */

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

.exercise-container {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-family: "League Spartan", sans-serif;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 36rem;
}

.plan-sentences {
  font-size: 1.2rem;
  line-height: 1.55;
  color: #333;
  margin-bottom: 1rem;
  max-width: 50rem;
}

.plan-sentences p {
  margin: 0 0 0.35rem 0;
}

.plan-sentences p:last-child {
  margin-bottom: 0;
}

/* Fill-in oblike kot v E12_U09_3 (tudi za vnose v stavkih) */
.plan-sentences .fill-in {
  width: 8rem;
  min-width: 8rem;
  height: 2.2rem;
  padding: 0 0.5rem;
  font-size: 1.15rem;
  font-family: "League Spartan", sans-serif;
  border: 0.2rem solid #F9B002;
  border-radius: 1rem;
  text-align: left;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.2s ease;
  vertical-align: middle;
}

.plan-sentences .fill-in:focus {
  outline: none;
  border-color: #00699f;
  box-shadow: 0 0 0.3rem rgba(0, 105, 159, 0.3);
}

.plan-sentences .fill-in.correct {
  background-color: rgba(37, 129, 116, 0.1);
  border-color: #258174;
}

.plan-sentences .fill-in.incorrect {
  background-color: rgba(255, 0, 0, 0.08);
  border-color: #e00;
}

/* Slika na spodnjem robu main, nad footerjem – širina 62rem */
.plan-wrap {
  position: relative;
  display: inline-block;
  width: 62rem;
  max-width: 100%;
  margin-top: auto;
}

.plan-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

/* Polja na planu – ista oblika kot E12_U09_3 .fill-in */
.plan-wrap .plan-in {
  position: absolute;
  width: 8.5rem;
  min-width: 8rem;
  height: 2.2rem;
  padding: 0 0.5rem;
  font-size: 1.15rem;
  font-family: "League Spartan", sans-serif;
  border: 0.2rem solid #F9B002;
  border-radius: 1rem;
  text-align: left;
  background-color: #fff;
  color: #333;
  box-sizing: border-box;
  transition: all 0.2s ease;
  transform: translate(-50%, -50%);
}

.plan-wrap .plan-in:focus {
  outline: none;
  border-color: #00699f;
  box-shadow: 0 0 0.3rem rgba(0, 105, 159, 0.3);
  z-index: 2;
}

.plan-wrap .plan-in.correct {
  background-color: rgba(37, 129, 116, 0.1);
  border-color: #258174;
}

.plan-wrap .plan-in.incorrect {
  background-color: rgba(255, 0, 0, 0.08);
  border-color: #e00;
}

/* Položaji 7 polj na planu – v rem (plan-wrap 62rem širine) */
.plan-wrap .pos-1 { left: 48.5rem;  top: 3rem; }
.plan-wrap .pos-2 { left: 37rem;  top: 11rem; }
.plan-wrap .pos-3 { left: 57rem;  top: 11rem; }
.plan-wrap .pos-4 { left: 7rem;  top: 3rem; }
.plan-wrap .pos-5 { left: 7rem;  top: 11rem; }
.plan-wrap .pos-6 { left: 26rem;  top: 11rem; }
.plan-wrap .pos-7 { left: 25rem;  top: 3rem; }

@media (max-width: 48rem) {
  .plan-wrap {
    width: 100%;
  }

  .plan-wrap .plan-in {
    width: 8rem;
    min-width: 8rem;
    height: 2.2rem;
    font-size: 1.15rem;
  }
}
