/* ==============================
   0) HERO IMAGE SOURCE (IMPORTANT)
   ============================== */

/* 1) Otevři svůj původní luggage-storage-prague.css
   2) Najdi .hero { background-image: url(...); }
   3) Zkopíruj tu URL sem, aby zůstala stejná hero fotka */
:root{
  --hero-bg: url("/img/grafika2.png");
  --bg: #0b0b12;
  --card: rgba(255,255,255,0.06);
  --card-strong: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --border: rgba(255,255,255,0.12);
  --accent: #b7ff2a;      /* fresh highlight (tvoje “žlutá/zelená” vibe) */
  --accent2: #7b5cff;     /* purple-ish accent */
  --shadow: 0 18px 60px rgba(0,0,0,0.35);
  --radius: 18px;
  --max: 1080px;
  --font: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: var(--font);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(123,92,255,0.18), transparent 55%),
              radial-gradient(900px 600px at 80% 10%, rgba(183,255,42,0.10), transparent 55%),
              var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* ==============================
   TOPBAR
   ============================== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(10,10,18,0.55);
  border-bottom: 1px solid var(--border);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}
.brand img{
  height: 26px;
  width: auto;
  display:block;
}
.topbar-links{
  display:flex;
  gap: 14px;
  align-items:center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.topbar-links a{
  font-size: 0.95rem;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
}
.topbar-links a:hover{
  background: rgba(255,255,255,0.06);
  color: var(--text);
  text-decoration: none;
}

/* ==============================
   HERO
   ============================== */
.hero{
  position: relative;
  padding: 76px 0 54px;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}
.hero-overlay{
  position:absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 20% 20%, rgba(123,92,255,0.32), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.72));
}
.hero-content{
  position: relative;
  z-index: 1;
}
.hero-card{
  width: min(780px, 100%);
  padding: 22px 22px 18px;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.40);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
}
.eyebrow{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.95rem;
}
h1{
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.hero-subtitle{
  margin: 0 0 16px;
  color: rgba(255,255,255,0.88);
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.5;
}
.hero-cta-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 12px;
}
.hero-badges{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge{
  font-size: 0.88rem;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 10px;
  border-radius: 999px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); text-decoration: none; }
.btn-primary{
  background: linear-gradient(135deg, rgba(183,255,42,0.95), rgba(183,255,42,0.72));
  color: #0b0b12;
  border-color: rgba(0,0,0,0.20);
}
.btn-ghost{
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

/* ==============================
   PAGE + CARDS
   ============================== */
.page{
  padding: 22px 0 38px;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  margin: 14px 0;
}
.card h2{
  margin: 0 0 10px;
  font-size: 1.35rem;
}
.card h3{
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.muted{ color: var(--muted); }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.mini{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px;
}
.mini p{
  margin: 8px 0 10px;
  color: rgba(255,255,255,0.86);
  line-height: 1.55;
}
.mini ul{
  margin: 0;
  padding-left: 16px;
  color: rgba(255,255,255,0.84);
}
.mini li{ margin: 6px 0; }

.checklist{
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.checklist li{
  margin: 8px 0;
  padding-left: 22px;
  position: relative;
  color: rgba(255,255,255,0.86);
  line-height: 1.55;
}
.checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

/* Comparison table */
.table-wrap{ overflow-x: auto; border-radius: 14px; }
.compare{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare th, .compare td{
  text-align: left;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  vertical-align: top;
}
.compare thead th{
  font-size: 0.95rem;
  color: rgba(255,255,255,0.90);
  background: rgba(255,255,255,0.06);
}
.compare tbody td{
  color: rgba(255,255,255,0.86);
}
.compare tbody tr:hover td{
  background: rgba(255,255,255,0.04);
}

/* CTA slab */
.cta-slab{
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(135deg, rgba(123,92,255,0.20), rgba(183,255,42,0.10));
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cta-slab h3{ margin: 0 0 6px; }
.cta-slab p{ margin: 0; color: rgba(255,255,255,0.86); line-height: 1.5; }

/* Related */
.related-list{
  margin: 10px 0 0;
  padding-left: 18px;
}
.related-list li{ margin: 8px 0; }
.related-list a{
  color: rgba(255,255,255,0.90);
  text-decoration: underline;
  text-decoration-color: rgba(183,255,42,0.55);
  text-underline-offset: 3px;
}
.related-list a:hover{
  text-decoration-color: rgba(183,255,42,0.95);
}

/* FAQ */
.faq{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 10px 0;
}
.faq summary{
  cursor: pointer;
  font-weight: 700;
}
.faq p{
  margin: 10px 0 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
}

/* Footer */
.footer{
  margin-top: 18px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 920px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .cta-slab{ flex-direction: column; align-items: flex-start; }
}
