/* БАЗОВЫЕ НАСТРОЙКИ */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  background: #f4f6f7;
  color: #333;
}

.site-topbar {
  background: #fff;
  border-bottom: 1px solid #e3e8ee;
}

.site-topbar__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-topbar__brand {
  color: #1f2e3a;
  text-decoration: none;
  font-weight: 700;
}

.site-topbar__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-topbar__nav a {
  color: #40586b;
  text-decoration: none;
  font-size: 15px;
}

.site-topbar__nav a:hover {
  color: #e25a85;
}

h1, h2, h3, h4 {
  margin: 0 0 10px;
}

p {
  margin: 0 0 10px;
  line-height: 1.5;
}

ul, ol {
  margin-top: 6px;
  margin-bottom: 8px;
  padding-left: 20px;
}

/* СТРУКТУРА СТРАНИЦЫ */

.page-header {
  padding: 20px 16px 18px;
  text-align: center;
  background: #e3edf4;
  border-bottom: 3px solid #d3dde6;
}

.page-header h1 {
  font-size: 28px;
  letter-spacing: 0.04em;
}

.page-subtitle {
  max-width: 720px;
  margin: 6px auto 0;
  font-size: 16px;
  color: #555;
}

.page-main {
  max-width: 880px;
  margin: 24px auto 40px;
  padding: 0 12px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  padding: 18px 18px 20px;
  margin-bottom: 18px;
}

.card h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.card-trainer {
  border-top: 4px solid #c1dfe1;
}

.site-footer {
  border-top: 1px solid #e3e8ee;
  background: #fff;
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
}

.site-footer__left {
  color: #4e5f70;
  font-size: 14px;
}

.site-footer__left p {
  margin: 6px 0 0;
}

.site-footer__right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__right a {
  color: #40586b;
  text-decoration: none;
  font-size: 14px;
}

.site-footer__right a:hover {
  color: #e25a85;
}

/* КНОПКИ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #7bb6a9;
  color: #fff;
  box-shadow: 0 3px 8px rgba(79, 140, 123, 0.4);
  margin-bottom: 10px;
}

.btn-primary:hover {
  background: #6ba494;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #f7d7a6;
  color: #654523;
  margin-top: 12px;
  text-decoration: none;
  text-align: center;
}

.btn-secondary:hover {
  background: #f3c78a;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

/* ЛЕГЕНДА БАЗОВЫХ ЭМОЦИЙ */

.basic-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 6px;
}

.basic-chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.basic-joy         { background: #bfe8b7; }
.basic-acceptance  { background: #d9ecd0; }
.basic-anger       { background: #f2b79b; }
.basic-anticipation{ background: #f7ddb0; }
.basic-fear        { background: #c0d5f5; }
.basic-surprise    { background: #dae6fb; }
.basic-sadness     { background: #cfc7eb; }
.basic-disgust     { background: #f0c6dc; }

/* ТРЕНАЖЁР */

.step-title {
  margin-top: 14px;
  font-weight: 700;
  font-size: 17px;
}

.step-text {
  font-size: 15px;
  margin-bottom: 10px;
  color: #555;
}

.situation-box {
  margin: 8px 0 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e7d3b8;
  background: #fff7ec;
  font-size: 16px;
}

.situation-box.is-empty {
  opacity: 0.7;
  font-style: italic;
}

.situation-placeholder {
  color: #999;
}

/* ГРИДЫ ВАРИАНТОВ */

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
  margin-top: 4px;
}

.option-btn {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #d6d6d6;
  background: #f9f9f9;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.15s ease, border-color 0.15s ease,
              transform 0.1s ease, box-shadow 0.15s ease;
}

.option-btn:hover {
  background: #f0f5f7;
  border-color: #c3d4dd;
}

.option-btn.selected {
  background: #d2ecdf;
  border-color: #97c6ab;
  box-shadow: 0 0 0 1px rgba(151, 198, 171, 0.6);
}

/* базовые эмоции — цвет задаётся из JS, тут только усиление при выборе */

.options-grid-basic .option-btn.selected {
  box-shadow: 0 0 0 2px rgba(90, 128, 110, 0.6);
}

/* ИНТЕНСИВНОСТЬ */

.intensity-scale {
  display: flex;
  gap: 6px;
  margin: 6px 0 10px;
}

.intensity-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #c8d2da;
  background: #f6f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.intensity-circle:hover {
  background: #e3edf4;
}

.intensity-circle.selected {
  background: #7bb6a9;
  color: #fff;
  border-color: #5e9488;
  transform: translateY(-1px);
}

/* РЕЗУЛЬТАТЫ */

.result-box {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #eef3fa;
  border-left: 4px solid #b4c7e7;
  font-size: 15px;
}

.result-box.is-hidden {
  display: none;
}

.result-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.result-section {
  margin-top: 6px;
}

.result-section strong {
  font-weight: 700;
}

/* ШПАРГАЛКА-ПЛАКАТ */

.poster-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}

.poster {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.poster-column {
  flex: 1 1 260px;
  min-width: 0;
}

.poster-item {
  border-radius: 12px;
  border: 1px solid #e1e5ec;
  padding: 8px 10px;
  margin-bottom: 8px;
  background: #fbfdff;
  font-size: 14px;
}

.poster-item-title {
  font-weight: 700;
  margin-bottom: 2px;
}

.poster-item-text {
  font-size: 13px;
  color: #555;
}

.poster-item-phrase {
  font-size: 13px;
  margin-top: 4px;
  font-style: italic;
  color: #444;
}

.print-card-hint {
  margin-top: 12px;
  font-size: 13px;
  color: #555;
}

/* АДАПТИВНОСТЬ */

@media (max-width: 640px) {
  .site-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-topbar__nav {
    gap: 10px;
  }

  .card {
    padding: 14px 12px 16px;
  }

  .page-header h1 {
    font-size: 22px;
  }

  .page-subtitle {
    font-size: 14px;
  }
}

/* ПЕЧАТЬ: показываем только шпаргалку-плакат, если распечатывать эту страницу */

@media print {
  body {
    background: #ffffff;
  }

  .site-topbar,
  .page-header,
  .site-footer,
  .card:not(#posterSection) {
    display: none !important;
  }

  #posterSection {
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 10mm;
  }

  #posterSection h2 {
    margin-top: 0;
  }

  .btn-secondary {
    display: none !important;
  }
}
