/* ===== Brand Design Systém — Katka Matušinová =====
   Barvy a fonty podle design.md */

:root {
  --zelena: #4E5E47;      /* lesní zelená, nadpisy */
  --terakota: #C26B47;    /* akcent */
  --terakota-b: #C95B3E;  /* svítivější terakota, jen drobné akcenty */
  --krem: #F3EDE2;        /* pozadí */
  --zlato: #B8923D;       /* vzácný detail */
  --cerna: #23211C;       /* tělo textu */
  --bila-tepla: #FBF8F1;  /* karty */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--cerna);
  background: var(--krem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== Přepínání obrazovek ===== */
.obrazovka { display: none; min-height: calc(100vh - 80px); }
.obrazovka.aktivni { display: flex; align-items: center; justify-content: center; }

/* ===== Společné prvky ===== */
.kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--zelena);
  font-weight: 500;
  margin-bottom: 1rem;
}

.linka {
  width: 56px;
  height: 3px;
  background: var(--terakota);
  border-radius: 2px;
  margin: 1.2rem 0;
}
.linka-stred { margin-left: auto; margin-right: auto; }

h1, h2, h3 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: var(--zelena);
  line-height: 1.15;
  text-wrap: balance; /* nadpisy zalomí vyváženě, ne osamocené slovo dole */
}

/* Odstavce: chytré zalomení, ať na posledním řádku nevisí jedno slovo. */
p, .odpoved { text-wrap: pretty; }

.tlacitko {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--krem);
  background: var(--terakota);
  border: none;
  border-radius: 8px;
  padding: 0.95rem 1.9rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.tlacitko:hover { background: var(--terakota-b); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero-obal {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  max-width: 1060px;
  padding: 4rem 2rem;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
}
.hero-text h1 em { color: var(--terakota); }

.hero-odstavec {
  font-size: 1.06rem;
  max-width: 46ch;
  margin-bottom: 1.6rem;
}

.hero-statistiky {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
}
.hero-statistiky li {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cerna);
  position: relative;
  padding-left: 1rem;
}
.hero-statistiky li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terakota);
}

.hero-podtext {
  font-size: 0.86rem;
  color: var(--zelena);
  margin-top: 0.9rem;
}

/* Fotka + placeholder */
.hero-fotka { display: flex; justify-content: center; }
.fotka-ram {
  position: relative;
  width: min(340px, 80vw);
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(35, 33, 28, 0.14);
}
.fotka-ram img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.fotka-placeholder {
  display: none;
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #DCD2BE 0%, var(--zelena) 130%);
  align-items: center;
  justify-content: center;
}
.fotka-ram.bez-fotky .fotka-placeholder { display: flex; }
.placeholder-podpis {
  font-family: "Allura", cursive;
  font-size: 4rem;
  color: var(--krem);
}
.fotka-bublina {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--krem);
  color: var(--terakota);
  font-family: "Allura", cursive;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.55rem 1.1rem 0.6rem;
  border-radius: 20px 20px 20px 6px;
  box-shadow: 0 6px 16px rgba(35, 33, 28, 0.16);
}
/* Ocásek mluvící bubliny, míří dolů k tobě */
.fotka-bublina::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 20px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 11px 9px 0 5px;
  border-color: var(--krem) transparent transparent transparent;
  filter: drop-shadow(0 4px 3px rgba(35, 33, 28, 0.1));
}

/* ===== TEST ===== */
.test-obal {
  width: min(640px, 92vw);
  padding: 3rem 0 4rem;
}

.test-hlavicka {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.zpet {
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: var(--zelena);
  cursor: pointer;
  padding: 0.3rem 0;
  visibility: hidden;
}
.zpet.viditelne { visibility: visible; }
.zpet:hover { color: var(--terakota); }

.pocitadlo {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--cerna);
}

.progress {
  width: 100%;
  height: 4px;
  background: rgba(78, 94, 71, 0.15);
  border-radius: 2px;
  margin-bottom: 2.2rem;
  overflow: hidden;
}
.progress-vypln {
  height: 100%;
  width: 0%;
  background: var(--terakota);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.otazka-text {
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  margin-bottom: 1.8rem;
}

.odpovedi { display: flex; flex-direction: column; gap: 0.75rem; }
.odpoved {
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--cerna);
  background: var(--bila-tepla);
  border: 1px solid rgba(78, 94, 71, 0.18);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}
.odpoved:hover {
  border-color: var(--terakota);
  background: #FFFDF8;
  transform: translateX(3px);
}
.odpoved.vybrana {
  border-color: var(--terakota);
  background: rgba(194, 107, 71, 0.08);
}

/* ===== VÝSLEDEK ===== */
.vysledek-obal {
  width: min(680px, 92vw);
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.vysledek-emoji { font-size: 2.6rem; margin-bottom: 0.4rem; }
.vysledek-nazev { font-size: clamp(2rem, 5vw, 2.8rem); }

.vysledek-vzorec {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--terakota);
  margin: 0.4rem auto 1.8rem;
  max-width: 34ch;
  line-height: 1.4;
}
.vzorec-stitek { display: block; font-size: 0.95rem; color: var(--zelena); font-style: normal; font-family: "Inter", sans-serif; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.4rem; }

.vysledek-odstavec {
  text-align: left;
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.krok-box {
  text-align: left;
  background: var(--bila-tepla);
  border-left: 4px solid var(--terakota);
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  margin: 1.8rem 0 2.4rem;
}
.krok-stitek {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--zelena);
  margin-bottom: 0.6rem;
}
.krok-text { font-size: 1rem; }

/* E-mail blok */
.email-blok {
  background: var(--zelena);
  color: var(--krem);
  border-radius: 10px;
  padding: 2.2rem 2rem;
  text-align: left;
}
.email-blok h3 { color: var(--krem); font-size: 1.5rem; margin-bottom: 0.7rem; }
.email-blok p { font-size: 0.97rem; margin-bottom: 1.2rem; }

#email-formular {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
#email-pole {
  flex: 1 1 220px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  border: none;
  border-radius: 8px;
  background: var(--krem);
  color: var(--cerna);
}
#email-pole:focus { outline: 2px solid var(--terakota); }

.email-chyba { color: #F3C9B5; font-size: 0.88rem; }
.email-podtext { font-size: 0.82rem; opacity: 0.8; margin-bottom: 0 !important; }

/* Poděkování */
.dekujeme {
  background: var(--zelena);
  color: var(--krem);
  border-radius: 10px;
  padding: 2.2rem 2rem;
  text-align: left;
}
.dekujeme h3 { color: var(--krem); font-size: 1.5rem; margin-bottom: 0.7rem; }
.dekujeme p { font-size: 0.97rem; margin-bottom: 1rem; }
.dekujeme-zaver { font-weight: 500; margin-bottom: 0 !important; }

.podpis {
  font-family: "Allura", cursive;
  font-size: 2.3rem;
  color: var(--terakota);
  margin-top: 2rem;
}

.znovu {
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: var(--zelena);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 0.8rem;
}
.znovu:hover { color: var(--terakota); }

/* ===== Patička ===== */
.paticka {
  text-align: center;
  padding: 1.6rem 0 2rem;
}
.paticka-znacka {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--zelena);
  font-weight: 500;
}

/* ===== Mobil ===== */
@media (max-width: 760px) {
  .hero-obal {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding: 2.6rem 1.4rem;
    text-align: left;
  }
  .hero-fotka { order: -1; }
  .fotka-ram { width: min(260px, 70vw); }
  .vysledek-obal { padding-top: 2.4rem; }
  .email-blok, .dekujeme { padding: 1.7rem 1.4rem; }
}
