:root{
  /* textová modrá (z nápisu tlačítka) */
  --blue-900:#2A35A8;
  --blue-700:#2A35A8;

  /* tyrkys z tlačítka */
  --blue-500:#00E7D7;

  /* světlé pozadí / linky */
  --bg:#F3FFFE;
  --card:#ffffff;
  --border:#C8F5F1;

  --shadow:0 2px 10px rgba(0,0,0,0.06);
  --radius:14px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial, sans-serif;
  color:#1a1a1a;
  background:linear-gradient(90deg, #E8FFFE 0%, #F3FFFE 100%);
}

/* ================= HERO ================= */

header.hero{
  background:linear-gradient(90deg, #00E7D7 0%, #00EED9 100%);
  padding:70px 20px 78px;
  text-align:center;
  position:relative;
  color:var(--blue-900);
}

header.hero .inner{
  position:relative;
  max-width:1100px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
  border:1px solid rgba(255,255,255,.6);
  backdrop-filter: blur(6px);
}
.logo svg{display:block}
.logo .wordmark{
  font-weight:900;
  letter-spacing:.2px;
  font-size:1.05rem;
  color:var(--blue-900);
}

header.hero h1{
  margin:0;
  font-size:2.2rem;
  font-weight:900;
  color:var(--blue-900);
  text-shadow:0 2px 6px rgba(0,0,0,0.12);
}

header.hero p{
  margin:0;
  font-size:1.05rem;
  max-width:56ch;
  color:var(--blue-900);
  opacity:.95;
}

/* ================= NAV ================= */

nav.topnav{
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:30;
}

nav.topnav .wrap{
  max-width:1100px;
  margin:0 auto;
  padding:12px 20px;
  display:flex;
  justify-content:center;
  gap:26px;
  flex-wrap:wrap;
}

nav.topnav a{
  text-decoration:none;
  color:var(--blue-700);
  font-weight:900;
}
nav.topnav a:hover{filter:brightness(.9)}

.subnav{
  position:sticky;
  top:52px;
  z-index:20;
  background:rgba(243,255,254,.85);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--border);
}

.subnav .wrap{
  max-width:1100px;
  margin:0 auto;
  padding:10px 20px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid var(--border);
  color:var(--blue-700);
  font-weight:900;
  text-decoration:none;
  font-size:.92rem;
}
.pill:hover{filter:brightness(.98)}

/* ================= CONTENT ================= */

.container{
  max-width:1100px;
  margin:40px auto;
  padding:0 20px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}

.section-title{
  margin:0 0 12px;
  color:var(--blue-700);
  display:flex;
  align-items:center;
  gap:10px;
}

.muted{color:#4d6780; font-size:.95rem;}
.small{font-size:.9rem}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:20px;
}

.service-card{
  background:var(--card);
  border-radius:12px;
  box-shadow:0 2px 8px rgba(0,0,0,0.06);
  border-left:5px solid var(--blue-500);
  padding:20px;
}
.service-card h3{
  margin:0 0 8px;
  color:var(--blue-700);
  display:flex;
  align-items:center;
  gap:8px;
}
.service-card p{margin:0}

.category{
  margin-bottom:44px;
  scroll-margin-top:120px;
}
.category h2{
  margin:0 0 14px;
  color:var(--blue-700);
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1.6rem;
}

.checklist{margin:10px 0 0; padding-left:18px;}
.checklist li{margin:6px 0}

.badge{
  display:inline-block;
  font-size:.78rem;
  font-weight:900;
  padding:4px 10px;
  border-radius:999px;
  background:#F0FFFE;
  border:1px solid var(--border);
  color:var(--blue-900);
}

/* ================= BANNER ================= */

.banner{
  max-width:1100px;
  margin:18px auto 0;
  padding:0 20px;
}
.banner .inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  background:#ffffff;
  border:1px solid var(--border);
  border-left:6px solid var(--blue-500);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:14px 16px;
}
.banner strong{color:var(--blue-700)}

.banner button{
  border:1px solid var(--border);
  background:#F7FFFE;
  border-radius:10px;
  padding:6px 10px;
  font-weight:900;
  color:var(--blue-700);
  cursor:pointer;
}
.banner button:hover{filter:brightness(.98)}

/* ================= HOURS ================= */

table.hours{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:12px;
  margin-top:10px;
}

table.hours th,
table.hours td{
  padding:12px 14px;
  text-align:left;
  border-bottom:1px solid var(--border);
}

table.hours tr:last-child th,
table.hours tr:last-child td{border-bottom:none}

table.hours th{
  background:#F0FFFE;
  color:var(--blue-900);
  width:40%;
}

table.hours tr.today th,
table.hours tr.today td{
  background:#E8FFFE;
}

table.hours tr.today th::after{
  content:"Dnes";
  margin-left:10px;
  display:inline-block;
  font-size:.75rem;
  font-weight:900;
  padding:3px 8px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid var(--border);
  color:var(--blue-900);
}

/* ================= MAP ================= */

.map{
  margin-top:14px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  height:360px;
}
.map iframe{width:100%; height:100%; border:0;}

/* ================= FOOTER ================= */

.footer{
  background:#E8FFFE;
  border-top:1px solid var(--border);
  padding:20px;
  text-align:center;
  color:var(--blue-900);
  font-size:.9rem;
  margin-top:40px;
}

/* ================= CALL BAR ================= */

.callbar{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:50;
  padding:10px 12px;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-top:1px solid var(--border);
  display:none;
}

.callbar a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  max-width:520px;
  margin:0 auto;
  padding:12px 14px;
  border-radius:14px;
  background:linear-gradient(90deg, #00E7D7, #00EED9);
  color:white;
  text-decoration:none;
  font-weight:900;
  box-shadow:var(--shadow);
}
.callbar a:active{transform:translateY(1px)}

@media (max-width: 820px){
  .callbar{display:block;}
  body{padding-bottom:74px;}
}
