/* vakutyi.com — Matrix #22 — Editorial Newspaper Style */
/* Palette: coffee #3d2b1f | gold-beige #d4a853 | parchment #fdf6e3 */
/* Classes: .navigasyon .baslik .icerik .bolum .altbilgi */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&family=IBM+Plex+Mono:wght@400;500&display=swap');

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

:root {
  --kava: #3d2b1f;
  --zlato: #d4a853;
  --pergamen: #fdf6e3;
  --zlato-svetle: #e8c97a;
  --kava-svetle: #6b4c3b;
  --kava-tmave: #1e1108;
  --text-sedy: #5a4535;
  --linka: #c8a96a;
  --biela: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--pergamen);
  color: var(--kava);
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===================== COOKIE BANNER ===================== */
.cookie-zastor {
  position: fixed;
  inset: 0;
  background: rgba(29, 17, 8, 0.85);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.cookie-panel {
  background: var(--pergamen);
  border-top: 3px solid var(--zlato);
  padding: 32px 40px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.cookie-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--kava-tmave);
  margin-bottom: 8px;
}

.cookie-panel p {
  font-size: 0.875rem;
  color: var(--text-sedy);
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-panel p a {
  color: var(--kava);
  text-decoration: underline;
}

.cookie-tlacidla {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tlacidlo-prijat,
.tlacidlo-odmietnut {
  padding: 10px 28px;
  border: 2px solid var(--kava);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
}

.tlacidlo-prijat {
  background: var(--kava);
  color: var(--pergamen);
}

.tlacidlo-prijat:hover {
  background: var(--kava-tmave);
  border-color: var(--kava-tmave);
}

.tlacidlo-odmietnut {
  background: transparent;
  color: var(--kava);
}

.tlacidlo-odmietnut:hover {
  background: var(--kava);
  color: var(--pergamen);
}

/* ===================== NAVIGASYON ===================== */
.navigasyon {
  background: var(--kava-tmave);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--zlato);
}

.navigasyon__horny-pruh {
  background: var(--kava);
  padding: 6px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navigasyon__datum {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--linka);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navigasyon__kontakt-rychly {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--linka);
  letter-spacing: 0.05em;
}

.navigasyon__kontakt-rychly a {
  color: var(--zlato);
  text-decoration: none;
}

.navigasyon__hlavny {
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

/* Breadcrumb */
.navigasyon__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: rgba(253, 246, 227, 0.5);
  flex: 1;
}

.navigasyon__breadcrumb a {
  color: rgba(253, 246, 227, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.navigasyon__breadcrumb a:hover {
  color: var(--zlato);
}

.navigasyon__breadcrumb-sep {
  margin: 0 6px;
  color: rgba(212, 168, 83, 0.4);
}

.navigasyon__breadcrumb-aktualny {
  color: var(--zlato);
}

/* Logo */
.navigasyon__logo {
  text-align: center;
  flex: 0 0 auto;
  padding: 0 40px;
}

.navigasyon__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navigasyon__logo img {
  height: 36px;
  width: auto;
}

.navigasyon__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pergamen);
  letter-spacing: 0.02em;
}

/* Hamburger */
.navigasyon__hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-end;
}

.navigasyon__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pergamen);
  transition: all 0.3s;
}

.navigasyon__hamburger:hover span {
  background: var(--zlato);
}

/* Fullscreen menu */
.navigasyon__menu-zastor {
  position: fixed;
  inset: 0;
  background: var(--kava-tmave);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.navigasyon__menu-zastor.je-otvoreny {
  opacity: 1;
  pointer-events: all;
}

.navigasyon__menu-zoznam {
  list-style: none;
  text-align: center;
}

.navigasyon__menu-zoznam li {
  margin: 8px 0;
}

.navigasyon__menu-zoznam a {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pergamen);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.navigasyon__menu-zoznam a:hover {
  color: var(--zlato);
}

.navigasyon__menu-zavriet {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--pergamen);
  font-size: 2rem;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  transition: color 0.2s;
}

.navigasyon__menu-zavriet:hover {
  color: var(--zlato);
}

/* ===================== BASLIK (HERO) ===================== */
.baslik {
  background: var(--pergamen);
  padding: 60px 40px 0;
  border-bottom: 3px double var(--linka);
}

.baslik__rubrika {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--zlato);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.baslik__rubrika::before,
.baslik__rubrika::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--zlato);
  flex-shrink: 0;
}

.baslik__h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--kava-tmave);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  max-width: 800px;
}

.baslik__podnadpis {
  font-family: 'Source Serif 4', serif;
  font-size: 1.15rem;
  color: var(--text-sedy);
  font-style: italic;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Horizontal rule editorial */
.ciarovka {
  width: 100%;
  height: 1px;
  background: var(--linka);
  margin: 24px 0;
  border: none;
}

.ciarovka--hruba {
  height: 3px;
  background: var(--kava);
  margin: 32px 0;
}

.ciarovka--dvojita {
  border: none;
  border-top: 3px double var(--linka);
  margin: 32px 0;
}

/* ===================== FORMA ===================== */
.icerik-forma {
  background: var(--kava);
  padding: 48px 40px;
  margin-top: 0;
  border-top: 4px solid var(--zlato);
}

.icerik-forma__wrapper {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.icerik-forma__info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pergamen);
  margin-bottom: 16px;
  font-style: italic;
}

.icerik-forma__info p {
  color: rgba(253, 246, 227, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.icerik-forma__kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icerik-forma__kontakt-riadok {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: var(--zlato);
}

.icerik-forma__kontakt-riadok span:first-child {
  opacity: 0.6;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 50px;
}

.icerik-forma__formular {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icerik-forma__pole {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.icerik-forma__pole label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 246, 227, 0.5);
}

.icerik-forma__pole input,
.icerik-forma__pole select,
.icerik-forma__pole textarea {
  background: rgba(253, 246, 227, 0.06);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--pergamen);
  padding: 12px 16px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.icerik-forma__pole input:focus,
.icerik-forma__pole select:focus,
.icerik-forma__pole textarea:focus {
  border-color: var(--zlato);
}

.icerik-forma__pole input.chyba,
.icerik-forma__pole select.chyba,
.icerik-forma__pole textarea.chyba {
  border-color: #c0392b;
}

.icerik-forma__pole select option {
  background: var(--kava-tmave);
  color: var(--pergamen);
}

.icerik-forma__pole textarea {
  min-height: 90px;
  resize: vertical;
}

.icerik-forma__odoslat {
  background: var(--zlato);
  color: var(--kava-tmave);
  border: none;
  padding: 14px 32px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  align-self: flex-start;
}

.icerik-forma__odoslat:hover {
  background: var(--zlato-svetle);
  transform: translateY(-1px);
}

.icerik-forma__odoslat:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ===================== TOAST ===================== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 16px 24px;
  background: var(--kava-tmave);
  border-left: 4px solid var(--zlato);
  color: var(--pergamen);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  z-index: 9999;
  transform: translateX(200%);
  transition: transform 0.3s;
  max-width: 320px;
}

.toast.je-viditelny {
  transform: translateX(0);
}

.toast--chyba {
  border-left-color: #c0392b;
}

/* ===================== BOLUM (SECTIONS) ===================== */
.bolum {
  padding: 64px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.bolum__nadpis {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--kava-tmave);
  margin-bottom: 8px;
  position: relative;
}

.bolum__podnadpis {
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  color: var(--text-sedy);
  font-style: italic;
  margin-bottom: 32px;
}

/* ===================== DROP CAP ===================== */
.icerik-odstavec:first-of-type::first-letter {
  float: left;
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.8;
  margin: 8px 12px -4px 0;
  color: var(--zlato);
  padding: 4px 2px;
}

.icerik-odstavec {
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--kava);
  margin-bottom: 16px;
}

/* ===================== SLUZBY (NEWSPAPER TWO-COL LIST) ===================== */
.bolum-sluzby {
  background: var(--pergamen);
  border-top: 3px double var(--linka);
  border-bottom: 3px double var(--linka);
  padding: 64px 40px;
}

.bolum-sluzby__wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.bolum-sluzby__header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--linka);
}

.bolum-sluzby__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--kava-tmave);
  margin-bottom: 6px;
}

.bolum-sluzby__header p {
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  color: var(--text-sedy);
  font-style: italic;
}

/* Two-column newspaper list */
.bolum-sluzby__stlpce {
  columns: 2;
  column-gap: 48px;
  column-rule: 1px solid var(--linka);
}

.bolum-sluzby__polozka {
  break-inside: avoid;
  padding: 20px 0;
  border-bottom: 1px solid rgba(200, 169, 106, 0.3);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bolum-sluzby__polozka:last-child {
  border-bottom: none;
}

.bolum-sluzby__cislo {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  color: var(--zlato);
  letter-spacing: 0.1em;
  padding-top: 4px;
  flex-shrink: 0;
  min-width: 24px;
}

.bolum-sluzby__text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--kava-tmave);
  margin-bottom: 4px;
}

.bolum-sluzby__text p {
  font-size: 0.875rem;
  color: var(--text-sedy);
  line-height: 1.55;
}

/* ===================== METRIKY ===================== */
.bolum-metriky {
  background: var(--kava-tmave);
  padding: 64px 40px;
  border-top: 4px solid var(--zlato);
  border-bottom: 4px solid var(--zlato);
}

.bolum-metriky__wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212, 168, 83, 0.2);
}

.bolum-metriky__polozka {
  background: var(--kava-tmave);
  padding: 40px 32px;
  text-align: center;
}

.bolum-metriky__cislo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--zlato);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.bolum-metriky__popis {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 246, 227, 0.5);
  line-height: 1.4;
}

/* ===================== ČASOVÁ OSA (TIMELINE RANGE) ===================== */
.bolum-casova-osa {
  background: var(--pergamen);
  padding: 64px 40px;
  border-bottom: 3px double var(--linka);
}

.bolum-casova-osa__wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.bolum-casova-osa__header {
  margin-bottom: 40px;
}

.bolum-casova-osa__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--kava-tmave);
  margin-bottom: 8px;
}

.bolum-casova-osa__header p {
  color: var(--text-sedy);
  font-style: italic;
  font-size: 0.95rem;
}

.casova-osa__etapy {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.casova-osa__etapa-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-sedy);
  text-align: center;
  flex: 1;
}

.casova-osa__etapa-label.je-aktivna {
  color: var(--zlato);
  font-weight: 500;
}

.casova-osa__slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(212, 168, 83, 0.2);
  outline: none;
  margin-bottom: 40px;
  cursor: pointer;
  border-radius: 0;
}

.casova-osa__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--zlato);
  cursor: pointer;
  border: 3px solid var(--kava-tmave);
  border-radius: 0;
  box-shadow: 0 0 0 2px var(--zlato);
}

.casova-osa__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--zlato);
  cursor: pointer;
  border: 3px solid var(--kava-tmave);
  border-radius: 0;
}

.casova-osa__obsah {
  background: var(--kava);
  padding: 32px 36px;
  border-left: 4px solid var(--zlato);
  min-height: 160px;
  transition: opacity 0.25s;
}

.casova-osa__obsah.je-aktualizovany {
  opacity: 0.3;
}

.casova-osa__obsah h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--pergamen);
  margin-bottom: 12px;
}

.casova-osa__obsah p {
  color: rgba(253, 246, 227, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
}

.casova-osa__obsah ul {
  list-style: none;
  margin-top: 12px;
}

.casova-osa__obsah ul li {
  color: rgba(253, 246, 227, 0.75);
  font-size: 0.9rem;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.casova-osa__obsah ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--zlato);
}

/* ===================== LETISKA (AIRPORTS) ===================== */
.bolum-letiska {
  background: var(--kava-tmave);
  padding: 64px 40px;
}

.bolum-letiska__wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.bolum-letiska__wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--pergamen);
  margin-bottom: 8px;
}

.bolum-letiska__wrapper > p {
  color: rgba(253, 246, 227, 0.6);
  font-style: italic;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.bolum-letiska__sietka {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212, 168, 83, 0.15);
}

.letisko-karta {
  background: rgba(61, 43, 31, 0.6);
  padding: 32px;
  border-bottom: none;
  transition: background 0.2s;
}

.letisko-karta:hover {
  background: rgba(61, 43, 31, 0.9);
}

.letisko-karta__kod {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2rem;
  font-weight: 500;
  color: var(--zlato);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.letisko-karta__nazov {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--pergamen);
  margin-bottom: 6px;
}

.letisko-karta__popis {
  font-size: 0.85rem;
  color: rgba(253, 246, 227, 0.5);
  line-height: 1.5;
}

/* ===================== OBRAZKY ===================== */
.bolum-obrazok {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(200, 169, 106, 0.2);
}

.bolum-obrazok--velky {
  height: 420px;
}

/* ===================== CTA ===================== */
.cta-pruzok {
  background: var(--zlato);
  padding: 40px 40px;
  text-align: center;
}

.cta-pruzok h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--kava-tmave);
  margin-bottom: 8px;
  font-style: italic;
}

.cta-pruzok p {
  color: var(--kava);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.cta-pruzok a {
  display: inline-block;
  background: var(--kava-tmave);
  color: var(--pergamen);
  padding: 14px 36px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-pruzok a:hover {
  background: var(--kava);
  transform: translateY(-2px);
}

/* ===================== ALTBILGI (FOOTER) ===================== */
.altbilgi {
  background: var(--kava-tmave);
  color: rgba(253, 246, 227, 0.6);
  padding: 48px 40px 24px;
  border-top: 4px solid var(--zlato);
}

.altbilgi__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}

.altbilgi__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.altbilgi__brand img {
  height: 32px;
  width: auto;
}

.altbilgi__brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--pergamen);
  font-weight: 700;
}

.altbilgi__popis {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(253, 246, 227, 0.5);
  max-width: 260px;
}

.altbilgi__kolona h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--zlato);
  margin-bottom: 16px;
}

.altbilgi__kolona ul {
  list-style: none;
}

.altbilgi__kolona ul li {
  margin-bottom: 8px;
}

.altbilgi__kolona ul li a {
  color: rgba(253, 246, 227, 0.55);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.altbilgi__kolona ul li a:hover {
  color: var(--zlato);
}

.altbilgi__spodok {
  max-width: 1100px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.altbilgi__copyright {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(253, 246, 227, 0.35);
}

.altbilgi__pravne-linky {
  display: flex;
  gap: 20px;
}

.altbilgi__pravne-linky a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: rgba(253, 246, 227, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.altbilgi__pravne-linky a:hover {
  color: var(--zlato);
}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-baslik {
  background: var(--kava-tmave);
  padding: 60px 40px;
  border-bottom: 4px solid var(--zlato);
}

.page-baslik__wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.page-baslik__rubrika {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--zlato);
  margin-bottom: 12px;
  opacity: 0.7;
}

.page-baslik h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--pergamen);
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 16px;
}

.page-baslik p {
  color: rgba(253, 246, 227, 0.65);
  font-style: italic;
  font-size: 1rem;
  max-width: 560px;
}

/* ===================== TLACIDLA (BUTTONS) ===================== */
.tlacidlo-hlavne {
  display: inline-block;
  background: var(--zlato);
  color: var(--kava-tmave);
  padding: 14px 36px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.tlacidlo-hlavne:hover {
  background: var(--zlato-svetle);
  transform: translateY(-2px);
}

.tlacidlo-sekundarno {
  display: inline-block;
  background: transparent;
  color: var(--kava-tmave);
  padding: 14px 36px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--kava-tmave);
  cursor: pointer;
  transition: all 0.2s;
}

.tlacidlo-sekundarno:hover {
  background: var(--kava-tmave);
  color: var(--pergamen);
}

/* ===================== LEGAL PAGES ===================== */
.legal-obsah {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 40px;
}

.legal-obsah h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--kava-tmave);
  margin: 40px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--linka);
}

.legal-obsah h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.legal-obsah p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--kava);
  margin-bottom: 12px;
}

.legal-obsah ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-obsah ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--kava);
  line-height: 1.6;
}

/* Cookie table */
.cookie-tabulka {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.875rem;
}

.cookie-tabulka th {
  background: var(--kava);
  color: var(--pergamen);
  padding: 10px 14px;
  text-align: left;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.cookie-tabulka td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(200, 169, 106, 0.2);
  color: var(--kava);
  vertical-align: top;
  line-height: 1.5;
}

.cookie-tabulka tr:last-child td {
  border-bottom: none;
}

/* ===================== CONTACT PAGE ===================== */
.kontakt-sietka {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 40px;
}

.kontakt-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--kava-tmave);
  margin-bottom: 24px;
}

.kontakt-info-polozka {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(200, 169, 106, 0.3);
}

.kontakt-info-polozka:last-child {
  border-bottom: none;
}

.kontakt-info-polozka h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--zlato);
  margin-bottom: 6px;
}

.kontakt-info-polozka p,
.kontakt-info-polozka a {
  font-size: 1rem;
  color: var(--kava);
  text-decoration: none;
  line-height: 1.6;
}

.kontakt-info-polozka a:hover {
  color: var(--zlato);
  text-decoration: underline;
}

.kontakt-formular h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--kava-tmave);
  margin-bottom: 24px;
}

.kontakt-formular .icerik-forma__formular {
  /* reuse existing form styles on white bg */
}

.kontakt-formular .icerik-forma__pole label {
  color: var(--text-sedy);
}

.kontakt-formular .icerik-forma__pole input,
.kontakt-formular .icerik-forma__pole select,
.kontakt-formular .icerik-forma__pole textarea {
  background: var(--pergamen);
  border: 1px solid rgba(61, 43, 31, 0.2);
  color: var(--kava-tmave);
}

.kontakt-formular .icerik-forma__pole input:focus,
.kontakt-formular .icerik-forma__pole select:focus,
.kontakt-formular .icerik-forma__pole textarea:focus {
  border-color: var(--zlato);
}

.kontakt-formular .icerik-forma__odoslat {
  width: 100%;
  text-align: center;
}

/* ===================== 404 ===================== */
.strana-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}

.strana-404__cislo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  color: rgba(212, 168, 83, 0.15);
  line-height: 1;
  display: block;
  margin-bottom: -20px;
}

.strana-404 h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--kava-tmave);
  margin-bottom: 16px;
}

.strana-404 p {
  color: var(--text-sedy);
  font-style: italic;
  margin-bottom: 32px;
  max-width: 400px;
}

/* ===================== UTILITY ===================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .navigasyon__horny-pruh {
    padding: 6px 20px;
  }

  .navigasyon__hlavny {
    padding: 0 20px;
  }

  .baslik {
    padding: 40px 20px 0;
  }

  .bolum {
    padding: 48px 20px;
  }

  .bolum-sluzby {
    padding: 48px 20px;
  }

  .bolum-sluzby__stlpce {
    columns: 1;
    column-rule: none;
  }

  .bolum-metriky__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .icerik-forma__wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .icerik-forma {
    padding: 40px 20px;
  }

  .altbilgi {
    padding: 40px 20px 20px;
  }

  .altbilgi__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .bolum-letiska {
    padding: 48px 20px;
  }

  .bolum-letiska__sietka {
    grid-template-columns: 1fr;
  }

  .legal-obsah {
    padding: 40px 20px;
  }

  .kontakt-sietka {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .bolum-casova-osa {
    padding: 48px 20px;
  }

  .cta-pruzok {
    padding: 40px 20px;
  }

  .page-baslik {
    padding: 40px 20px;
  }

  .navigasyon__menu-zoznam a {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .altbilgi__grid {
    grid-template-columns: 1fr;
  }

  .bolum-metriky__wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .casova-osa__etapy {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
