/* ============================================================
   Amande Rezervační systém — Fáze 1
   NEUTRÁLNÍ STYL. Layout only. Žádný brand styling.
   Brand vizuál (Cormorant, gold, dark cinematic) přijde ve Fázi 3.
   ============================================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}

/* Phase banner — výrazné upozornění, že je to test */
.phase-banner {
  background: #ffeb99;
  border-bottom: 1px solid #cca000;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.875rem;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

footer {
  border-top: 1px solid #ddd;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #555;
}

footer a {
  color: #555;
}

/* Stepper */
.step {
  display: none;
}

.step.active {
  display: block;
}

.step h1,
.step h2 {
  margin-bottom: 1rem;
  font-weight: normal;
}

.step h1 {
  font-size: 1.75rem;
}

.step h2 {
  font-size: 1.375rem;
}

.step p {
  margin-bottom: 0.75rem;
}

/* Actions */
.actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  align-items: flex-start;
}

.btn-primary {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
}

.btn-primary:hover {
  background: #333;
  border-color: #333;
}

.btn-secondary {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #f5f5f5;
}

.link-secondary,
.link-back {
  color: #555;
  text-decoration: underline;
  font-size: 0.9375rem;
  display: inline-block;
}

.link-back {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

/* Options list (pro concierge a kapitoly) */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.option-item {
  border: 1px solid #ccc;
  padding: 1rem;
  cursor: pointer;
  background: #fff;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
}

.option-item:hover {
  background: #f5f5f5;
  border-color: #999;
}

.option-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.option-item small {
  color: #666;
  font-size: 0.875rem;
}

/* Slots list */
.slots-list {
  margin-top: 1rem;
  border-top: 1px solid #eee;
}

.slot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  gap: 1rem;
}

.slot-row .slot-time {
  font-variant-numeric: tabular-nums;
}

.slot-row[data-status="taken"] {
  color: #888;
}

/* Placeholder notes — výrazné při testování, nezavádějící v UI */
.placeholder-note {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #f5f5f5;
  border-left: 3px solid #999;
  color: #555;
  font-size: 0.875rem;
  font-style: italic;
}

/* Forms (později ve Fázi 2) */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  background: #fff;
  width: 100%;
  max-width: 320px;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.form-row {
  margin-bottom: 1rem;
}
