/* Playwrite DE Grund font */
@font-face {
  font-family: 'Playwrite DE Grund';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url('../fonts/playwrite_de_grund/PlaywriteDEGrund-Thin.ttf') format('truetype');
}
@font-face {
  font-family: 'Playwrite DE Grund';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('../fonts/playwrite_de_grund/PlaywriteDEGrund-ExtraLight.ttf') format('truetype');
}
@font-face {
  font-family: 'Playwrite DE Grund';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/playwrite_de_grund/PlaywriteDEGrund-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Playwrite DE Grund';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playwrite_de_grund/PlaywriteDEGrund-Regular.ttf') format('truetype');
}


/* Answer card colors */
.answer-blue   { background-color: #4e73df; color: #fff; }
.answer-orange { background-color: #e07b39; color: #fff; }
.answer-green  { background-color: #28a745; color: #fff; }
.answer-yellow { background-color: #f0c040; color: #212529; }

.answer-card {
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  border: 2px solid transparent;
  min-height: 64px;
  display: flex;
  align-items: center;
}

.answer-card:hover:not(:disabled) {
  transform: scale(1.02);
  filter: brightness(1.08);
}

.answer-card.answer-correct {
  outline: 3px solid #198754;
}

/* Answer badge letters in editor */
.answer-badge {
  font-weight: 700;
  width: 2rem;
  text-align: center;
}
.badge-a { background-color: #4e73df !important; color: #fff; }
.badge-b { background-color: #e07b39 !important; color: #fff; }
.badge-c { background-color: #28a745 !important; color: #fff; }
.badge-d { background-color: #f0c040 !important; color: #212529; }

/* Question block in editor */
.question-block + .question-block {
  margin-top: 0;
}

/* Apply Playwrite DE Grund to headings and navbar brand */
.navbar-brand,
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Playwrite DE Grund', serif;
  font-weight: 300;
}
