/* ========= Base ========= */
* { box-sizing: border-box; }
html, body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Oswald', Arial, sans-serif;
  color: #2a2f23;
  background: #ffffff;
}

.page {
  width: 100vw;
  height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 250px minmax(0, 1fr);
  background: #ffffff;
}

/* ========= Image strips ========= */
.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  height: 100%;
}

.tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========= Headline over top images ========= */
.strip-top { position: relative; }

.strip-top .headline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;                /* přesně na spodní okraj horních fotek */
  margin: 0;
  padding: 12px 0;          /* svislé odsazení */
  background: rgba(255,255,255,0.82); /* průhledný bílý pruh přes celou šířku */
  letter-spacing: 0.25em;
  font-size: 30px;
  font-weight: 500;
  color: #2c3f06;
  text-align: center;
  white-space: nowrap;      /* celý text na jeden řádek */
}

/* ========= Center band ========= */
.band {
  position: relative;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 26px 40px 32px;
}

/* Two columns: left CTAs, right paragraph */
.band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

/* Circle CTAs */
.cta-group {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  justify-items: center;
}

.cta {
  --green: #aeb2b1;
  --orange: #ffd469;
  text-decoration: none;
  text-align: center;
  cursor: pointer;              /* ručička */
  transition: color 0.25s ease, background-color 0.25s ease;
}

.cta .dot {
  transition: background-color 0.25s ease;
}

.cta:hover .dot-green { background: #8e9291; }
.cta:hover .dot-orange { background: #ffbd1e; }
.cta:hover .label-green { color: #8e9291; }
.cta:hover .label-orange { color: #ffbd1e; }

.dot {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: inline-block;
}

.dot-green { background: var(--green); }
.dot-orange { background: var(--orange); }

.label {
  display: block;
  margin-top: 14px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.label-green { color: var(--green); }
.label-orange { color: var(--orange); }

/* Right paragraph in the band */
.band-text {
  max-width: 33vw;
  margin-left: auto;
  font-size: 17px;
  line-height: 1.55;
  color: #3c3f34;
}

/* Remove the previous dotted-frame tweak so all bottom photos stay equal size */
/* (intentionally left empty) */

/* ===== Optional responsiveness ===== */
@media (max-width: 1360px) {
  .page { width: 100vw; }
}


/* === Vertical dashed separators between photos === */
.strip .tile { position: relative; }
.strip .tile:nth-child(1)::after,
.strip .tile:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-right: 2px dashed rgba(255,255,255,0.50);
  pointer-events: none;
}

.extra-section {
  min-height: 100vh;          /* každá sekce přes celé okno */
  padding: 60px 10%;
  display: flex;
  align-items: center;
  background: #f7f7f7;
}

.extra-section:nth-of-type(even) {
  background: #e8e8e8;        /* střídání pozadí pro přehlednost */
}


.back-link {
  display: inline-block;
  margin-top: 40px;
  font-size: 18px;
  color: #aeb2b1;
  text-decoration: none;
}

.back-link:visited {
  color: #aeb2b1;   /* stejná barva jako normálně */
}

.back-link:hover {
  color: #8e9291;   /* ztmavne jen při najetí myší */
}
