:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --card:#f8fafc;
  --line:#e2e8f0;
  --brand:#b91c1c; /* flame red */
  --brand-2:#f97316; /* flame orange */
  --link:#b91c1c;
  --link-hover:#7f1d1d;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
  --radius: 16px;
  --max: 1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%; height:auto; display:block}
a{color:var(--link); text-decoration:none}
a:hover{color:var(--link-hover); text-decoration:underline}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.skip{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#fff; border:1px solid var(--line); border-radius:10px; z-index:1000}
.topbar{
  background: linear-gradient(90deg, rgba(185,28,28,1), rgba(249,115,22,1));
  color:#fff;
  font-size:14px;
}
.topbar a{color:#fff; text-decoration:underline}
.topbar .row{display:flex; gap:14px; align-items:center; justify-content:space-between; padding:8px 0}
.topbar .meta{display:flex; gap:14px; flex-wrap:wrap; align-items:center}
.badge{display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.14); padding:6px 10px; border-radius:999px}
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(140%) blur(8px);
  border-bottom:1px solid var(--line);
}
.header .row{display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; gap:14px;
  position: relative; /* dôležité pre absolutne menu */}
.brand{display:flex; align-items:center; gap:12px; min-width:220px}
.brand img{width:44px; height:44px; border-radius:10px; background:#fff; border:1px solid var(--line)}
.brand .name{font-weight:800; line-height:1.1}
.brand .sub{font-size:12px; color:var(--muted)}
.brand-text .name {
  font-weight: 600;
  font-size: 1rem;
}

.brand-text .sub {
  font-size: .85rem;
  color:var(--muted)
}
.nav{display:flex; align-items:center; gap:16px; flex-wrap:nowrap; justify-content:flex-end}
.nav a{font-weight:650; padding:10px 10px; border-radius:12px}
.nav a[aria-current="page"]{background:var(--card); border:1px solid var(--line); text-decoration:none}
.cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  background:var(--brand);
  color:#fff; font-weight:800; border:1px solid rgba(0,0,0,.04);
  box-shadow: var(--shadow);
}
.cta:hover{background:#991b1b; color:#fff; text-decoration:none}
.hero{
  padding:38px 0 26px;
  background:
    radial-gradient(800px 280px at 15% 10%, rgba(249,115,22,.20), transparent 60%),
    radial-gradient(900px 300px at 90% 0%, rgba(185,28,28,.16), transparent 55%),
    linear-gradient(#fff, #fff);
}
.grid2{display:grid; grid-template-columns: 1.2fr .8fr; gap:24px; align-items:center}
@media (max-width: 920px){ .grid2{grid-template-columns:1fr} .nav{justify-content:flex-start} .brand{min-width:unset}}
.kicker{display:inline-flex; align-items:center; gap:8px; font-weight:700; color:var(--brand); background:rgba(185,28,28,.07); border:1px solid rgba(185,28,28,.14); padding:6px 10px; border-radius:999px}
.h1{font-size:42px; line-height:1.12; margin:12px 0 10px; letter-spacing:-0.02em}
@media (max-width: 520px){ .h1{font-size:34px} }
.lead{font-size:18px; color:var(--muted); margin:0 0 16px}
.heroCard{
  background: #fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCard .inner{padding:18px}
.heroCard .mini{font-size:14px; color:var(--muted)}
.heroCard .row{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.pill{display:inline-flex; align-items:center; gap:8px; padding:8px 10px; border-radius:999px; background:var(--card); border:1px solid var(--line); font-weight:650; font-size:14px}
.section{padding:34px 0}
.section.alt{background:var(--card); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.h2{font-size:28px; margin:0 0 12px; letter-spacing:-0.01em}
.h3{font-size:20px; margin:0 0 10px}
.cards{display:grid; grid-template-columns: repeat(2, 1fr); gap:16px}
@media (max-width: 920px){ .cards{grid-template-columns:1fr} }
.card{
  background:#fef1e7; border:1px solid var(--line);
  border-radius: var(--radius); padding:16px;
  box-shadow: 0 12px 30px rgba(2,6,23,.04);
}
.icon{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(249,115,22,.12);
  border:1px solid rgba(249,115,22,.25);
  margin-bottom:10px;
}
.small{color:var(--text); font-size:14px}
.list{margin:10px 0 0; padding-left:18px}
.list li{margin:6px 0}
.split{display:grid; grid-template-columns:1fr 1fr; gap:18px}
@media (max-width: 920px){ .split{grid-template-columns:1fr} }
.form{
  background:#fef1e7; border:1px solid var(--line);
  border-radius: var(--radius); padding:16px;
  box-shadow: var(--shadow);
}
label{display:block; font-weight:700; margin:10px 0 6px}
input, select, textarea{
  width:100%; padding:12px 12px; border-radius:12px;
  border:1px solid var(--line); background:#fff; font:inherit;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus, select:focus{outline:3px solid rgba(249,115,22,.25); border-color: rgba(249,115,22,.55)}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 680px){ .row2{grid-template-columns:1fr} }
.form .actions{display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin-top:12px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  border:1px solid var(--line);
  background: var(--card);
  font-weight:800; cursor:pointer;
}
.btn.primary{background:var(--brand); color:#fff; border-color:rgba(0,0,0,.05)}
.btn.primary:hover{background:#991b1b}
.note{font-size:13px; color:var(--muted)}
.footer{
  background:#0b1220; color:#e5e7eb;
  padding:34px 0 20px;
}
.footer a{color:#fff; text-decoration:underline}
.footer .grid{display:grid; grid-template-columns:1.2fr .8fr .8fr; gap:18px}
@media (max-width: 920px){ .footer .grid{grid-template-columns:1fr} }
.footer .muted{color:#cbd5e1; font-size:14px}
.hr{height:1px; background:rgba(226,232,240,.18); margin:18px 0}
.kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background:rgba(255,255,255,.12); padding:2px 8px; border-radius:999px; border:1px solid rgba(255,255,255,.2)
}
.breadcrumbs{font-size:13px; color:var(--muted); margin:14px 0 0}
.breadcrumbs a{color:var(--muted); text-decoration:underline}
.table{width:100%; border-collapse:collapse; border:1px solid var(--line); border-radius:14px; overflow:hidden}
.table th,.table td{padding:12px; border-bottom:1px solid var(--line); text-align:left}
.table th{background:var(--card)}
.faq details{border:1px solid var(--line); border-radius:14px; padding:12px 14px; background:#fff}
.faq details + details{margin-top:10px}
.faq summary{cursor:pointer; font-weight:800}
.notice{padding:12px 14px; border-radius:14px; border:1px solid rgba(249,115,22,.35); background: rgba(249,115,22,.10)}
.contact-lines .line{
  display:flex;
  align-items:center;
  gap:.5rem;
  margin:.2rem 0;
}

.contact-lines .ico{
  display:inline-flex;
  width:18px;
  height:18px;
  flex:0 0 18px;
  line-height:0;
}

.contact-lines a{
  text-decoration:none;
}

.contact-lines a:hover{
  text-decoration:underline;
}

.nav .cta {
  background: #c62828;
  color: #fff;
  padding: .5rem .9rem;
  border-radius: 6px;
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #222;
  border-radius: 2px;
}
/* Partneri blok */
.partneri{
  margin-top: 8px;
}

.partneri-title{
  margin-bottom: 10px;
  font-weight: 700;
}

.partneri-logos{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.partneri-logos img{
  background:#fff;
  border-radius:12px;
  padding:6px;
  border:1px solid rgba(226,232,240,.35);
  height:60px;       /* jednotná výška */
  width:auto;        /* zachová pomer */
  max-width:120px;   /* aby neboli príliš veľké */
}

.badge-fb{
  background:#1877F2;   /* facebook modrá */
  color:#fff;
}

.badge-fb a{
  color:#fff;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
}

.badge-fb svg{
  display:block;
}

/* Mobil: aby logá nešli mimo */
@media (max-width: 520px){
  .partneri-logos img{
    height:52px;
    max-width:110px;
  }
}
.grid2-hero{
  grid-template-columns: 1.1fr .9fr;
}

/* MOBILE */
@media (max-width: 920px) {
  .header .row { position: relative; } /* dôležité */
  .grid2-hero{
    grid-template-columns: 1fr; /* formulár pôjde pod text */
  }
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    flex-direction: column;
    width: 100%;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
    display: none;
    z-index: 60;
  }

  .nav.open { display: flex; }

  .nav-toggle { display: flex; }

  .brand-text .name { font-size: .9rem; }
  .brand-text .sub  { font-size: .75rem; }
}
.card-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fef1e7;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* menší obrázok */
.card-photo img {
  width: 100%;
  /*height: 50%; */          /* ← zmenšená výška */
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .2s ease;
}

/* textová „bublina“ pod obrázkom */
.card-body {
  background: #fef1e7;
  padding: 16px 0 0 0;
}

.card-body .h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.card-body .small {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Social icons in topbar */
.topbar .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.social-links{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}

.social-links a{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.22);
  border-radius:10px;
  text-decoration:none;
  color:inherit;
}

.social-links a:hover{
  transform: translateY(-1px);
}

.social-links svg{
  width:18px;
  height:18px;
  fill: currentColor;
}

/* na mobile nech sa to nezlomí do chaosu */
@media (max-width: 780px){
  .topbar .row{ flex-direction:column; align-items:flex-start; }
  .social-links{ margin-top:8px; }
}

.gReviewsHead{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:12px}
.gRating{font-weight:900}
.gActions{display:flex;gap:10px;flex-wrap:wrap}
.gReviewsGrid{display:grid;gap:14px;grid-template-columns:repeat(3,minmax(0,1fr))}
.gReview{border:1px solid rgba(0,0,0,.12);border-radius:14px;padding:14px;background:#fff}
.gReview .who{display:flex;justify-content:space-between;gap:10px;align-items:center}
.gReview .stars{font-weight:800}
@media (max-width: 900px){.gReviewsGrid{grid-template-columns:1fr}}


.card-photo img:hover {
  transform: scale(1.03);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 9999;
  padding: 20px;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  box-shadow: 0 0 40px rgba(0,0,0,.8);
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}


