
*{box-sizing:border-box}
html,body{margin:0;min-height:100%}
body{
  background:#a8dfee;
  font-family:Arial,Helvetica,sans-serif;
  color:#050505;
  font-size:20px;
}
a{color:inherit}
.wrapper{
  width:1200px;
  max-width:calc(100% - 32px);
  margin:5px auto 24px;
  background:#fff;
  box-shadow:0 0 12px rgba(0,153,204,.7);
  overflow:hidden;
  border-radius:16px 16px 0 0;
}
.header{
  height:165px;
  display:grid;
  grid-template-columns:77% 23%;
  background:#9f2e2e;
  overflow:hidden;
}
.brand{
  position:relative;
  color:#fff;
  padding:48px 60px 0;
}
.brand strong{
  display:block;
  font-size:78px;
  line-height:.95;
  font-weight:400;
  letter-spacing:-2px;
  white-space:nowrap;
}
.brand small{
  display:block;
  margin-top:8px;
  margin-left:165px;
  font-size:23px;
  line-height:1;
  font-style:normal;
}
.header-photo{
  position:relative;
  background:
    url('https://web.archive.org/web/20250316161245im_/https://www.chata-hracholusky.cz/images/accommodation2/chatazvenku.jpg')
    center 45%/cover no-repeat;
}
.header-photo::before{
  content:"cz";
  position:absolute;
  left:-31px;
  top:15px;
  color:white;
  font-size:16px;
  font-weight:bold;
}
.topnav{
  display:flex;
  align-items:stretch;
  margin:0;
  padding:0;
  list-style:none;
  background:#202020;
  border-bottom:1px solid #000;
}
.topnav li{flex:0 0 auto}
.topnav a{
  display:block;
  padding:22px 24px;
  color:#fff;
  text-decoration:none;
  font-size:18px;
  font-weight:700;
  border-right:1px solid #000;
  border-left:1px solid #393939;
  white-space:nowrap;
}
.topnav a:hover,.topnav a.active{background:#050505}
.subnav{
  min-height:56px;
  display:flex;
  align-items:center;
  gap:0;
  padding:8px 13px;
  background:#202020;
  color:#fff;
  border-top:1px solid #3a3a3a;
  overflow-x:auto;
  white-space:nowrap;
}
.subnav a{
  color:#fff;
  text-decoration:none;
  font-size:18px;
  font-weight:700;
  padding:7px 14px;
  border-right:2px solid #000;
}

.content{
  padding:48px 45px 56px;
  min-height:430px;
}
h1,h2,h3{
  margin-top:0;
  font-family:Arial,Helvetica,sans-serif;
  font-weight:400;
  color:#080808;
}
h1{
  margin-bottom:32px;
  font-size:42px;
  line-height:1.1;
}
h2{font-size:30px}
h3{font-size:24px}
p{
  margin:0 0 24px;
  font-size:20px;
  line-height:1.48;
  text-align:left;
}
ul{line-height:1.6}
.float-img{
  float:right;
  width:458px;
  max-width:43%;
  margin:0 0 20px 30px;
  border:0;
  box-shadow:none;
}
.price{
  width:100%;
  border-collapse:collapse;
  margin:18px 0 28px;
  font-size:17px;
}
.price th{
  background:#202020;
  color:#fff;
}
.price th,.price td{
  padding:13px 10px;
  border:1px solid #aaa;
  text-align:center;
}
.price tr:nth-child(even){background:#efefef}
.button,button{
  display:inline-block;
  padding:12px 18px;
  border:0;
  background:#2ba6cb;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
  cursor:pointer;
}
.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.gallery a{
  display:block;
  height:150px;
  overflow:hidden;
  background:#ddd;
}
.gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .2s;
}
.gallery img:hover{transform:scale(1.05)}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
label{
  display:block;
  font-size:16px;
  font-weight:bold;
}
input,textarea{
  width:100%;
  margin-top:5px;
  padding:11px;
  border:1px solid #aaa;
  font:inherit;
  font-size:16px;
}
textarea{min-height:130px}
.mapbox{
  margin-bottom:25px;
  padding:25px;
  background:#f1f1f1;
  border:1px solid #ccc;
  text-align:center;
}
.quote{
  clear:both;
  margin:0;
  padding:20px 45px;
  background:#f3f3f3;
  border-top:1px solid #ddd;
  font-size:16px;
  font-style:italic;
}
.footer{
  padding:18px 25px;
  background:#202020;
  color:#ddd;
  text-align:center;
  font-size:13px;
}
.lightbox{
  position:fixed;
  inset:0;
  z-index:99;
  display:none;
  align-items:center;
  justify-content:center;
  padding:30px;
  background:rgba(0,0,0,.9);
}
.lightbox.open{display:flex}
.lightbox img{max-width:94vw;max-height:90vh}
@media(max-width:1000px){
  .brand{padding-left:35px}
  .brand strong{font-size:58px}
  .brand small{margin-left:95px}
  .topnav{flex-wrap:wrap}
  .topnav li{flex:1 1 33%}
  .topnav a{text-align:center}
}
@media(max-width:700px){
  body{font-size:17px}
  .wrapper{max-width:100%;margin:0;border-radius:0}
  .header{height:135px;grid-template-columns:70% 30%}
  .brand{padding:34px 18px 0}
  .brand strong{font-size:38px;letter-spacing:-1px}
  .brand small{margin-left:25px;font-size:16px}
  .header-photo::before{left:-24px}
  .topnav li{flex:1 1 50%}
  .topnav a{padding:14px 10px;font-size:15px}
  .subnav{min-height:50px}
  .subnav a{font-size:15px}
  .content{padding:30px 22px 42px}
  h1{font-size:34px;margin-bottom:25px}
  p{font-size:17px}
  .float-img{float:none;width:100%;max-width:100%;margin:8px 0 22px}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .form-grid{grid-template-columns:1fr}
}


/* Stránka O chatě */
.intro-layout{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(360px,.95fr);
  gap:48px;
  align-items:start;
  margin-bottom:26px;
}
.intro-text p{margin-bottom:0}
.media-panel{
  margin-top:4px;
  background:#000;
  min-height:250px;
  overflow:hidden;
}
.media-panel img{
  display:block;
  width:100%;
  height:250px;
  object-fit:cover;
}
.offer-link{
  margin:10px 0 24px;
  font-size:16px;
}
.offer-link a{
  color:#111;
  text-decoration:underline;
}
.page-quote{
  margin:22px 0 0;
  padding:18px 22px;
  border-left:5px solid #2ba6cb;
  background:#f1f1f1;
  font-size:17px;
  line-height:1.5;
  font-style:italic;
}
@media(max-width:850px){
  .intro-layout{
    grid-template-columns:1fr;
    gap:24px;
  }
  .media-panel{min-height:220px}
  .media-panel img{height:220px}
}


/* Sekce Ubytování */
.accommodation-layout{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(330px,.95fr);
  gap:34px;
  align-items:start;
}
.accommodation-text p{
  margin-bottom:25px;
}
.accommodation-images{
  display:flex;
  flex-direction:column;
  gap:20px;
  padding-top:108px;
}
.accommodation-images img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
}
.photos-button-wrap{
  margin-top:28px;
  text-align:center;
}
.photos-button{
  display:inline-block;
  min-width:355px;
  padding:24px 30px;
  border-radius:14px;
  background:linear-gradient(#8bc800,#79ae00);
  color:#fff;
  text-decoration:none;
  font-size:29px;
  line-height:1;
  font-weight:700;
  text-align:center;
}
.photos-button:hover{
  filter:brightness(.95);
}
@media(max-width:850px){
  .accommodation-layout{
    grid-template-columns:1fr;
  }
  .accommodation-images{
    order:-1;
    padding-top:0;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
  }
  .accommodation-images img{
    height:180px;
  }
  .photos-button{
    min-width:0;
    width:100%;
    font-size:24px;
  }
}
@media(max-width:560px){
  .accommodation-images{
    grid-template-columns:1fr;
  }
  .accommodation-images img{
    height:auto;
  }
}


/* Sekce Ceník */
.price-year{
  margin:0 0 16px;
  color:#d54131;
  font-size:36px;
  font-weight:400;
}
.price-note{
  margin-bottom:13px;
}
.price-table-wrap{
  max-width:825px;
  margin-bottom:34px;
}
.original-price-table{
  margin:0;
  border:1px solid #cfcfcf;
  border-radius:5px;
  overflow:hidden;
  background:#fff;
}
.original-price-table th{
  background:#f3f3f3;
  color:#111;
  font-size:22px;
  font-weight:700;
}
.original-price-table th,
.original-price-table td{
  padding:14px 16px;
  border:1px solid #d5d5d5;
  font-size:20px;
}
.original-price-table tbody tr:nth-child(even){
  background:#f6f6f6;
}
.original-price-table .silvestr-row td{
  text-align:left;
  border-top:1px solid #8f8f8f;
  background:#f3f3f3;
  font-size:20px;
}
.price-details-layout{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(260px,.8fr);
  gap:60px;
  align-items:start;
}
.price-details p{
  margin-bottom:26px;
}
.price-details h3{
  margin:8px 0 12px;
  font-size:25px;
  font-weight:700;
}
.included-list{
  margin:0 0 28px 22px;
  padding:0;
  font-size:19px;
}
.included-list li{
  margin-bottom:7px;
}
.dog-photo{
  padding-top:58px;
  text-align:center;
}
.dog-photo img{
  display:block;
  width:100%;
  max-width:330px;
  margin:0 auto;
  height:auto;
}
.dog-photo span{
  display:block;
  margin-top:8px;
  font-size:15px;
}
.reserve-button-wrap{
  margin-top:25px;
}
.reserve-button{
  display:inline-block;
  padding:16px 28px;
  border-radius:9px;
  background:linear-gradient(#8bc800,#79ae00);
  color:#fff;
  text-decoration:none;
  font-size:24px;
  font-weight:700;
}
@media(max-width:850px){
  .price-details-layout{
    grid-template-columns:1fr;
    gap:20px;
  }
  .dog-photo{
    order:-1;
    padding-top:0;
  }
  .dog-photo img{
    max-width:260px;
  }
  .price-table-wrap{
    overflow-x:auto;
  }
  .original-price-table{
    min-width:720px;
  }
}


/* Sekce Kde nás najdete */
.location-layout{
  display:grid;
  grid-template-columns:minmax(0,1.28fr) minmax(350px,.82fr);
  gap:28px;
  align-items:start;
}
.legacy-map{
  position:relative;
  min-height:510px;
  overflow:hidden;
  border:4px solid #c8c8c8;
  background:
    linear-gradient(rgba(145,145,145,.96),rgba(145,145,145,.96)),
    repeating-linear-gradient(45deg,#8c8c8c 0,#8c8c8c 10px,#949494 10px,#949494 20px);
}
.map-controls{
  position:absolute;
  top:24px;
  right:26px;
  display:flex;
}
.map-controls button{
  width:48px;
  height:43px;
  padding:0;
  border:1px solid #777;
  border-radius:0;
  background:#8e8e8e;
  color:#444;
  font-size:34px;
  font-weight:700;
  line-height:40px;
}
.developer-warning{
  position:absolute;
  left:24px;
  right:24px;
  top:123px;
  min-height:256px;
  padding:35px 34px 24px;
  border-radius:13px;
  background:#eb5a00;
  color:#fff;
  text-align:center;
}
.developer-warning strong{
  display:block;
  margin:9px 0 18px;
  font-size:20px;
}
.developer-warning p{
  margin:0 0 17px;
  color:#fff;
  font-size:17px;
  line-height:1.45;
}
.developer-warning a{
  color:#00a4dc;
  font-size:17px;
  font-weight:700;
  text-decoration:underline;
}
.warning-icon{
  font-size:34px;
  line-height:1;
}
.warning-close{
  position:absolute;
  top:8px;
  right:11px;
  width:auto;
  height:auto;
  padding:0;
  border:0;
  background:transparent;
  color:#fff;
  font-size:39px;
  font-weight:300;
}
.map-scale{
  position:absolute;
  left:8px;
  bottom:31px;
  display:grid;
  grid-template-columns:1fr 1fr;
  width:126px;
  color:#262626;
  font-size:15px;
}
.scale-line{
  grid-column:1 / span 2;
  width:92px;
  height:9px;
  margin:1px 0 0 5px;
  background:#292929;
}
.map-scale small{
  position:absolute;
  left:103px;
  bottom:-2px;
}
.map-credit{
  position:absolute;
  left:8px;
  bottom:7px;
  font-size:14px;
  color:#303030;
}
.map-credit a{
  color:#087b9a;
}
.map-logo{
  position:absolute;
  right:12px;
  bottom:9px;
  color:#111;
  font-size:25px;
  font-weight:900;
  font-style:italic;
  letter-spacing:-2px;
  text-shadow:2px 2px 2px #777;
}
.location-info{
  padding-top:2px;
}
.location-info h2{
  margin:0 0 8px;
  font-size:30px;
  font-weight:400;
}
.location-info .gps{
  margin-bottom:18px;
  font-size:29px;
  line-height:1.2;
  white-space:nowrap;
}
.map-links{
  margin:0 0 23px 28px;
}
.map-links a{
  display:block;
  margin-bottom:6px;
  color:#1aa3d4;
  font-size:21px;
  text-decoration:underline;
}
.location-info > p:last-child{
  margin-left:28px;
  font-size:20px;
  line-height:1.48;
}
.location-cta-wrap{
  margin:36px 0 0;
  text-align:center;
}
.location-cta{
  display:inline-block;
  min-width:335px;
  padding:17px 30px;
  border-radius:14px;
  background:linear-gradient(#8bc800,#79ae00);
  color:#fff;
  text-decoration:none;
  font-size:25px;
  font-weight:700;
}
@media(max-width:900px){
  .location-layout{
    grid-template-columns:1fr;
  }
  .legacy-map{
    min-height:470px;
  }
  .location-info .gps{
    white-space:normal;
  }
  .map-links,
  .location-info > p:last-child{
    margin-left:0;
  }
}
@media(max-width:560px){
  .legacy-map{
    min-height:430px;
  }
  .developer-warning{
    left:14px;
    right:14px;
    top:100px;
    padding-left:20px;
    padding-right:20px;
  }
  .location-info .gps{
    font-size:23px;
  }
  .location-cta{
    min-width:0;
    width:100%;
  }
}


/* Moderní mapa Leaflet */
.leaflet-map-wrap{
  min-height:510px;
  border:4px solid #c8c8c8;
  background:#e5e5e5;
}
#location-map{
  width:100%;
  height:502px;
}
#location-map .leaflet-popup-content{
  margin:13px 18px;
  font-family:Arial,Helvetica,sans-serif;
  font-size:15px;
  line-height:1.4;
}
@media(max-width:900px){
  .leaflet-map-wrap{min-height:470px}
  #location-map{height:462px}
}
@media(max-width:560px){
  .leaflet-map-wrap{min-height:420px}
  #location-map{height:412px}
}


/* Sekce Kontakt a rezervace */
.contact-layout{
  display:grid;
  grid-template-columns:minmax(280px,.72fr) minmax(0,1.55fr);
  gap:34px;
  align-items:start;
}
.contact-card,
.reservation-card{
  border:1px solid #d7d7d7;
  border-radius:14px;
  background:#fff;
  box-shadow:0 7px 24px rgba(0,0,0,.08);
}
.contact-card{
  padding:32px 28px;
  background:linear-gradient(145deg,#992f2f,#7f2424);
  color:#fff;
}
.contact-card h2{
  margin:7px 0 28px;
  color:#fff;
  font-size:31px;
}
.contact-eyebrow{
  display:inline-block;
  color:#2ba6cb;
  font-size:15px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.contact-card .contact-eyebrow{
  color:#bdefff;
}
.contact-item{
  display:flex;
  gap:15px;
  align-items:center;
  margin-bottom:22px;
}
.contact-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 46px;
  width:46px;
  height:46px;
  border-radius:50%;
  background:rgba(255,255,255,.14);
  font-size:22px;
}
.contact-item small{
  display:block;
  margin-bottom:3px;
  color:#f2dede;
  font-size:13px;
  text-transform:uppercase;
}
.contact-item a{
  color:#fff;
  font-size:20px;
  font-weight:700;
  text-decoration:none;
}
.contact-item a:hover{
  text-decoration:underline;
}
.contact-note{
  margin:30px 0 0;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.22);
  color:#f6eaea;
  font-size:16px;
}
.reservation-card{
  padding:32px;
}
.reservation-card h2{
  margin:7px 0 10px;
  font-size:31px;
}
.reservation-card > p{
  margin-bottom:25px;
  color:#555;
  font-size:17px;
}
.reservation-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.reservation-form label > span{
  display:block;
  margin-bottom:7px;
  font-size:15px;
  font-weight:700;
}
.reservation-form input,
.reservation-form textarea{
  width:100%;
  margin:0;
  padding:13px 14px;
  border:1px solid #c8c8c8;
  border-radius:7px;
  background:#fff;
  font-family:Arial,Helvetica,sans-serif;
  font-size:16px;
  transition:border-color .2s,box-shadow .2s;
}
.reservation-form input:focus,
.reservation-form textarea:focus{
  outline:none;
  border-color:#2ba6cb;
  box-shadow:0 0 0 3px rgba(43,166,203,.16);
}
.message-field{
  display:block;
  margin-top:18px;
}
.message-field textarea{
  min-height:120px;
  resize:vertical;
}
.form-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-top:20px;
}
.consent-row{
  display:flex;
  align-items:flex-start;
  gap:9px;
  max-width:480px;
  cursor:pointer;
}
.consent-row input{
  flex:0 0 auto;
  width:18px;
  height:18px;
  margin-top:2px;
}
.consent-row span{
  margin:0 !important;
  color:#555;
  font-size:13px !important;
  font-weight:400 !important;
  line-height:1.4;
}
.reservation-submit{
  flex:0 0 auto;
  padding:15px 23px;
  border-radius:9px;
  background:linear-gradient(#8bc800,#79ae00);
  color:#fff;
  font-size:18px;
  font-weight:700;
}
.reservation-submit:hover{
  filter:brightness(.95);
}
.reservation-status{
  display:none;
  margin:18px 0 0;
  padding:12px 14px;
  border-radius:7px;
  background:#fff3cd;
  color:#6d5500;
  font-size:15px;
}
.reservation-status.visible{
  display:block;
}
.reservation-form .invalid{
  border-color:#c83d3d;
}
@media(max-width:900px){
  .contact-layout{
    grid-template-columns:1fr;
  }
}
@media(max-width:650px){
  .reservation-card{
    padding:24px 20px;
  }
  .reservation-grid{
    grid-template-columns:1fr;
  }
  .form-bottom{
    align-items:stretch;
    flex-direction:column;
  }
  .reservation-submit{
    width:100%;
  }
}


/* Sekce Přehrada Hracholusky */
.subnav a.active-subnav{
  background:#2ba6cb;
  border-radius:22px;
  border-right:0;
  margin-right:8px;
}
.reservoir-page p{
  margin-bottom:27px;
}
.reservoir-figure{
  margin:30px auto 34px;
}
.reservoir-figure img{
  display:block;
  width:100%;
  max-height:620px;
  object-fit:cover;
}
.reservoir-figure figcaption{
  margin-top:8px;
  color:#555;
  font-size:14px;
  font-style:italic;
  text-align:center;
}
.reservoir-cta-wrap{
  margin:34px 0 66px;
  text-align:center;
}
.reservoir-cta{
  display:inline-block;
  min-width:340px;
  padding:24px 32px;
  border-radius:14px;
  background:linear-gradient(#8bc800,#79ae00);
  color:#fff;
  text-decoration:none;
  font-size:27px;
  line-height:1;
  font-weight:700;
  text-align:center;
}
.reservoir-cta:hover{
  filter:brightness(.95);
}
.sources{
  margin-top:35px;
  padding:23px 26px;
  border-left:5px solid #2ba6cb;
  background:#f3f3f3;
}
.sources h2{
  margin:0 0 13px;
  font-size:24px;
  font-weight:700;
}
.sources p{
  margin:0 0 9px;
  font-size:15px;
  line-height:1.55;
}
@media(max-width:650px){
  .reservoir-cta-wrap{
    margin-bottom:45px;
  }
  .reservoir-cta{
    min-width:0;
    width:100%;
    padding:20px;
    font-size:23px;
  }
}


/* Rozbalovací menu Přehrada */
.subnav{
  overflow:visible;
}
.reservoir-menu{
  position:relative;
  flex:0 0 auto;
}
.reservoir-trigger{
  display:block;
  background:#2ba6cb !important;
  border-radius:22px !important;
  border-right:0 !important;
  margin-right:8px !important;
}
.reservoir-dropdown{
  position:absolute;
  top:100%;
  left:0;
  z-index:60;
  display:none;
  min-width:235px;
  padding:0;
  background:#202020;
  border:1px solid #111;
  box-shadow:0 8px 18px rgba(0,0,0,.3);
}
.reservoir-dropdown a{
  display:block;
  padding:11px 16px;
  border:0;
  border-bottom:1px solid #333;
  border-radius:0 !important;
  background:#202020 !important;
  color:#fff;
  font-size:18px;
  font-weight:400;
  white-space:nowrap;
}
.reservoir-dropdown a:hover{
  background:#2b2b2b !important;
  color:#35b4dc;
}
.reservoir-menu:hover .reservoir-dropdown,
.reservoir-menu:focus-within .reservoir-dropdown,
.reservoir-menu.open .reservoir-dropdown{
  display:block;
}

/* Připravované podstránky */
.prepared-content{
  min-height:520px;
}
.prepared-page{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:230px;
  margin:20px 0 28px;
  padding:36px 25px;
  border:1px solid #ddd;
  border-radius:12px;
  background:linear-gradient(#fafafa,#f1f1f1);
  text-align:center;
}
.prepared-icon{
  margin-bottom:15px;
  font-size:52px;
}
.prepared-page p{
  margin:0;
  font-size:26px;
}
.prepared-cta-wrap{
  margin:10px 0 48px;
  text-align:center;
}
.prepared-cta{
  display:inline-block;
  min-width:320px;
  padding:20px 28px;
  border-radius:13px;
  background:linear-gradient(#8bc800,#79ae00);
  color:#fff;
  text-decoration:none;
  font-size:24px;
  font-weight:700;
}
@media(max-width:700px){
  .reservoir-dropdown{
    position:fixed;
    left:8px;
    right:8px;
    top:auto;
    min-width:0;
  }
  .prepared-cta{
    min-width:0;
    width:100%;
  }
}


/* Sekce Parník, jízdní řád */
.subnav > a.boat-active{
  background:#2ba6cb;
  border-radius:22px;
  border-right:0;
  margin:0 8px;
}
.boat-page p{
  margin-bottom:28px;
}
.season-start{
  margin:28px 0 44px;
  padding:10px 0;
  background:#ff1010;
  color:#000;
  font-size:38px;
  line-height:1.15;
}
.schedule-block{
  margin-bottom:38px;
}
.schedule-heading{
  width:44%;
  min-width:485px;
  border:1px solid #d0d0d0;
}
.schedule-heading strong,
.schedule-heading span{
  display:block;
  padding:11px 9px;
  background:#91f58c;
  border-bottom:1px solid #d0d0d0;
  font-size:28px;
  line-height:1.2;
}
.schedule-heading span{
  font-weight:700;
}
.schedule-scroll{
  overflow-x:auto;
}
.boat-table{
  width:100%;
  min-width:900px;
  border-collapse:collapse;
  table-layout:fixed;
  font-size:20px;
}
.boat-table td{
  padding:15px 9px;
  border:3px solid #dedede;
  background:#f8f8f8;
  vertical-align:middle;
}
.boat-table .highlight{
  background:#ffff59;
}
.boat-table-four td:nth-child(1),
.boat-table-four td:nth-child(3){
  width:44%;
}
.boat-table-four td:nth-child(2),
.boat-table-four td:nth-child(4){
  width:6%;
  text-align:center;
}
.boat-table-six td:nth-child(1),
.boat-table-six td:nth-child(4){
  width:32%;
}
.boat-table-six td:nth-child(2),
.boat-table-six td:nth-child(3),
.boat-table-six td:nth-child(5),
.boat-table-six td:nth-child(6){
  width:9%;
  text-align:center;
}
.boat-prices{
  margin:34px 0;
  padding:24px 28px;
  border-left:5px solid #2ba6cb;
  background:#f3f3f3;
}
.boat-prices h2{
  margin:0 0 14px;
  font-size:29px;
  font-weight:700;
}
.boat-prices p{
  margin:0 0 12px;
}
.boat-cta-wrap{
  margin:38px 0 50px;
  text-align:center;
}
.boat-cta{
  display:inline-block;
  min-width:330px;
  padding:21px 30px;
  border-radius:14px;
  background:linear-gradient(#8bc800,#79ae00);
  color:#fff;
  text-decoration:none;
  font-size:25px;
  font-weight:700;
}
@media(max-width:700px){
  .season-start{
    font-size:28px;
  }
  .schedule-heading{
    width:100%;
    min-width:0;
  }
  .schedule-heading strong,
  .schedule-heading span{
    font-size:21px;
  }
  .boat-cta{
    min-width:0;
    width:100%;
  }
}


/* Sekce Pro rybáře */
.subnav > a.fishing-active{
  background:#2ba6cb;
  border-radius:22px;
  border-right:0;
  margin:0 8px;
}
.fishing-page p{
  margin-bottom:26px;
}
.fishing-section{
  margin:36px 0 42px;
}
.fishing-section h2{
  margin-bottom:16px;
  color:#d54131;
  font-size:36px;
  font-weight:400;
}
.fishing-section h3{
  margin-bottom:8px;
  font-size:22px;
  font-weight:700;
}
.fishing-section a{
  color:#1aa3d4;
}
.catch-list,
.rule-list{
  margin:10px 0 22px 26px;
  padding:0;
  font-size:19px;
  line-height:1.65;
}
.rule-list li{
  margin-bottom:14px;
}
.source-line{
  color:#555;
  font-size:15px !important;
}
.fishing-cta-wrap{
  margin:34px 0 58px;
  text-align:center;
}
.fishing-cta{
  display:inline-block;
  min-width:345px;
  padding:22px 30px;
  border-radius:14px;
  background:linear-gradient(#8bc800,#79ae00);
  color:#fff !important;
  text-decoration:none;
  font-size:25px;
  font-weight:700;
}
.fishing-warning{
  margin:28px 0;
  padding:20px 24px;
  border-left:5px solid #d54131;
  background:#fff3ef;
}
.fishing-warning strong{
  display:block;
  margin-bottom:7px;
  color:#a92d21;
  font-size:20px;
}
.fishing-warning p{
  margin:0;
}
.permit-grid,
.shop-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.permit-card,
.shop-card{
  padding:20px;
  border:1px solid #d8d8d8;
  border-radius:10px;
  background:#f8f8f8;
  box-shadow:0 4px 13px rgba(0,0,0,.05);
}
.permit-card h3,
.shop-card h3{
  margin:0 0 9px;
  color:#111;
}
.permit-card p,
.shop-card p{
  margin:0 0 10px;
  font-size:17px;
}
.permit-card p:last-child,
.shop-card p:last-child{
  margin-bottom:0;
}
.shop-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
@media(max-width:900px){
  .shop-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:650px){
  .fishing-section h2{
    font-size:30px;
  }
  .permit-grid,
  .shop-grid{
    grid-template-columns:1fr;
  }
  .fishing-cta{
    min-width:0;
    width:100%;
  }
}


/* Rozbalovací menu Výlety */
.trips-menu{position:relative;flex:0 0 auto}
.trips-trigger{display:block}
.trips-dropdown{
  position:absolute;top:100%;left:0;z-index:65;display:none;min-width:175px;
  background:#202020;border:1px solid #111;box-shadow:0 8px 18px rgba(0,0,0,.3)
}
.trips-dropdown a{
  display:block;padding:11px 16px;border:0;border-bottom:1px solid #333;
  background:#202020!important;color:#fff;font-size:18px;font-weight:400;white-space:nowrap
}
.trips-dropdown a:hover,.trips-dropdown a.active-trip{background:#2b2b2b!important;color:#35b4dc}
.trips-menu:hover .trips-dropdown,.trips-menu:focus-within .trips-dropdown,.trips-menu.open .trips-dropdown{display:block}

/* Sekce Výlety */
.trips-page h2{color:#d54131;font-size:31px;font-weight:400}
.trip-feature{
  display:grid;grid-template-columns:280px 1fr;gap:28px;align-items:start;
  margin:34px 0;padding:22px;border:1px solid #ddd;background:#f8f8f8
}
.trip-feature.reverse{grid-template-columns:1fr 280px}
.trip-feature.reverse img{order:2}
.trip-feature img{width:100%;max-height:330px;object-fit:cover}
.trip-feature h2{margin:0 0 12px}
.trip-card{
  margin:24px 0;padding:22px;border-left:5px solid #2ba6cb;background:#f5f5f5
}
.trip-card h2{margin:0 0 10px}
.trip-card p{margin:0}
.trip-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.trip-grid .trip-card{margin:0}
.trip-cta-wrap{margin:40px 0 50px;text-align:center}
.trip-cta{
  display:inline-block;min-width:330px;padding:21px 30px;border-radius:14px;
  background:linear-gradient(#8bc800,#79ae00);color:#fff;text-decoration:none;
  font-size:25px;font-weight:700
}
@media(max-width:760px){
  .trip-feature,.trip-feature.reverse{grid-template-columns:1fr}
  .trip-feature.reverse img{order:0}
  .trip-grid{grid-template-columns:1fr}
  .trip-cta{min-width:0;width:100%}
  .trips-dropdown{position:fixed;left:8px;right:8px;top:auto;min-width:0}
}


/* Sekce Cyklostezky */

.cycling-intro{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:32px;
  align-items:start;
  margin-bottom:42px;
}
.cycling-photo{
  margin:0;
}
.cycling-photo img{
  display:block;
  width:100%;
  max-height:390px;
  object-fit:cover;
}
.cycling-photo figcaption{
  margin-top:7px;
  color:#666;
  font-size:13px;
  text-align:center;
}
.cycling-route{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:24px;
  margin:0 0 24px;
  padding:25px;
  border:1px solid #ddd;
  border-radius:11px;
  background:#f7f7f7;
}
.route-number{
  display:flex;
  align-items:center;
  justify-content:center;
  width:82px;
  height:82px;
  border-radius:50%;
  background:#2ba6cb;
  color:#fff;
  font-size:23px;
  font-weight:700;
  text-align:center;
}
.cycling-route h2{
  margin:0 0 12px;
  color:#d54131;
  font-size:31px;
  font-weight:400;
}
.cycling-route p{
  margin:0 0 15px;
}
.cycling-route a{
  color:#1aa3d4;
}
.route-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.route-tags span{
  padding:6px 10px;
  border-radius:15px;
  background:#e1e1e1;
  color:#333;
  font-size:13px;
  font-weight:700;
}
.cycling-cta-wrap{
  margin:38px 0 48px;
  text-align:center;
}
.cycling-cta{
  display:inline-block;
  min-width:335px;
  padding:21px 30px;
  border-radius:14px;
  background:linear-gradient(#8bc800,#79ae00);
  color:#fff;
  text-decoration:none;
  font-size:24px;
  font-weight:700;
}
.cycling-tip{
  margin:34px 0;
  padding:22px 25px;
  border-left:5px solid #2ba6cb;
  background:#f2f2f2;
}
.cycling-tip strong{
  display:block;
  margin-bottom:8px;
  color:#d54131;
  font-size:25px;
}
.cycling-tip p{
  margin:0;
}
@media(max-width:720px){
  .cycling-intro{
    grid-template-columns:1fr;
  }
  .cycling-photo{
    max-width:300px;
    margin:0 auto;
  }
  .cycling-route{
    grid-template-columns:1fr;
  }
  .route-number{
    width:70px;
    height:70px;
  }
  .cycling-cta{
    width:100%;
    min-width:0;
  }
}


/* Stránka Doporučujeme */

.recommendations-page .prepared-page{
  max-width:760px;
  margin:45px auto;
  padding:48px 35px;
  border:1px solid #ddd;
  border-radius:12px;
  background:#f7f7f7;
  text-align:center;
}
.recommendations-page .prepared-icon{
  margin-bottom:15px;
  font-size:54px;
}
.recommendations-page .prepared-page h2{
  margin:0 0 15px;
  color:#d54131;
  font-size:32px;
  font-weight:400;
}
.recommendations-page .prepared-page p{
  margin:0;
  font-size:19px;
  line-height:1.7;
}


/* Kosmetické sjednocení navigace a barev – v17 */
.header{
  background:#9f2e2e;
}
.brand{
  padding-top:52px;
}
.brand strong{
  line-height:.92;
}
.brand small{
  margin-top:10px;
}
.topnav{
  background:#202020;
}
.topnav a{
  background:#202020;
}
.topnav a:hover{
  background:#292929;
}
.topnav a.active{
  background:#050505;
}
.subnav{
  background:#202020;
  border-top-color:#353535;
}
.subnav a{
  border-right-color:#080808;
}
.subnav a:hover{
  color:#36add1;
}
.subnav .active-section{
  margin:0 8px;
  padding:7px 15px;
  border-right:0;
  border-radius:22px;
  background:#2ba6cb;
  color:#fff;
}
.subnav .active-section:hover{
  background:#2ba6cb;
  color:#fff;
}
.reservoir-dropdown a,
.trips-dropdown a{
  margin:0;
  border-radius:0;
}
.reservoir-dropdown a.dropdown-active,
.trips-dropdown a.dropdown-active{
  background:#2b2b2b !important;
  color:#35b4dc;
}
.dog-photo span{
  display:none;
}


/* Oprava aktivního stavu Přehrady – v18 */
.subnav .reservoir-trigger{
  margin:0;
  padding:10px 15px;
  border-radius:0;
  background:transparent;
  color:#fff;
}
.subnav .reservoir-trigger:hover{
  background:transparent;
  color:#36add1;
}
.subnav .reservoir-trigger.active-section{
  margin:0 8px;
  padding:7px 15px;
  border-radius:22px;
  background:#2ba6cb;
  color:#fff;
}
.subnav .reservoir-trigger.active-section:hover{
  background:#2ba6cb;
  color:#fff;
}
