/* =====================================================
   SAGITTA — tlaciaren-kosice.sk
   Dizajnový systém — svetlý, biely, pozitívny
   Inšpirácia: akcnitisk.cz, printnet.sk
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --blue:        #3b9edd;
  --blue-dark:   #2a7db8;
  --blue-light:  #e8f4fc;
  --blue-mid:    #c2e0f4;
  --white:       #ffffff;
  --bg:          #f5f8fb;
  --text:        #2d3748;
  --text-light:  #718096;
  --border:      #e2e8f0;
  --cta:        #3b9edd;   /* = rovnaká modrá, pre CTA tlačidlá */
  --cta-dark:   #2a7db8;
  --font-heading: 'Nunito', 'Segoe UI', sans-serif;
  --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow:     0 3px 14px rgba(59,158,221,0.12);
  --shadow-lg:  0 8px 30px rgba(59,158,221,0.16);
  --container:  1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-dark); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--cta); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--text);
  font-weight: 700;
}
h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

/* PROMO BAR */
.promo-bar {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.promo-bar a { color: var(--white); font-weight: 700; text-decoration: underline; }

/* HEADER */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--blue-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(59,158,221,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { height: 42px; width: auto; }
.site-logo-text { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: var(--text); line-height: 1.15; }
.site-logo-text span { display: block; font-size: 0.68rem; font-family: var(--font-body); font-weight: 500; color: var(--blue); letter-spacing: 0.06em; text-transform: uppercase; }

/* NAVIGÁCIA */
.main-nav { display: flex; align-items: center; gap: 0.15rem; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { background: var(--blue-light); color: var(--blue-dark); }

.main-nav .has-dropdown > a::after { content: ' ▾'; font-size: 0.68rem; opacity: 0.55; transition: transform 0.2s; display: inline-block; }
.main-nav .has-dropdown.open > a::after { transform: rotate(180deg); }

/* Podmenu — otvára sa kliknutím (nie hoverom) */
.main-nav .has-dropdown { position: relative; }

.main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--blue);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 0.35rem 0;
  z-index: 200;
  max-height: 70vh;
  overflow-y: auto;
}
.main-nav .has-dropdown.open .dropdown { display: block; }
.main-nav .dropdown li a {
  display: block;
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.main-nav .dropdown li a:hover { background: var(--blue-light); color: var(--blue-dark); }
/* ZRUŠIŤ hover otváranie — len klik */

.nav-cta {
  background: var(--cta) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  border-radius: var(--radius) !important;
  padding: 0.48rem 1.1rem !important;
}
.nav-cta:hover { background: var(--cta-dark) !important; color: var(--white) !important; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 2rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(59,158,221,0.12);
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 0.6rem 0; font-size: 0.95rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--bg); }
.mobile-nav a:hover { color: var(--blue-dark); }
/* MOBILE NAV — rozbaľovacie podmenu */
.mobile-nav-close {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-body);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  margin-bottom: 0.5rem;
  text-align: left;
}

.mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  padding: 0.6rem 0;
  cursor: pointer;
  text-align: left;
}

.mobile-toggle .toggle-arrow {
  font-size: 0.75rem;
  transition: transform 0.2s;
  color: var(--blue);
}

.mobile-toggle.open .toggle-arrow {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  padding-left: 0.75rem;
  border-left: 3px solid var(--blue-mid);
  margin-bottom: 0.25rem;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu a {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0;
}



/* MAIN */
main { min-height: 60vh; }

/* PAGE HERO */
.page-hero {
  background: var(--blue-light);
  border-bottom: 2px solid var(--blue-mid);
  padding: 2.5rem 0 2rem;
}
.page-hero h1 { color: var(--text); margin-bottom: 0.4rem; }
.page-hero h1 span { color: var(--blue-dark); }
.page-hero p { color: var(--text-light); font-size: 1.05rem; max-width: 580px; }
.page-content { padding: 2.5rem 0 4rem; }

/* HERO HOMEPAGE */
.hero {
  background: linear-gradient(135deg, #e8f4fc 0%, #f0f8ff 60%, #ffffff 100%);
  border-bottom: 1px solid var(--blue-mid);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(59,158,221,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 620px; }
.hero-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  border: 1px solid var(--blue-mid);
  border-radius: 20px;
  padding: 0.25rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero h1 { color: var(--text); margin-bottom: 0.85rem; }
.hero h1 strong { color: var(--blue-dark); }
.hero p { color: var(--text-light); font-size: 1.08rem; margin-bottom: 1.75rem; max-width: 520px; }

/* TLAČIDLÁ */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.18s;
  line-height: 1.4;
}
.btn-primary { background: var(--cta); color: var(--white); border-color: var(--cta); }
.btn-primary:hover { background: var(--cta-dark); border-color: var(--cta-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(59,158,221,0.30); }
.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline-blue { background: transparent; color: var(--blue-dark); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue-light); color: var(--blue-dark); }
.btn-sm { padding: 0.42rem 0.95rem; font-size: 0.85rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* INFO STRIPE */
.info-stripe {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.info-stripe-inner { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.info-fact { padding: 0.75rem 1rem; border-right: 1px solid var(--border); }
.info-fact:last-child { border-right: none; }
.info-fact .ikona { font-size: 1.6rem; margin-bottom: 0.35rem; }
.info-fact strong { display: block; font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: var(--blue-dark); }
.info-fact span { font-size: 0.82rem; color: var(--text-light); }

/* SEKCIE */
.section { padding: 3.5rem 0; }
.section-blue { background: var(--blue-light); border-top: 1px solid var(--blue-mid); border-bottom: 1px solid var(--blue-mid); }
.section-bg { background: var(--bg); }

.section-title { margin-bottom: 2.5rem; }
.section-title h2 { margin-bottom: 0.4rem; }
.section-title p { color: var(--text-light); max-width: 560px; font-size: 1.02rem; }
.section-title.center { text-align: center; }
.section-title.center p { margin: 0 auto; }
.section-title h2::after { content: ''; display: block; width: 44px; height: 3px; background: var(--blue); border-radius: 3px; margin-top: 0.55rem; }
.section-title.center h2::after { margin-left: auto; margin-right: auto; }

/* KARTY */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1.1rem; }
.cards-grid-3 { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--blue-mid); }
.card-accent { border-top: 3px solid var(--blue); }
.card-icon { font-size: 2.2rem; margin-bottom: 0.75rem; display: block; }
.card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.card p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1rem; }
.card .btn { width: 100%; text-align: center; }

.card-img { padding: 0; overflow: hidden; }
.card-img .card-thumb { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: var(--bg); padding: 0.5rem; }
.card-img .card-body { padding: 1rem 1.2rem 1.2rem; }

/* BADGE */
.badge { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.badge-blue { background: var(--blue-light); color: var(--blue-dark); border: 1px solid var(--blue-mid); }
.badge-accent { background: var(--blue-light); color: var(--blue-dark); border: 1px solid var(--blue-mid); }

/* GALÉRIA POZVÁNOK */
.galeria-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 1rem; }

.galeria-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.galeria-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--blue-mid); }

.galeria-img-wrap { position: relative; cursor: pointer; background: var(--bg); overflow: hidden; }
.galeria-img-wrap img { width: 100%; height: 200px; object-fit: contain; background: var(--bg); padding: 6px; transition: transform 0.25s; }
.galeria-item:hover .galeria-img-wrap img { transform: scale(1.05); }

.galeria-zoom-hint {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(59,158,221,0.82);
  color: var(--white);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.galeria-item:hover .galeria-zoom-hint { opacity: 1; }

.galeria-caption { padding: 0.6rem 0.75rem 0.8rem; border-top: 1px solid var(--border); }
.galeria-caption .cislo { font-size: 0.76rem; color: var(--text-light); display: block; margin-bottom: 0.4rem; }
.galeria-caption .btn { width: 100%; text-align: center; font-size: 0.82rem; padding: 0.44rem 0.5rem; }

/* STRÁNKOVANIE */
.pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.3rem; margin-top: 2.5rem; }
.pagination a, .pagination span { display: inline-block; min-width: 36px; height: 36px; line-height: 34px; text-align: center; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; color: var(--text); padding: 0 0.4rem; transition: all 0.15s; }
.pagination a:hover { background: var(--blue-light); color: var(--blue-dark); border-color: var(--blue-mid); }
.pagination span.active { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* LIGHTBOX */
#lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(15,25,40,0.94); z-index: 1000; align-items: center; justify-content: center; }
#lightbox-overlay.open { display: flex; }
#lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-lg); box-shadow: 0 12px 50px rgba(0,0,0,0.5); }
#lightbox-caption { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.85); font-size: 0.9rem; background: rgba(59,158,221,0.3); padding: 0.35rem 1.1rem; border-radius: 20px; white-space: nowrap; }
.lb-btn { position: absolute; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 1.6rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.lb-btn:hover { background: rgba(59,158,221,0.4); }
#lb-close { top: 1.25rem; right: 1.25rem; font-size: 1.2rem; }
#lb-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
#lb-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* CENY */
.ceny-box { background: var(--blue-light); border: 1px solid var(--blue-mid); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.ceny-box h3 { color: var(--blue-dark); margin-bottom: 1rem; font-size: 1.05rem; }
.ceny-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.ceny-table th { background: var(--blue); color: var(--white); padding: 0.6rem 0.9rem; text-align: left; font-weight: 700; font-size: 0.84rem; }
.ceny-table td { padding: 0.6rem 0.9rem; border-bottom: 1px solid var(--border); background: var(--white); }
.ceny-table tr:last-child td { border-bottom: none; }
.ceny-highlight { color: var(--blue-dark); font-weight: 700; }

/* FORMULÁRE */
.form-wrap { max-width: 680px; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.form-group label .req { color: var(--cta); margin-left: 2px; }
.form-control { width: 100%; padding: 0.6rem 0.9rem; font-family: var(--font-body); font-size: 0.95rem; color: var(--text); background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); transition: border-color 0.15s, box-shadow 0.15s; appearance: none; }
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,158,221,0.15); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.81rem; color: var(--text-light); margin-top: 0.2rem; }
.form-result { display: none; padding: 0.85rem 1.1rem; border-radius: var(--radius); font-size: 0.93rem; margin-top: 0.85rem; }
.form-result.ok  { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-result.err { background: #fff3f3; color: #c62828; border: 1px solid #ffcdd2; }
.hp-field { display: none !important; }

/* KROKY */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.step { text-align: center; padding: 1.5rem 1rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; background: var(--blue-light); color: var(--blue-dark); font-size: 1.3rem; font-family: var(--font-heading); font-weight: 800; margin: 0 auto 0.85rem; border: 2px solid var(--blue-mid); }
.step h4 { margin-bottom: 0.3rem; }
.step p { font-size: 0.855rem; color: var(--text-light); }

/* KONTAKT */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.kontakt-info-box { background: var(--blue-light); border: 1px solid var(--blue-mid); border-radius: var(--radius-lg); padding: 1.75rem; }
.kontakt-riadok { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.85rem; font-size: 0.95rem; }
.kontakt-riadok .ikona { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.mapa-placeholder { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); height: 280px; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 0.875rem; text-align: center; }

/* PÄTIČKA — svetlá */
.site-footer { background: var(--bg); border-top: 2px solid var(--blue-mid); padding: 1.5rem 0 0; margin-top: 4rem; font-size: 0.82rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.4fr; gap: 2rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--border); align-items: start; }

/* Vľavo */
.logo-text-footer { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.logo-text-footer span { display: block; font-size: 0.65rem; font-family: var(--font-body); font-weight: 500; color: var(--blue); letter-spacing: 0.06em; text-transform: uppercase; }
.footer-popis { font-size: 0.8rem; margin-top: 0.5rem; color: var(--text-light); line-height: 1.5; }
.footer-tech-list { margin-top: 0.6rem; display: flex; flex-direction: column; gap: 0.15rem; }
.footer-tech-list a { font-size: 0.75rem; color: var(--text-light); transition: color 0.15s; }
.footer-tech-list a:hover { color: var(--blue-dark); }

/* Stred */
.footer-col-center { padding-top: 0.15rem; }
.footer-col-center ul { list-style: none; }
.footer-col-center ul li { margin-bottom: 0.3rem; }
.footer-col-center ul li a { font-size: 0.82rem; color: var(--text-light); transition: color 0.15s; }
.footer-col-center ul li a:hover { color: var(--blue-dark); }

/* Vpravo */
.footer-col-right { padding-top: 0.15rem; }
.footer-firma { font-size: 0.8rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.footer-adresa { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.5rem; line-height: 1.5; }
.footer-kontakt-riadok { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.35rem; line-height: 1.5; }
.footer-kontakt-riadok a { color: var(--text-light); transition: color 0.15s; }
.footer-kontakt-riadok a:hover { color: var(--blue-dark); }

/* Spodný pás — špecializované weby */
.footer-weby {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.75rem;
}
.footer-weby-label { font-size: 0.72rem; color: var(--text-light); font-weight: 600; margin-right: 0.25rem; white-space: nowrap; }
.footer-weby a { font-size: 0.72rem; color: var(--blue-dark); transition: color 0.15s; }
.footer-weby a:hover { color: var(--blue); }

.footer-bottom { padding: 0.65rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.4rem; font-size: 0.75rem; color: var(--text-light); }
.footer-bottom a { color: var(--text-light); transition: color 0.15s; }
.footer-bottom a:hover { color: var(--blue-dark); }

/* PLACEHOLDER */
.img-placeholder { background: var(--blue-light); border: 2px dashed var(--blue-mid); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--blue-dark); font-size: 0.85rem; text-align: center; padding: 2rem; gap: 0.4rem; }

/* BREADCRUMB */
.breadcrumb { font-size: 0.82rem; color: var(--text-light); padding: 0.75rem 0; margin-bottom: 1.75rem; display: flex; align-items: center; gap: 0.3rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--blue-dark); }
.breadcrumb a:hover { color: var(--cta); }
.breadcrumb .sep { color: var(--border); }

/* HIGHLIGHT BOX */
.highlight-box { background: var(--blue-light); border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.25rem; margin: 1.5rem 0; }

/* POMOCNÉ */
.text-center { text-align: center; }
.text-muted  { color: var(--text-light); }
.text-blue   { color: var(--blue-dark); }
.text-cta { color: var(--cta); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

/* RESPONZÍVNOSŤ */
@media (max-width: 960px) {
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .steps-grid   { grid-template-columns: repeat(2, 1fr); }
  .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .main-nav  { display: none; }
  .hamburger { display: flex; }
  .info-stripe-inner { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .info-fact { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 520px) {
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }
  #lb-prev { left: 0.4rem; }
  #lb-next { right: 0.4rem; }
}
