/* ============================================================
   RYBÁŘSKÝ RÁJ TOUŠEŇ — hlavní CSS v2.0
   Upravujte hodnoty v :root pro rychlou změnu barev a fontů.
   ============================================================ */

/* ─── DESIGN TOKENY — editujte zde ─── */
:root {
  --blue-lightest: #e8f4fd;   /* pozadí stránky */
  --blue-pale:     #d0e9f8;   /* alternativní sekce, bordery */
  --blue-light:    #bde0f5;   /* akcenty, hover prvky */
  --blue-mid:      #5aabdc;   /* hover stavy */
  --blue-main:     #2086c0;   /* hlavní akční barva, tlačítka */
  --blue-dark:     #125b8b;   /* navigace, bannery */
  --blue-darker:   #0a3d5e;   /* footer, loader, tmavé plochy */
  --page-bg:       #e8f4fd;   /* světle modrá — pozadí stránky */
  --card-bg:       #ffffff;
  --card-alt:      #d0e9f8;
  --catch-bg:      #c8dff0;   /* odlišující modrá pro úlovky */

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', sans-serif;

  --radius:        12px;
  --radius-sm:     8px;
  --shadow:        0 4px 24px rgba(32,134,192,0.13);
  --shadow-hover:  0 10px 36px rgba(32,134,192,0.25);
  --transition:    0.32s cubic-bezier(0.4,0,0.2,1);

  /* Maximální šířka obsahu — omezení na velkých monitorech */
  --site-max-width: 1140px;
  --content-max:    900px;
}

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

body {
  font-family: var(--font-body);
  background: var(--page-bg);
  color: var(--blue-darker);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── OMEZENÍ ŠÍŘKY — globální obal ─── */
.site-outer {
  max-width: var(--site-max-width);
  margin: 0 auto;
  background: var(--page-bg);
  box-shadow: 0 0 60px rgba(10,61,94,0.08);
}

.site-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── LOADER ─── */
#tousen-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--blue-darker);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#tousen-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-fish { font-size: 56px; animation: fishSwim 1.2s ease-in-out infinite alternate; display: block; }
@keyframes fishSwim {
  from { transform: translateX(-20px) rotate(-6deg); }
  to   { transform: translateX(20px) rotate(6deg); }
}
.loader-title {
  color: var(--blue-light);
  font-family: var(--font-display);
  font-size: 22px; margin-top: 18px;
}
.loader-sub {
  color: rgba(255,255,255,0.5);
  font-size: 13px; letter-spacing: 2px; margin-top: 6px;
}
.loader-bar {
  width: 180px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px; margin-top: 20px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; background: var(--blue-mid);
  border-radius: 2px; animation: loadFill 2s ease forwards;
}
@keyframes loadFill { from { width: 0; } to { width: 100%; } }

/* ─── POČASÍ SIDEBAR ─── */
#weather-sidebar {
  position: fixed;
  right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 300;
  background: var(--blue-dark);
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 14px 8px 10px;
  box-shadow: -3px 0 18px rgba(10,61,94,0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}
#weather-sidebar:hover {
  transform: translateY(-50%) translateX(-5px);
  box-shadow: -6px 0 24px rgba(10,61,94,0.38);
}
#weather-sidebar .ws-label {
  color: rgba(255,255,255,0.55);
  font-size: 10px; text-align: center;
  letter-spacing: 1px; margin-bottom: 8px; display: block;
}
@media(max-width: 640px) { #weather-sidebar { display: none !important; } }

/* ─── NAVIGACE ─── */
/*
 * Navigace je vždy stejně široká jako hero (plná šířka site-outer = max 1140px).
 * Položky menu nikdy nepřeskočí na druhý řádek — při nedostatku místa
 * se zmenší font a padding, teprve pod 900px se přepne na hamburger.
 */
#site-nav {
  position: fixed; top: 0; z-index: 500;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--site-max-width));
  background: rgba(10,61,94,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(189,224,245,0.18);
  min-height: 62px;
  display: flex; align-items: center;
  padding: 0 clamp(14px, 2vw, 28px);
  transition: background var(--transition);
  flex-wrap: nowrap;
  gap: clamp(8px, 1.2vw, 18px);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.45vw, 18px); color: #fff;
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
  margin-right: clamp(8px, 1vw, 16px);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  line-height: 1.1;
}
.nav-logo-accent { color: var(--blue-light); }

/* Nav-links roztáhne zbývající místo, nikdy nezalamuje */
.nav-links {
    display:flex;
    align-items:center;
    gap: clamp(4px, 0.8vw, 12px);
    flex-wrap:nowrap;
    flex: 1 1 auto;
    min-width: 0;
    justify-content:flex-end;
}
.nav-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.82);
  font-size: clamp(11px, 1vw, 13px); font-family: var(--font-body);
  padding: 7px clamp(6px, 0.9vw, 11px); border-radius: 20px;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; display: inline-flex; align-items: center;
  white-space: nowrap;
  flex: 0 1 auto;
  min-width: 0;
  line-height: 1.15;
  text-align: center;
}
.nav-btn:hover { background: rgba(255,255,255,0.13); color: #fff; }
.nav-tel {
  color: var(--blue-light); font-weight: 500; font-size: clamp(11px, 1vw, 13px);
  text-decoration: none; margin-left: clamp(4px, 0.7vw, 8px); padding: 7px clamp(10px, 1vw, 14px);
  border: 1px solid rgba(189,224,245,0.38); border-radius: 20px;
  transition: all var(--transition);
  white-space: nowrap; flex: 0 0 auto;
  line-height: 1.15;
}
.nav-tel:hover { background: rgba(189,224,245,0.14); }

/* hamburger */
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px;
  padding: 4px; margin-left: auto; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 23px; height: 2px;
  background: #fff; border-radius: 2px; transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

#mobile-menu {
  display: none;
  position: fixed; top: 62px; z-index: 498;
  left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--site-max-width);
  background: var(--blue-darker);
  padding: 14px 24px 18px;
  flex-direction: column; gap: 4px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
#mobile-menu.open { display: flex; animation: slideDown 0.3s ease; }
@keyframes slideDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
#mobile-menu .nav-btn {
  color: rgba(255,255,255,0.88);
  padding: 11px 14px; border-radius: var(--radius-sm); font-size: 15px;
}

/* Hamburger se zobrazí jen na menších obrazovkách */
@media(max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ─── HERO ─── */
/*
 * Výška hero je PEVNÁ — 540px na všech rozlišeních.
 * Obrázek ryby je viditelný celý díky background-size: contain.
 * Na mobilu se výška sníží na 380px.
 */
.hero-section {
  height: clamp(360px, 38vw, 540px);
  min-height: unset;
  max-height: unset;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1cm 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 1cm;
  right: 0;
  bottom: 1cm;
  left: 0;
  background-image: url('https://www.tousen-ryby.cz/wp-content/themes/tousen10/images/header.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: transparent;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.03); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,61,94,0.90) 0%,
    rgba(10,61,94,0.74) 35%,
    rgba(10,61,94,0.18) 65%,
    rgba(10,61,94,0.0) 100%
  );
}

/* .hero-wave odstraněn — bez zaoblení spodní hrany */

.hero-content {
  position: relative; z-index: 2;
  max-width: 560px;
  opacity: 0;
  animation: heroIn 1s ease 2.1s forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(90,171,220,0.22);
  border: 1px solid rgba(189,224,245,0.45);
  color: var(--blue-light);
  font-size: 12px; padding: 5px 15px;
  border-radius: 20px; margin-bottom: 18px; letter-spacing: 0.5px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; animation: blink 1.6s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 56px);
  color: #fff; line-height: 1.1; margin-bottom: 12px;
}
.hero-title em { color: var(--blue-light); font-style: normal; }
.hero-subtitle {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px; line-height: 1.65;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── TLAČÍTKA ─── */
.btn-primary {
  background: var(--blue-main); color: #fff; border: none;
  padding: 13px 28px; border-radius: 30px;
  font-size: 15px; font-family: var(--font-body);
  cursor: pointer; transition: all var(--transition);
  font-weight: 500;
  box-shadow: 0 4px 18px rgba(32,134,192,0.42);
  text-decoration: none; display: inline-block;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(32,134,192,0.52);
}
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.52);
  padding: 13px 28px; border-radius: 30px;
  font-size: 15px; font-family: var(--font-body);
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; display: inline-block;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue-main); color: #fff; border: none;
  padding: 10px 22px; border-radius: 24px;
  font-size: 14px; font-family: var(--font-body);
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; display: inline-block;
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent; color: var(--blue-main);
  border: 1px solid var(--blue-mid);
  padding: 10px 22px; border-radius: 24px;
  font-size: 14px; font-family: var(--font-body);
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; display: inline-block;
}
.btn-ghost:hover { background: var(--blue-pale); }

/* ─── ALERT ─── */
.alert-bar {
  background: var(--blue-darker);
  color: rgba(255,255,255,0.88);
  padding: 13px 40px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; flex-wrap: wrap;
}
.alert-bar strong { color: var(--blue-light); }

/* ─── INFORMACE SEKCE ─── */
.info-section {
  background: var(--blue-main);
  padding: 0 0 36px;
  position: relative; overflow: hidden;
}
.info-section::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.info-section .sec-title { color: #fff; margin-bottom: 6px; }
.info-section .sec-label {
  color: var(--blue-light); font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 500;
}
.info-text {
  color: rgba(255,255,255,0.88);
  font-size: 15px; line-height: 1.82;
}

/* ─── SECTION LABELS ─── */
.sec-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--blue-main); margin-bottom: 8px;
}
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--blue-darker); margin-bottom: 22px;
}

/* ─── KARTY (rychlý přehled) ─── */
.top-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--card-bg);
  border-bottom: 1px solid var(--blue-pale);
}
.top-card {
  padding: 26px 26px 22px;
  border-right: 1px solid var(--blue-pale);
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease, background var(--transition);
}
.top-card:last-child { border-right: none; }
.top-card.visible { opacity: 1; transform: translateY(0); }
.top-card:hover { background: var(--blue-lightest); }
.card-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 14px;
}
.card-title { font-size: 14px; font-weight: 500; color: var(--blue-darker); margin-bottom: 7px; }
.card-text { font-size: 13px; color: var(--blue-dark); line-height: 1.65; }
.card-link {
  display: inline-block; margin-top: 12px;
  font-size: 13px; color: var(--blue-main);
  cursor: pointer; background: none; border: none;
  font-family: var(--font-body); padding: 0;
  text-decoration: none; transition: color var(--transition);
}
.card-link:hover { color: var(--blue-darker); }

/* ─── INFO GRID (ceník + řád) ─── */
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--card-bg);
  border-bottom: 1px solid var(--blue-pale);
}
.info-block { padding: 32px 28px; }
.info-block:first-child { border-right: 1px solid var(--blue-pale); }
.block-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--blue-main); margin-bottom: 18px;
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--blue-pale);
  opacity: 0; transform: translateX(-12px);
  transition: all 0.4s ease;
}
.price-row:last-of-type { border-bottom: none; }
.price-row.visible { opacity: 1; transform: translateX(0); }
.price-name { font-size: 13.5px; color: var(--blue-darker); }
.price-val { font-size: 14px; font-weight: 500; color: var(--blue-dark); }
.price-highlight { color: var(--blue-main); }
.rule-item {
  display: flex; gap: 11px;
  margin-bottom: 14px; align-items: flex-start;
  opacity: 0; transform: translateX(12px);
  transition: all 0.4s ease;
}
.rule-item.visible { opacity: 1; transform: translateX(0); }
.rule-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-main); margin-top: 7px; flex-shrink: 0;
}
.rule-text { font-size: 13.5px; color: var(--blue-darker); line-height: 1.65; }

/* ─── MAPA SEKCE ─── */
.map-section {
  padding: 40px 0;
  background: var(--blue-lightest);
  border-bottom: 1px solid var(--blue-pale);
}
.map-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--blue-light);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  transition: box-shadow var(--transition);
  cursor: pointer;
  aspect-ratio: 16 / 9;
}
.map-img-wrap:hover { box-shadow: var(--shadow-hover); }
.map-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.map-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

/* ─── HOTEL BANNER ─── */
/* Hotel Jizera banner — odkaz je zakomentován, odkomentujte pro aktivaci */
.hotel-banner {
  margin-top: 22px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-darker) 100%);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hotel-banner:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.hotel-icon { font-size: 36px; flex-shrink: 0; }
.hotel-text { flex: 1; }
.hotel-name { color: var(--blue-light); font-family: var(--font-display); font-size: 18px; margin-bottom: 4px; }
.hotel-desc { color: rgba(255,255,255,0.72); font-size: 13.5px; line-height: 1.55; }
.hotel-arrow { color: var(--blue-light); font-size: 22px; flex-shrink: 0; }

/* ─── KAMEROVÝ SYSTÉM ─── */
.camera-section {
  padding: 40px 0;
  background: var(--card-bg);
  border-bottom: 1px solid var(--blue-pale);
}
.camera-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.camera-img-box {
  flex-shrink: 0; width: 110px; height: 110px;
  display: flex; align-items: center; justify-content: center;
  background: var(--page-bg); border-radius: var(--radius);
  border: 2px dashed var(--blue-light);
}
.camera-img-box img { width: 90px; height: 90px; object-fit: contain; }
/* Ikona kamery jako SVG — viditelná jako obrázek kamery */
.camera-svg-icon {
  width: 72px; height: 72px;
  fill: none; stroke: var(--blue-main); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.camera-info { flex: 1; min-width: 220px; }
.camera-tag {
  display: inline-block; background: var(--blue-dark); color: #fff;
  font-size: 11px; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 10px; text-transform: uppercase;
}
.camera-title {
  font-family: var(--font-display); font-size: 20px;
  color: var(--blue-darker); margin-bottom: 8px;
}
.camera-desc { font-size: 14px; color: var(--blue-dark); line-height: 1.65; }
.camera-btns { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* Video tlačítko */
.video-link-wrap {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--blue-main); font-size: 14px; font-weight: 500;
  text-decoration: none; padding: 8px 0;
  transition: color var(--transition);
}
.video-link-wrap:hover { color: var(--blue-darker); }
.video-play-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-main);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform var(--transition), background var(--transition);
}
.video-link-wrap:hover .video-play-icon { transform: scale(1.1); background: var(--blue-dark); }
.video-play-icon::after { content: '▶'; font-size: 12px; color: #fff; margin-left: 2px; }

/* ─── VAŠE ÚLOVKY ─── */
.catch-section {
  padding: 40px 0;
  background: var(--catch-bg);
  border-bottom: 1px solid var(--blue-light);
}
.catch-section .sec-title { color: var(--blue-darker); }

/*
 * Mřížka úlovků:
 * – 3 položky: zaplní celý řádek (repeat 3, 1fr)
 * – 2 položky: první vlevo, druhá uprostřed → použijeme flex s justify
 * – 1 položka: uprostřed
 * Řešení: flex místo grid, šířka karet je fixní třetina.
 */
.catch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
  justify-content: center;  /* 1 nebo 2 karty se centrují */
}
.catch-card {
  /* každá karta zabírá třetinu šířky mínus mezery */
  flex: 0 0 calc(33.333% - 12px);
  max-width: calc(33.333% - 12px);
  background: var(--card-bg);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
/* 3 karty — zarovnání na začátek (vyplní celý řádek) */
.catch-grid.catch-count-3 { justify-content: flex-start; }

.catch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.catch-img-wrap {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
}
.catch-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.catch-card:hover .catch-img-wrap img { transform: scale(1.04); }
.catch-no-img {
  color: var(--blue-mid); font-size: 13px; text-align: center; padding: 20px;
}
.catch-meta { padding: 14px 16px; background: var(--blue-dark); }
.catch-meta p { color: rgba(255,255,255,0.88); font-size: 13px; line-height: 1.75; }
.catch-meta span { color: var(--blue-light); font-weight: 500; }

/* Prázdná buňka — skrytá (nezobrazuje se jako placeholder) */
.catch-empty { display: none; }

/* ─── KONTAKT ─── */
.contact-bar {
  background: var(--blue-dark);
  padding: 22px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.contact-tel {
  font-size: 22px; font-weight: 500; color: #fff;
  display: block; text-decoration: none;
}
.contact-tel:hover { color: var(--blue-light); }
.contact-sub { font-size: 12px; color: rgba(255,255,255,0.58); margin-top: 3px; }
.contact-links { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.contact-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 7px 16px; border-radius: 20px; font-size: 13px;
  text-decoration: none; transition: all var(--transition); display: inline-block;
}
.contact-pill:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--blue-darker);
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-copy a {
  color: #e05252;            /* MICHALHORSKY — červeně */
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-copy a:hover { color: #f87171; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-link {
  font-size: 12px; color: rgba(255,255,255,0.5);
  text-decoration: none; cursor: pointer;
  transition: color var(--transition);
  background: none; border: none; font-family: var(--font-body);
}
.footer-link:hover { color: rgba(255,255,255,0.88); }

/* ─── MODÁLNÍ OKNA ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: rgba(10,61,94,0.72);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.active { display: flex; animation: overlayIn 0.3s ease; }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--card-bg); border-radius: var(--radius);
  max-width: 800px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(10,61,94,0.4);
  animation: modalIn 0.35s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.93) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  background: var(--blue-main); padding: 20px 26px;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 1;
}
.modal-title { color: #fff; font-family: var(--font-display); font-size: 20px; }
.modal-close {
  background: rgba(255,255,255,0.18); border: none; color: #fff;
  width: 34px; height: 34px; border-radius: 50%; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition); flex-shrink: 0;
}
.modal-close:hover { background: rgba(255,255,255,0.32); }
.modal-body { padding: 26px 28px; }
.modal-body img { width: 100%; border-radius: var(--radius-sm); display: block; }
.modal-body p, .modal-body li {
  font-size: 14.5px; color: var(--blue-darker); line-height: 1.8; margin-bottom: 8px;
}
.modal-body h3 { color: var(--blue-dark); font-size: 16px; margin: 16px 0 8px; }
.modal-placeholder {
  background: var(--blue-lightest); border: 2px dashed var(--blue-light);
  border-radius: var(--radius-sm); padding: 28px 24px;
  text-align: center; color: var(--blue-dark); font-size: 14px;
}

/* mapa modal */
.map-iframe-wrap { border-radius: var(--radius-sm); overflow: hidden; }
.map-iframe-wrap iframe { width: 100%; height: 440px; border: none; display: block; }

/* ─── ANIMACE PŘI SCROLLU ─── */
.fade-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */


@media (max-width: 1200px) {
  #site-nav {
    padding: 0 16px;
  }
  .nav-logo {
    font-size: 15px;
  }
  .nav-links {
    gap: 4px;
  }
  .nav-btn,
  .nav-tel {
    font-size: 11px;
  }
}

@media (max-width: 1100px) {
  .hero-section {
    height: clamp(340px, 42vw, 500px);
    padding-left: 28px;
    padding-right: 28px;
  }
}

/* Tablety (max 900px) */
@media(max-width: 900px) {
  .top-cards { grid-template-columns: 1fr 1fr; }
  .top-card:nth-child(2) { border-right: none; }
  .top-card:nth-child(3) { border-top: 1px solid var(--blue-pale); grid-column: span 2; }
  /* Catch karty: 2 sloupce, stále centrované */
  .catch-card {
    flex: 0 0 calc(50% - 9px);
    max-width: calc(50% - 9px);
  }
  .catch-grid.catch-count-3 { justify-content: center; }
}

/* Mobily (max 640px) */
@media(max-width: 640px) {
  /* Hero: celý obrázek viditelný a bez velkých modrých ploch */
  .hero-section {
    height: auto;
    min-height: 0;
    padding: calc(62px + 1cm) 22px 1cm;
    align-items: flex-end;
  }
  .hero-bg {
    top: 1cm;
    right: 0;
    bottom: 1cm;
    left: 0;
    background-size: contain;
    background-position: center center;
    animation: none;
  }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(10,61,94,0.65) 0%, rgba(10,61,94,0.88) 100%);
  }
  .hero-content { max-width: 100%; padding-top: 140px; }
  .hero-title { font-size: clamp(24px, 8vw, 36px); }

  .alert-bar { padding: 12px 20px; font-size: 13px; flex-direction: column; gap: 6px; }
  .info-section { padding: 28px 0; }

  .top-cards { grid-template-columns: 1fr; }
  .top-card { border-right: none !important; border-bottom: 1px solid var(--blue-pale); grid-column: auto !important; }

  .info-grid { grid-template-columns: 1fr; }
  .info-block:first-child { border-right: none; border-bottom: 1px solid var(--blue-pale); }

  /* Catch: 1 sloupec, vždy uprostřed */
  .catch-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-bar { padding: 20px 22px; flex-direction: column; align-items: flex-start; }
  .site-footer { padding: 16px 22px; flex-direction: column; align-items: flex-start; gap: 12px; }

  .modal-body { padding: 18px 16px; }
  .map-iframe-wrap iframe { height: 300px; }
}

/* Velká rozlišení — site-outer omezuje šířku, nav je součástí */
@media(min-width: 1141px) {
  .site-outer {
    border-left: 1px solid var(--blue-pale);
    border-right: 1px solid var(--blue-pale);
  }
}
.nav-btn,
.nav-tel {
    white-space: nowrap;
    flex-shrink: 0;
}
