/* ===== ZÁKLADNÍ RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #FAF5E8;
  color: #6A5744;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.7;
}

/* ===== TYPOGRAFIE ===== */
h1, h2, h3 {
  font-family: 'Morisawa RoLE Serif Text Pro', 'Morisawa Role Serif', Georgia, serif;
  color: #4A3425;
}

.section-label {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6A9D8F;
  display: block;
  margin-bottom: 12px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 64px 0;
}

/* ===== DEKORATIVNÍ LINKA ===== */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 48px;
  max-width: 300px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #C3A781;
}
.divider-dot {
  width: 8px;
  height: 8px;
  background: #C3A781;
  border-radius: 50%;
}

/* ===== TLAČÍTKA ===== */
.btn-primary {
  display: inline-block;
  background: #6A9D8F;
  color: #FAF5E8;
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 16px 40px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: #5a8a7d; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #4A3425;
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 14px 38px;
  border: 1px solid #C3A781;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover { background: #DDD0BF; }

/* ===== HERO ===== */
.hero {
  padding: 80px 0 64px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  margin-bottom: 20px;
  color: #4A3425;
}
.hero .subtitle {
  font-size: 19px;
  color: #6A5744;
  max-width: 620px;
  margin: 0 auto 16px;
}
.hero .description {
  font-size: 16px;
  color: #6A5744;
  max-width: 540px;
  margin: 0 auto 40px;
  font-style: italic;
}

/* ===== FORMULÁŘ ===== */
.form-section {
  background: #DDD0BF;
  padding: 48px;
  border-radius: 2px;
  max-width: 500px;
  margin: 0 auto;
}
.form-section h2 {
  font-size: 20px;
  margin-bottom: 28px;
  text-align: center;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6A5744;
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  background: #FAF5E8;
  border: 1px solid #C3A781;
  border-radius: 2px;
  font-family: Georgia, serif;
  font-size: 16px;
  color: #4A3425;
}
.form-group input:focus {
  outline: none;
  border-color: #6A9D8F;
}
.form-section .btn-primary {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* ===== SEKCE — SEZNAM ===== */
.list-section ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}
.list-section ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid #DDD0BF;
}
.list-section ul li:last-child { border-bottom: none; }
.list-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #6A9D8F;
}

/* ===== O VERONICE ===== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: center;
}
.about-section img {
  width: 100%;
  border-radius: 2px;
  filter: grayscale(20%);
}
@media (max-width: 700px) {
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-section img {
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }
}

/* ===== CTA ZÁVĚR ===== */
.cta-section {
  text-align: center;
  background: #DDD0BF;
  padding: 64px 24px;
}
.cta-section h2 {
  font-size: 28px;
  margin-bottom: 16px;
}
.cta-section p {
  max-width: 460px;
  margin: 0 auto 32px;
}

/* ===== TEST STRÁNKA ===== */
.test-header {
  text-align: center;
  padding: 48px 0 32px;
}
.progress-bar {
  background: #DDD0BF;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 48px;
}
.progress-fill {
  background: #6A9D8F;
  height: 4px;
  border-radius: 2px;
  transition: width 0.3s;
}
.question-card {
  background: #DDD0BF;
  padding: 36px 40px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.question-number {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #6A9D8F;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.question-text {
  font-size: 19px;
  color: #4A3425;
  margin-bottom: 28px;
  line-height: 1.4;
}
.answers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .answers-grid { grid-template-columns: 1fr; }
}
.answer-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: #FAF5E8;
  border: 1px solid #C3A781;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.15s;
}
.answer-option:hover {
  background: #f0e8d6;
  border-color: #6A9D8F;
}
.answer-option.selected {
  background: #6A9D8F;
  border-color: #6A9D8F;
  color: #FAF5E8;
}
.answer-option.selected .answer-letter {
  color: #FAF5E8;
}
.answer-letter {
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #6A9D8F;
  font-size: 14px;
  min-width: 20px;
  margin-top: 1px;
}
.answer-option.selected .answer-letter { color: #FAF5E8; }

/* ===== VÝSLEDKOVÁ STRÁNKA ===== */
.result-hero {
  text-align: center;
  padding: 64px 24px 48px;
}
.result-combination {
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6A9D8F;
  margin-bottom: 12px;
}
.result-hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 24px;
}
.result-description {
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== PŘECHODOVÝ TEXT ===== */
.transition-section {
  background: #4A3425;
  color: #FAF5E8;
  padding: 64px 24px;
  text-align: center;
}
.transition-section h2 {
  color: #FAF5E8;
  font-size: 26px;
  margin-bottom: 20px;
}
.transition-section p {
  max-width: 560px;
  margin: 0 auto 12px;
  color: #DDD0BF;
}

/* ===== NABÍDKOVÉ BLOKY ===== */
.offers-section {
  padding: 64px 0;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 800px) {
  .offers-grid { grid-template-columns: 1fr; }
}
.offer-card {
  background: #242424;
  padding: 36px 28px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  color: #FAF5E8;
}
.offer-card:nth-child(1) { background: #2C2C2C; }
.offer-card:nth-child(2) { background: #1E1E1E; }
.offer-card:nth-child(3) { background: #242424; }

.offer-card.featured {
  background: #1E1E1E;
  color: #FAF5E8;
}
.offer-card h3 { color: #F5F0E8; }
.offer-card.featured h3 { color: #F5F0E8; }
.offer-card.featured .offer-price { color: #C3A781; }
.offer-card.featured .offer-desc { color: #B8B0A4; }
.offer-tag {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C3A781;
  margin-bottom: 12px;
}
.offer-card .offer-price { color: #C3A781; }
.offer-card .offer-desc { color: #B8B0A4; }
.offer-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.offer-price {
  font-size: 28px;
  font-weight: bold;
  color: #FAF5E8;
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
}
.offer-desc {
  font-size: 15px;
  color: #DDD0BF;
  flex: 1;
  margin-bottom: 24px;
  line-height: 1.6;
}
.offer-card .btn-primary, .offer-card .btn-secondary, .offer-card .btn-outline-light {
  width: 100%;
  text-align: center;
}
.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: #F5F0E8;
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 14px 38px;
  border: 1px solid #6A9D8F;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-light:hover { background: rgba(106,157,143,0.2); }

/* ===== CHYBOVÉ HLÁŠENÍ ===== */
.error-msg {
  color: #c0392b;
  font-size: 14px;
  margin-top: 8px;
  display: none;
}
