/* ===========================================================
   NežKlikneš – Styles
   -----------------------------------------------------------
   DŮLEŽITÉ:
   - Pozadí sekcí: nastavuj per sekci v HTML přes --bg-image
   - Překryv (aby text byl čitelný): nastavuj per sekci přes --overlay (0..1)
   =========================================================== */

:root{
  --bg: #000000;
  --fg: #e6e6e6;
  --muted: rgba(230,230,230,.70);

  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.35);

  --pink: #ff2da8;         /* hover + active menu */
  --pinkLight: #ff79d0;    /* světlejší část brandu */

  --header-h: 72px;
  --max: 1080px;
  --radius: 18px;
  --fade-dur: 700ms;
}

::selection {
  background: #af0098; /* pozadí výběru */
  color: #ffffff;      /* barva textu ve výběru */
}

/* base */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--fg);
  line-height: 1.4;
  font-size: 1.2rem; 
}
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

/* header */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(11,15,20,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  max-width: var(--max);
  margin:0 auto;
  height:100%;
  padding: 0 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

/* brand */
.brand{
  display:inline-flex;
  align-items:baseline;
  gap:0;
  font-weight: 950;
  letter-spacing:.02em;
  white-space:nowrap;
  font-size: 18px;
  user-select:none;
}
.brand-light{ color: var(--pinkLight); }
.brand-dark{
  color: var(--pink);
  text-shadow: 0 0 14px rgba(255,45,168,.35);
}

/* nav */
.nav-desktop{
  display:flex;
  align-items:center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.nav-link{
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(230,230,230,.80);
  font-weight: 500;
  font-size: 0.95rem;
  white-space:nowrap;
  transition: color 160ms ease, text-shadow 160ms ease, background 160ms ease, outline 160ms ease;
  text-decoration:none;
}
.nav-link:hover{
  color: var(--pink);
  text-shadow: 0 0 14px rgba(255,45,168,.65);
}
.nav-link.active{
  color: var(--pink);
  text-shadow: 0 0 16px rgba(255,45,168,.75);
  background: rgba(255,45,168,.08);
  outline: 1px solid rgba(255,45,168,.22);
}

/* burger + mobile drawer */
.burger{
  display:none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--fg);
  padding: 10px 12px;
  border-radius: 12px;
  cursor:pointer;
}
.burger:active{ transform: translateY(1px); }

.mobile-drawer{
  position: fixed;
  top: var(--header-h);
  left:0; right:0;
  background: rgba(11,15,20,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.mobile-nav{
  max-width: var(--max);
  margin:0 auto;
  padding: 10px 12px 14px;
  display:grid;
  gap: 6px;
}
.mobile-nav .nav-link{
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-weight: 700;
}

/* layout */
main{ padding-top: var(--header-h); }
.section{
  position: relative;
  min-height: 92vh;
  padding: 72px 18px;
  scroll-margin-top: var(--header-h); /* Opraveno: odstraněno +14px */
  display:flex;
  align-items:center;
  --bg-image: none;
  --overlay: 0.30;
}

.wrap{
  width:100%;
  max-width: var(--max);
  margin:0 auto;
  position: relative;
  z-index: 2;
}

/* ===========================================================
   Fixní pozadí s cross-fade mezi sekcemi
   =========================================================== */
#bgStage{
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
}
.bg-layer{
  position: absolute;
  inset: 0;
  background-image: var(--bg-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(.98) contrast(1.05);
  opacity: 0;
  will-change: opacity;
  transition: opacity 180ms linear;
}
.bg-layer::after{
  /* per-layer overlay, aby každý obrázek měl svou tmavou vrstvu */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--overlay, 0));
}

/* Staré per-sekci obrázky schovat – pozadí teď řeší #bgStage */
.section-bg,
.section-overlay{
  display: none;
}

/* Reveal animace – teď už jen pro obsah, pozadí řeší #bgStage */
.reveal .wrap {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.reveal.visible .wrap {
  opacity: 1;
  transform: translateY(0);
}

/* hero canvas */
.hero{ overflow:hidden; }
.hero-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:-1;
  opacity: .70;
  pointer-events:none;
}

.center{ text-align:center; }
h1,h2{ margin:0 0 10px; line-height:1.12; }
h1{ font-size: clamp(44px, 6vw, 72px); letter-spacing:.02em; }
h2{ font-size: clamp(26px, 3.4vw, 40px); letter-spacing:.02em; }

.lead{
  font-size: clamp(16px, 2vw, 18px);
  color: var(--muted);
  max-width: 78ch;
  margin: 0 auto;
}
.lead:empty{ display: none; }

/* spacing helpers */
.mt-14{ margin-top: 14px; }
.mt-22{ margin-top: 22px; }

/* cards */
.grid-2{
  display:grid;
  gap: 14px;
  grid-template-columns: 1.2fr .8fr;
  align-items:start;
}
.card{
  background: rgb(0 0 0 / 25%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
  text-align: justify;
}
.card h3{
  margin:0 0 8px;
  font-size: 1.4rem;
  letter-spacing:.02em;
  color: rgba(255,255,255,.92);
}
.card p{ margin: 10px 0 0; color: rgba(255,255,255,.78); }
.card ul{ margin: 10px 0 0; padding-left: 18px; color: rgba(255,255,255,.78); }
.help-list a{ text-decoration: underline; text-decoration-color: rgba(255,255,255,.28); }
.help-list a:hover{ text-decoration-color: rgba(255,45,168,.80); }
.note{
  margin:12px 0 0;
  font-size:13px;
  color: rgba(255,255,255,.68);
}

/* posters grid */
.flyers{
  display:grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}
.flyer{
  appearance:none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  overflow:hidden;
  cursor:pointer;
  padding:0;
  text-align:left;
  transition: transform 180ms ease, filter 180ms ease;
}
.flyer:hover{
  transform: scale(1.04);
  filter: brightness(1.04);
}
.flyer img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
}
.flyer .cap{
  padding: 10px 10px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,.92);
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(11,15,20,.55);
}

/* lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display:none;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.lightbox.open{ display:flex; }
.lb-inner{
  width: min(1100px, 96vw);
  //background: rgba(15,20,28,.86);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}
.lb-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  gap: 10px;
}
.lb-title{
  font-weight: 900;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space:nowrap;
}
.lb-actions{
  display:flex;
  gap:8px;
  align-items:center;
}
.iconbtn{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--fg);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
  cursor:pointer;
}
.iconbtn:active{ transform: translateY(1px); }
.lb-body{
  position:relative;
  background: rgba(0,0,0,.25);
}
.lb-body img{
  width:100%;
  height: min(78vh, 760px);
  object-fit: contain;
  display:block;
}
.lb-nav{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content: space-between;
  pointer-events:none;
  padding: 0 10px;
}
.lb-nav button{ pointer-events:auto; opacity:.92; }
.lb-foot{
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.lb-meta{
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

/* partners */
.logos{
  display:grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
.logo{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,1);
  padding: 18px;
  min-height: 100px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
  text-decoration: none;
}
.logo:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,45,168,.15);
  text-decoration: none;
}
.logo img{
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  filter: brightness(1.05);
  opacity: .92;
  transition: opacity 180ms ease;
}
.logo:hover img{
  opacity: 1;
}

/* footer */
.site-footer{
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 14px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap:wrap;
}

/* responsive */
@media (max-width: 980px){
  .grid-2{ grid-template-columns: 1fr; }
  .flyers{ grid-template-columns: repeat(3, 1fr); }
  .logos{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px){
  :root{ --header-h: 64px; }
  .section{ padding: 62px 14px; }
  .nav-desktop{ display:none; }
  .burger{ display:inline-flex; }
  .flyers{ grid-template-columns: repeat(2, 1fr); }
  .logos{ grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal .wrap { transition:none; transform:none; opacity: 1; }
  .bg-layer{ transition:none; }
  .flyer{ transition:none; }
  .flyer:hover{ transform:none; }
  .card{ transition:none; }
  .card:hover{ transform:none; }
}

/* ===========================================================
   Add-ons: CTA, scroll hint, problem hub, tone improvements
   =========================================================== */

.burger{ gap: 8px; align-items:center; }
.burger-txt{ font-weight: 900; font-size: 14px; }

.hero-cta{
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap: wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  text-decoration:none;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease, outline 160ms ease;
}
.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
  text-decoration:none;
}
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: rgba(255,45,168,.14);
  outline: 1px solid rgba(255,45,168,.25);
}
.btn-warn{
  background: rgba(255,255,255,.10);
  outline: 1px solid rgba(255,255,255,.18);
}
.btn-ghost{
  background: rgba(0,0,0,.22);
}

.scroll-hint{
  position:absolute;
  left:50%;
  bottom: 18px;
  transform: translateX(-50%);
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  text-decoration:none;
  color: rgba(255,255,255,.86);
}
.scroll-hint:hover{ text-decoration:none; }
.scroll-hint__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 0 18px rgba(255,255,255,.25);
  animation: pulse 1.4s ease-in-out infinite;
}
.scroll-hint__text{ font-size: 13px; font-weight: 850; }

@keyframes pulse{
  0%,100%{ transform: translateY(0); opacity:.85; }
  50%{ transform: translateY(-4px); opacity:1; }
}

/* Make cards more readable */
.card{
  background: rgb(0 0 0 / 72%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.10);
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.card:hover{
  transform: scale(1.015);
  background: rgb(0 0 0 / 78%);
  border-color: rgba(255,45,168,.32);
  box-shadow: 0 14px 40px rgba(0,0,0,.55), 0 0 0 1px rgba(255,45,168,.12);
}
.card p, .card ul, .card ol{ color: rgba(230,230,230,.78); }
.card p:empty{ display: none; }
.steps{ margin: 10px 0 0; padding-left: 18px; }
.steps li{ margin: 8px 0; }

/* Problem hub */
.problem-grid{
  display:grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
.problem-card{
  display:block;
  padding: 16px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  text-decoration:none;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.problem-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,45,168,.28);
  background: rgba(255,45,168,.08);
  text-decoration:none;
}
.problem-card--accent{
  outline: 1px solid rgba(255,45,168,.25);
}
.problem-title{
  font-weight: 700;
  letter-spacing:.01em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.problem-icon{
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--pink);
  filter: drop-shadow(0 0 6px rgba(255,45,168,.35));
}
.problem-icon svg{
  width: 100%;
  height: 100%;
  display: block;
}
.problem-desc{
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.35;
}

/* Good vs bad comms */
.goodbad{ display:grid; grid-template-columns: 1fr; gap: 10px; }
.goodbad .tag{
  display:inline-flex;
  align-items:center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  margin-bottom: 6px;
}
.goodbad .bad{ border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 12px; background: rgba(0,0,0,.20); }
.goodbad .good{ border: 1px solid rgba(255,45,168,.20); border-radius: 14px; padding: 12px; background: rgba(255,45,168,.07); }

/* Callouts */
.callout{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  border-radius: 14px;
  padding: 12px;
}
.callout-title{ font-weight: 950; margin-bottom: 6px; }

/* Responsive */
@media (max-width: 980px){
  .problem-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  body{ font-size: 1.1rem; }
  .scroll-hint{ bottom: 12px; }
  .problem-grid{ grid-template-columns: 1fr; }
}


/* ===========================================================
   FINAL MOBILE HEADER + HERO BUTTON FIXES
   =========================================================== */

/* ---------- QUICK HELP SAME HEIGHT AS BURGER ---------- */
@media (max-width: 720px){

  .header-inner{
    align-items: center;
  }

  .burger{
    height: 44px;
    padding: 0 14px;
  }

  .quick-help{
    height: 44px;
    padding: 0 12px;
    border-radius: 12px;
  }

  .qh-ico{
    width: 28px;
    height: 28px;
    border-radius: 10px;
  }

  .qh-txt{
    font-size: 11px;
  }

  /* ---------- HERO BUTTONS FULL WIDTH & IDENTICAL ---------- */

  .hero-wrap{
    align-items: stretch;
  }

  .hero-cta{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
  }

  .hero-cta .btn{
    width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box;
    padding: 18px 18px;
    font-size: 1.3rem;
    border-radius: 20px;
    font-weight: 700;
  }

.lead{
font-size: 1.7rem;
}


  /* ---------- REMOVE SCROLL HINT ON MOBILE (NO OVERLAP) ---------- */
  .scroll-hint{
    display: none !important;
  }

  /* ---------- BIGGER MOBILE HEADLINE ---------- */
  .hero-headline{
    font-size: 64px;
    line-height: 1.02;
    max-width: 14ch;
  }

}

/* ---------- DESKTOP: SCROLL HINT BELOW BUTTONS ---------- */

@media (min-width: 721px){

  .scroll-hint{
    position: static;
    margin-top: 16px;
  }

  .hero-cta{
    justify-content: center;
  }

  .hero-cta .btn{
    width: 300px;
  }

}


/* ===========================================================
   Cookie banner (informativní)
   =========================================================== */
.cookie-banner{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3000;
  background: rgba(11,15,20,.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.45);
  animation: cookieSlideIn 360ms ease-out;
}
.cookie-banner[hidden]{ display: none; }

.cookie-banner__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cookie-banner__text{
  flex: 1;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.45;
}
.cookie-banner__text strong{
  color: #fff;
}

.cookie-banner__ok{
  flex-shrink: 0;
  white-space: nowrap;
  padding: 10px 18px;
  cursor: pointer;
}

@keyframes cookieSlideIn{
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px){
  .cookie-banner__inner{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    text-align: center;
  }
  .cookie-banner__ok{
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce){
  .cookie-banner{ animation: none; }
}


/* ===========================================================
   Links list (Odkazy na další zajímavé weby)
   =========================================================== */
.links-list{
  text-align: center;
}
.links-list h3{
  text-align: center;
}
.links-list__items{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.links-list__items li{
  margin: 10px 0;
  font-size: 1.05rem;
}
.links-list__items a{
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: rgba(255,45,168,.35);
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.links-list__items a:hover{
  color: var(--pink);
  text-decoration-color: var(--pink);
}


/* ===========================================================
   Card icons – ikony vedle h3 v podsekcích C1–C6
   =========================================================== */
.card h3{
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-icon{
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--pink);
  filter: drop-shadow(0 0 8px rgba(255,45,168,.35));
}
.card-icon svg{
  width: 100%;
  height: 100%;
  display: block;
}

/* Na links-list (v Partnerech) nechceme flex, jen normální text */
.links-list h3{
  display: block;
}

/* Na mobilu – ikona vycentrovaná nad nadpisem, nadpis zarovnaný vlevo */
@media (max-width: 720px){
  .card h3{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    text-align: left;
  }
  .card-icon{
    width: 54px;
    height: 54px;
    align-self: center;
  }
  /* Výjimka: v sekci odkazů v Partnerech nadpis i na mobilu zůstává centrovaný */
  .links-list h3{
    text-align: center;
  }
}


/* ===========================================================
   Desktop dropdown menu (Řeším problém → podsekce)
   =========================================================== */
.nav-item.has-dropdown{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-link--parent{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-caret{
  width: 14px;
  height: 14px;
  transition: transform 220ms ease;
}

.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret{
  transform: rotate(180deg);
}

.nav-dropdown{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -8px);
  min-width: 280px;
  padding: 8px;
  margin-top: 8px;
  background: rgba(11, 15, 20, .95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 45, 168, .08);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  z-index: 1001;
}

/* Neviditelný "most" mezi parent tlačítkem a dropdownem, ať hover nepřeskočí */
.nav-dropdown::before{
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown__link{
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(230, 230, 230, .85);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.nav-dropdown__link:hover,
.nav-dropdown__link:focus-visible{
  background: rgba(255, 45, 168, .12);
  color: var(--pink);
  text-decoration: none;
  outline: none;
}

.nav-dropdown__link.active{
  background: rgba(255, 45, 168, .10);
  color: var(--pink);
}

/* Dropdown se v mobilním drawer NIKDY neukazuje (drawer má vlastní strukturu) */
@media (max-width: 720px){
  .has-dropdown{ display: none; }
}


/* ===========================================================
   Hero podnadpis (zvláštní styl vs. běžný .lead)
   =========================================================== */
.hero-lead{
  color: rgba(255, 255, 255, .92);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 400;
  margin-top: 14px;
  max-width: 60ch;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .65);
}

@media (max-width: 720px){
  .hero-lead{
    font-size: 18px;
    max-width: 28ch;
    margin-top: 10px;
  }
}
