/* Tamas Tanya pitch kit - page level additions for site/ only.
   Everything structural lives in shared/tokens.css and shared/site.css. */

/* small facts band under the hero */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); }
.fact { border-left: 3px solid var(--gold); padding-left: var(--s4); }
.fact .fact-num {
  font-family: var(--font-head); font-size: var(--fs-xl); color: var(--forest-dark); line-height: 1.1;
}
.fact .fact-text { font-size: var(--fs-sm); color: var(--muted); margin-top: 4px; }
@media (max-width: 900px) { .facts { grid-template-columns: repeat(2, 1fr); gap: var(--s5) var(--s4); } }
@media (max-width: 520px) { .facts { grid-template-columns: 1fr; } }

/* hall cards */
.hall-card { display: flex; flex-direction: column; height: 100%; }
.hall-card .hall-cap {
  font-family: var(--font-head); font-size: var(--fs-2xl); color: var(--gold); line-height: 1;
}
.hall-card .hall-cap small { font-family: var(--font-body); font-size: var(--fs-sm); color: var(--muted); }
.hall-card h3 { margin: var(--s2) 0 6px; font-size: var(--fs-lg); }
.hall-card p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

/* simple checklist */
.tick { list-style: none; padding: 0; margin: 0; }
.tick li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: var(--fs-sm); }
.tick li::before {
  content: ""; position: absolute; left: 4px; top: 7px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
.tick.tick-light li { color: #e8e5db; }

/* numbered process steps */
.process { counter-reset: pr; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); }
.process .pr {
  counter-increment: pr;
  border-top: 3px solid var(--line); padding-top: var(--s4);
}
.process .pr::before {
  content: counter(pr, decimal-leading-zero);
  font-family: var(--font-head); font-size: var(--fs-xl); color: var(--gold); display: block; line-height: 1;
}
.process .pr h3 { font-size: var(--fs-md); margin: var(--s2) 0 6px; }
.process .pr p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* price note under a table */
.price-note { font-size: var(--fs-xs); color: var(--muted); margin-top: var(--s3); }

/* address box that stands in for the map embed */
.map-box {
  border: 1px dashed var(--line); border-radius: var(--radius);
  background: var(--pale); padding: var(--s6) var(--s5); text-align: center;
}
.map-box .map-pin {
  font-family: var(--font-head); font-size: var(--fs-2xl); color: var(--gold); line-height: 1;
}
.map-box .map-addr { font-size: var(--fs-md); font-weight: 700; color: var(--forest-dark); margin-top: var(--s3); }
.map-box .map-sub { font-size: var(--fs-sm); color: var(--muted); margin-top: 6px; }

/* contact rows */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: var(--s4) 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .cl-key {
  display: block; font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.contact-list .cl-val { font-size: var(--fs-md); font-weight: 700; color: var(--forest-dark); }

/* offer request flow panels */
.flow-panel[hidden] { display: none; }
.flow-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s6); }
.nights-line {
  background: var(--pale); border-radius: var(--radius); padding: var(--s4) var(--s5);
  font-size: var(--fs-sm); margin-bottom: var(--s4);
}
.nights-line strong { font-family: var(--font-head); font-size: var(--fs-lg); color: var(--forest-dark); }
.note-warn {
  background: var(--warn-bg); border-left: 3px solid var(--warn); border-radius: var(--radius);
  padding: var(--s4) var(--s5); font-size: var(--fs-sm); margin-bottom: var(--s4);
}
.confirm-card {
  background: var(--success-bg); border: 1px solid #bcd6bf; border-radius: var(--radius); padding: var(--s6);
}
.confirm-card h3 { font-size: var(--fs-xl); margin-bottom: var(--s3); }
.confirm-card p { font-size: var(--fs-sm); margin-bottom: var(--s2); }
.bg-list { list-style: none; padding: 0; margin: var(--s5) 0 0; }
.bg-list li {
  position: relative; padding-left: 26px; margin-bottom: 8px; font-size: var(--fs-sm); color: var(--muted);
}
.bg-list li::before {
  content: ""; position: absolute; left: 6px; top: 8px;
  width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--gold);
}
.ep-status { font-weight: 700; white-space: nowrap; }
.ep-status.is-free { color: var(--success); }
.ep-status.is-taken { color: var(--danger); }
.ep-wrap { display: grid; grid-template-columns: 640px 1fr; gap: var(--s6); align-items: start; }
@media (max-width: 1080px) { .ep-wrap { grid-template-columns: 1fr; } }
.date-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
@media (max-width: 700px) { .date-grid { grid-template-columns: 1fr; } }

/* gallery lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(21, 31, 23, .92);
  display: flex; align-items: center; justify-content: center; padding: var(--s6);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox .lb-close {
  position: absolute; top: 18px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(253, 252, 249, .4); background: transparent; color: var(--cream);
  font-size: 22px; line-height: 1; cursor: pointer;
}
.lightbox .lb-close:hover { border-color: var(--gold); color: var(--gold-soft); }
.gallery figure { cursor: zoom-in; }

/* single price line inside a card */
.price-line {
  font-family: var(--font-head); font-size: var(--fs-lg); color: var(--gold);
  margin: var(--s3) 0 0;
}

/* the step strip is an ordered list on elerhetosegek.html */
ol.steps { list-style: none; padding: 0; }
