body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.body.nenidomov {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.podstrana { 
  flex: 1 0 auto;
}

.footer { margin-top: auto; }

/* Chrome/Edge/Safari (WebKit/Blink) — globálně */
html {
  /* udrží místo pro scroll bar, ať neskáče layout */
  scrollbar-gutter: stable;
}


/* Musíš stylovat prvek, který skutečně scrolluje! 
   Pro stránku to bývá html nebo body, ale pro vnořené boxy to bude jejich selector. */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #eee;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background-color: #1C1C2E;     /* tvoje fialová */
  border-radius: 12px;
  border: 3px solid #eee;         /* dělá „mezeru“ kolem palce = víc čitelné */
}

/* Hover/Active stavy */
html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background-color: #5c1990;
}
html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active {
  background-color: #4a1576;
}

/* Příklad pro VNOŘENÝ scroll box – použij na konkrétní kontejnery */
.scrollable {
  overflow: auto;                          /* zajistí, že vůbec vznikne scrollbar */
  max-height: 60vh;                        /* příklad */
}
.scrollable::-webkit-scrollbar { width: 14px; height: 14px; }
.scrollable::-webkit-scrollbar-track { background: #eee; }
.scrollable::-webkit-scrollbar-thumb {
  background-color: #7422b6;
  border-radius: 12px;
  border: 3px solid #eee;
}



.modal { 
  position: fixed; inset: 0; z-index: 1050;
  display: none;              /* ← tohle jsi odstranil */
  overflow: hidden; outline: 0;
}

.modal.show { display: block; }
.modal-open { overflow: hidden; }         /* lock pozadí */
.modal-backdrop { position: fixed; inset: 0; z-index: 1040; background:#000; }
.modal-backdrop.fade { opacity: 0; transition: opacity .15s linear; }
.modal-backdrop.show { opacity: .5; }

.modal-dialog { position: relative; width: auto; margin: .5rem; pointer-events: none; }
.modal.fade .modal-dialog { transform: translateY(-25%); transition: transform .3s ease-out; }
.modal.show .modal-dialog { transform: translateY(0); }

.modal-dialog-centered {
  display: flex; align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
  position: relative; display: flex; flex-direction: column;
  width: 100%; pointer-events: auto;
  background:#fff; border: 1px solid rgba(0,0,0,.2); border-radius: .3rem; outline: 0;
}
.modal-body { flex: 1 1 auto; padding: 30px 40px; }

/* šířky */
@media (min-width:576px){
  .modal-dialog { max-width: 500px; margin: 1.75rem auto; }
  .modal-dialog-centered { min-height: calc(100% - (1.75rem * 2)); }
}
@media (min-width:992px){ .modal-lg { max-width: 600px; } }

/* === Naše jemná úprava chování – stejné jako Bootstrap === */
/* Scrolluje se CELÝ modal (ne .modal-body), žádný spodní scrollbar,
   u krátkého obsahu je okno na středu, u dlouhého začne odshora. */

.modal.show{
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px 16px;        /* bezpečné okraje od hran viewportu */
}
.modal.show .modal-content{
  overflow: visible;         /* nescrolluje .modal-body */
}
.modal.show .modal-body{
  overflow: visible; max-height: none;    /* jistota */
}


.modal.is-open {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: block;              /* ne flex – aby šlo scrollovat jako stránka */
  overflow-x: hidden;
  overflow-y: auto;             /* scrolluje se celý modal, ne body */
  padding: 20px 0;
}

/* Overlay */
.modal.is-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
}

/* Dialog – default top, pokud má málo obsahu, vycentruje se přes margin */
.modal.is-open .modal-dialog {
  margin: 0 auto;         /* stejné jako BS */
  max-width: 650px;
  width: 95%;
  transform: none !important;
}

/* Obsah – žádný vnitřní scroll */
.modal.is-open .modal-content {
  border: 0;
  border-radius: 12px;
  overflow: visible;
  animation: modalFadeInUp .25s ease;
}

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

body.modal-open { scroll-behavior: auto !important; }



/*Tabulky*/
table {
	color: var(--barvap);
}

/*Úvodní banner*/
.banner {
    position: relative;
    overflow: hidden;
    height: 650px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	padding-top: 50px;
}
.banner h2 {
    color: #fff;
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 0px;
    line-height: 115%;
} 

.banner .podnadpis {
	padding-top: 0px;
	padding-bottom: 20px;
}
@media(min-width:767px) and (max-width:1000px){
.produkt .infop {
    padding: 0 10px 10px 10px !important;
}
.produkt p {
    font-size: 12px !important;
	line-height: 135% !important;
}
.produkt h3 {
    font-size: 16px !important;
    line-height: 115% !important;
}
}
@media(min-width:1200px) and (max-width:1400px){
.how {
    padding: 30px 25px !important;
}
.bod .cislo {
    font-size: 16px !important;
    line-height: 30px !important;
    width: 30px !important;
    height: 30px !important;
    margin-right: 9px !important;
}
.bod p {
    font-size: 16px !important;
}	
}
@media (min-width: 450px) and (max-width: 767px) {
    .banner h2 {
        font-size: 34px !important;
    }
}
@media (max-width: 450px) {
    .banner h2 {
        font-size: 31px !important;
    }
}
@media(min-width:768px) and (max-width:1000px){
.banner h2 {
        font-size: 29px !important;
}	
}
@media(min-width:1000px) and (max-width:1400px){
.banner h2 {
        font-size: 38px !important;
}	
}
@media(min-width:768px) and (max-width:1200px){
.banner {
    height: 450px !important;
}

.banner .podnadpis {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
.banner p {
    font-size: 15px !important;
}	
.how {
    padding: 20px 15px !important;
}
.bod .cislo {
    font-size: 12px !important;
    line-height: 20px !important;
    width: 20px !important;
    height: 20px !important;
    margin-right: 5px !important;	
}
.bod p {
    font-size: 14px !important;
}	
}

.under a {
	margin-left: 10px;
	color: #ccc !important;
    text-decoration: underline;	
}
.under a:hover {
	cursor: pointer;
	color: #fff !important;
}
.under p {
    display: flex;
    align-items: center;
	gap:0px;
	margin-top: 30px;
	margin-bottom: 0;
}
.under img {
	margin-left: 20px;
	margin-right: 0px;
}


.under span {
	display: flex;
}
.banner p {
	color: #fff;
	font-weight: 300;
	font-size: 18px;
	line-height: 150%;
}
.how {
    backdrop-filter: blur(24px);
    background: #00000029;
    border-radius: 24px;
    padding: 40px 40px;	
}
.how h3 {
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	color: #FFFFFFA3;	
}
.bod p {
	font-weight: 500;
	font-size: 18px;
	color: #fff;
}
.bod .cislo {
	margin-right: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 40px;
    background: #FFFFFF3D;
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
}
.how .bod:last-child p {
	margin-bottom: 0;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Zajistí, že překrytí bude nad obrázkem */
}
.carousel-cell .container {
	z-index: 2;
	position: relative;
	height: 100%;
}
.carousel-cell .row {
	height: 100%;
}
.carousel-cell .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-cell .video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw; /* nebo 100%, pokud chcete, aby se iframe choval responsivně */
    height: 100vh;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.hero-slider {
  width: 100%;
  height: 800px;
  overflow: hidden;
}
.hero-slider .carousel-cell {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
transition: opacity 1.5s ease-in-out;	
}
.hero-slider .carousel-cell .inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  text-align: center;
}
.hero-slider .carousel-cell .inner .subtitle {
  font-family: "Inter Tight", sans-serif;
  font-size: 2.2rem;
  line-height: 1.2em;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}
.hero-slider .carousel-cell .inner .title {
  font-family: "Inter Tight", sans-serif;
  font-size: 3rem;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
}
.hero-slider .carousel-cell .inner .btn {
  border: 1px solid #fff;
  padding: 14px 18px;
  text-transform: uppercase;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hero-slider .carousel-cell .inner .btn:hover {
  background: #fff;
  color: #000;
}
.hero-slider .flickity-prev-next-button {
  width: 80px;
  height: 80px;
  background: transparent;
}
.hero-slider .flickity-prev-next-button:hover {
  background: transparent;
}
.hero-slider .flickity-prev-next-button .arrow {
  fill: white;
}
.hero-slider .flickity-page-dots {
  bottom: 30px;
}
.hero-slider .flickity-page-dots .dot {
  width: 30px;
  height: 4px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border: 0 solid white;
  border-radius: 0;
}
.hero-slider .flickity-page-dots .dot.is-selected {
  background: #ff0000;
  border: 0 solid #ff0000;
}

@media(max-width:1099px) {
.uvod {
	width: 100% !important;
}	
.hero-slider .carousel-cell {
		background-size: cover;
}
}
.flickity-slider img {
	max-width: none !important;
}

/*Pop UP*/
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.modal-content {
    background-color: #fff;
    border: none !important;
    border-radius: 24px !important;
}
.modal-content h3 {
    font-size: 24px !important;
	font-weight: 600 !important;
    line-height: 125% !important;
    margin-bottom: 20px !important;
}
.modal-content .modal-body h3 {
    font-size: 24px !important;
	font-weight: 600 !important;
    line-height: 125% !important;
    margin-bottom: 20px !important;
}
.modal-content p, .modal-content li {
    font-size: 16px !important;
    color: #6B6B6B;
    line-height: 150%;
    font-weight: 400;
}
.modal-content p {
	padding-bottom: 10px;
}



.modal-content ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    color: #689AAA;
    font-size: 20px;
	font-weight: 900;
	border:none;
	top: 0px;
	padding-right: 15px;
}

.modal-content ul {
    margin-right: 0;
    padding-left: 0;
    list-style: none;
	counter-reset: foo;
    display: table;
	border-spacing: 0 10px;
}

.modal-content ul > li {
    counter-increment: foo;
    display: table-row;
	margin-bottom: 20px;
	font-size: 20px;
	color: #575756;
	line-height: 150%;
	font-weight: 500;
}

.modal-content ul li:before {
    display: table-cell;
}
.modal-content ul li ul {
    margin-top: 30px;
	margin-bottom: 30px;
}

@media(max-width:576px) {
	.pb-xs-5 {
		padding-bottom: 3rem!important;
	}
}
@media(max-width:1200px) {
	.odkazy  {order:1;}
	.copymove { order:2;}
}
@media(max-width:767px) {
	.odkazy  {order:2;}
	.copymove { order:1;}
}
@media(max-width:768px) {
footer .email, footer .telefon {
    justify-content: flex-start;
}		
	.modal-body {
    padding: 30px 25px 35px 25px !important;
	}
	.modal { padding-right:0 !important}
	.modal-open{ padding-right:0px !important}
.close {
    margin-top: -20px !important;
    margin-right: -15px !important;
}
}


/* Pro mobily – číslo a text vedle sebe */
@media (max-width: 767px) {

  .bod p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
	align-items: center;  
  }

  .bod .cislo {
    flex: 0 0 auto; /* drží pevnou šířku čísla */
  }
}

@media(max-width:576px) {
.cta p {
    font-size: 16px !important;
}	
    .banner p {
        font-size: 14px !important;
    }
	.bod .cislo {
		margin-right: 6px !important;
		font-size: 16px !important;
		line-height: 25px !important;
		width: 25px !important;
		height: 25px !important;
	}	
    .bod p {
        font-size: 16px !important;
    }	
}
@media(min-width:576px) and (max-width:767px) {
.cta p {
    font-size: 16px !important;
}	
	.banner p {
		font-size: 16px !important;
	}	
	.bod p {
		font-size: 16px !important;
	}	
}
@media (max-width: 768px) {
  .ctabg {
    position: relative;
    overflow: hidden; /* pro jistotu, kdyby něco přečnívalo */
  }

  .ctabg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 28, 46, 0.6); /* #1c1c2e s průhledností */
    z-index: 1;
  }

  /* zajistí, aby obsah byl nad overlay */
  .ctabg > * {
    position: relative;
    z-index: 2;
  }
}


/*Produkty*/
.produkty {
	background-color: #fff;
} 
.produkty h2 {
	max-width: 670px;
}
@media (max-width: 767px) {
	.vylety-nav button {
		width: 40px !important;
		height: 40px !important;
	}	
	.vylety-nav {
		top: -5px !important;
	}	
	
  .produkty .produkty-slider {
    display: block;
  }

  .produkty .produkth {
    width: 80%;
    margin-right: 10px;
  }
	.produkty .produkth {
		padding-left: 0px;
	}	
  .produkty .container  {
	padding-right: 0px !important;
  }
  .vylety-slider .carousel-item  {
        width: 90%;
    }

}

.produkt {
	position: relative;
	margin: 0 auto;
    border-radius: 24px;
}
.produkt .infop {
    padding: 0 15px 25px 15px;
    color: #fff;
    position: absolute;
    bottom: 0;
    z-index: 2;
}
.produkt .obrazek {
	display: flex;
	overflow: hidden;
	border-radius: 24px;
	position: relative;
	z-index: 1;
}
.fulllink {
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
}
.produkt .obrazek img {
	height: auto;
	transition: all 0.2s;
	width: 100%;
}
.produkt:hover .obrazek img {
    transform: scale(1.03);
}
.obrazek img {
	border-radius: 0 !important;
}
.obrazek a {
	display: block;
}
.caption {
	margin-bottom: 0;
	font-style:italic;
}
.produkt h3 {
	color: #fff !important;
	margin-bottom: 10px;
	padding-bottom: 0px;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	line-height: 128%;
	
}

.produkt p {
	font-size: 14px;
	line-height: 150%;
	font-weight: 400;
	color: #e6e6e6;
	margin-top: 0px;
	margin-bottom: 0px;
}



/*NOVINKY HP*/
 .novinky {
     background: #fff;
}
@media(min-width:768px) and (max-width:1200px){
.plan p {
    font-size: 16px !important;
}	
.novinka .info {
    padding: 15px 15px 15px 15px !important;
}	
.novinka h3, .novinka h3 a {
    font-size: 20px !important;
	line-height: 115% !important;
}	
.novinka .datum {
    font-size: 14px !important;
    right: 15px !important;
}	
.novinka a.readmore {
    font-size: 14px !important;
}	
}

 .novinkytlacitko {
     margin-bottom: 0px;
     margin-top: 0px;
}
.novinka {
    position: relative;
    margin: 0 auto;
    border-radius: 8px;
    height: 100%;
    border: 1px solid rgba(15, 15, 15, 0.1);
}
.novinka:hover {
    box-shadow: 0px 20px 110px rgba(15, 15, 15, 0.1);
	border: 1px solid rgba(15, 15, 15, 0);
}
.novinka .info {
 	padding: 25px 25px 25px 25px;	
}
.novinka .obrazek {
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}
.domov .novinka .obrazek img {
	width: 100%;
}
.novinka .obrazek img {
	height: auto;
	transition: all 0.2s;
	margin-bottom: -5px;
}
.novinka:hover .obrazek img {
    transform: scale(1.03);
}
.novinka h3 {
	margin-top: 0 !important; 
}
.novinka h3 a {
	font-size: 24px;
	color: #000 !important;
	font-weight: 600;
	margin-bottom: 0;
	padding-bottom: 0;
	text-decoration: none;
}
.novinka h3 a:hover {
	color: var(--barvaodkazuhover) !important;
	text-decoration: none;
}

.novinka p {
	font-size: 16px;
	color: #000;
	line-height: 135%;
	font-weight: 400;
	margin-top: 5px;
	margin-bottom: 40px !important;
}
.novinka .datum {
    color: #71748a;
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    bottom: 25px;
	right: 25px;
}
 .novinky a {
     text-decoration: none;
}
 .novinky a:hover {
     text-decoration: underline;
}
 .novinky p {
     font-size: 16px;
}
 .novinky i {
     margin-left: 5px;
     transition: 0.2s ease;
}
 .novinky a:hover i {
     margin-left: 10px;
     transition: 0.2s ease;
}

/*Kontakt*/
.kontakt {
    background: #cf010d;	
}
.kontakt i {
	color: #fff;
	font-weight: 600;
	font-size: 28px;
	margin-bottom: 0;
	padding-right: 15px;
}
.kontakt p {
	color: #fff;
	font-weight: 600;
	font-size: 28px;
	margin-bottom: 0;
}
.kontakt a {
	color: #fff !important;
	text-decoration: none;
}
.kontaktkariera {
    background: #f4f4f4;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 20px;	
}
.kontaktkariera p:last-child {
	margin-bottom: 0;
}

/*Patička*/
footer {
    background-color: #1C1C2E;
    margin-top: 0px;
    background-repeat: no-repeat;
    background-size: cover;
	position: relative;
}
footer .container {
    z-index: 2;
    position: relative;	
}
.footer a:hover {
    color: var(--barvaodkazuhover);
	text-decoration: none;
}
.footer a {
    color: #fff;
	text-decoration: none;
}
.domov footer {
    margin-top: 0px;
}
.nenidomov footer {
    margin-top: 70px;
}
footer .logo {
	display: block;
}
footer .logo img {
	width: 200px;
	height: auto;
}
footer p {
	color: #fff;
	font-size: 14px;
}
.partner {
	display: inline-block;
    margin-left: 0px;
    margin-top: -3px;
    float: right;
}
.copyright .copymove a {
	display: inline-block !important;
	float: left;
}
.copyright .copymove span {
	float: left;
	min-width: 165px;
}


@media(max-width:991px) {
	.faq-col {
		margin-bottom: 20px;
	}
	.copyright strong {
		font-size: 14px;
	}
	footer p strong {
	font-size: 14px;
}
	footer .copyright p{
	font-size: 14px !important;
}
}
footer .columnone i {
	padding-right: 15px;
	font-size: 22px;
	color: var(--barvaodkazuhover);
	float: left;
}
footer .columnone p {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 10px;
	padding-left: 35px;
}
footer .nadpisf {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF66;
    margin-bottom: 25px;
    display: block;
}

footer .info a {
	display: table;
    font-size: 18px;
    font-weight: 400;
	color: #fff;
	text-decoration: none;
	margin-bottom: 15px;
}
footer .info a:last-child {
	margin-bottom: 0;
}
footer .info a:hover{
	text-decoration: none;
	color: var(--barvaodkazuhover);
}

footer .copyright p {
    font-size: 14px;
    font-weight: 400;
	color: #adadb4;	
    display: flex;
    gap: 15px;	
}
footer .copyright a {
    font-size: 14px;
    font-weight: 400;	
	color: #adadb4;
	text-decoration: none;
	padding-left: 30px;
}
.copyright a:last-child {
	padding-bottom: 0 !important;
}
footer .copyright a:first-child {
	padding-left: 0px;
}
footer .copyright a:hover {
	color: var(--barvaodkazuhover);
}

footer p {
    margin: 0;
    padding: 0;
}

footer .social a {
    color: #fff;
	text-align: center;
	margin-right: 20px;
}
footer .social a:last-child {
	margin-right: 0;
}
footer .social a:hover i {
    color: var(--barvaodkazuhover);
}

footer .social .fab {
    font-size: 28px;
    color: #fff;
}
footer .telefon {
    margin-bottom: 12px;	
}
footer .email, footer .telefon {
    display: flex;
    gap: 15px;	
	font-weight: 600;
	font-size: 18px;
}

/*Novinky - archiv*/
.vypis {
    margin-bottom: 35px;
    border: 2px solid #dead37;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 30px;
}

 .uvod .row .vypis:last-child {
     margin-bottom: 0 !important;
}
.uvod i {
	color: var(--barvaodkazuhover);
    padding-right: 10px;	
}
 .vypis:hover {
     border: 2px solid #3d5540;
}

 .vypis .obsah2 {
     padding-left: 30px;
}
.vypis .obsah2 h2 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 0;
    text-transform: none;
    margin-top: 0;
}
 .vypis .obsah2 a {
     text-decoration: none;
}
 .vypis .readmore i {
     margin-left: 5px;
     transition: 0.2s ease;
}
.clanek .readmore i {
     margin-right: 5px;
     transition: 0.2s ease;
}
.vypis .readmore {
	padding-top: 20px;
	display:block;
}
.clanek .readmore {
    padding-top: 0;
    display: block;
    margin-top: -30px;
    margin-bottom: 60px;
}
 .vypis a:hover {
     text-decoration: underline;
}
 .vypis .readmore:hover i {
     margin-left: 10px;
     transition: 0.2s ease;
}
 .clanek .readmore:hover i {
     margin-right: 10px;
     transition: 0.2s ease;
}
/*Pagination*/
 .pagination {
     width: 100%;
     display: flex;
     flex-direction: row;
     justify-content: center;
}
 .pagination .page-numbers {
     margin-top: 30px !important;
}
.pagination a {
    background: #0a0e06;
    margin: 5px;
    color: #fff;
    border-radius: 8px;
    line-height: 11px;
    text-decoration: none;
	height: 45px;
    line-height: 45px;
    text-align: center;
    padding: 0 20px;
}
 .pagination a:hover {
     background: var(--barvaodkazuhover);
	 color: #fff;
}
 .pagination .current {
     background: var(--barvaodkazuhover);
     margin: 5px;
     color: #fff;
     border-radius: 8px;
     line-height: 11px;
     text-decoration: none;
	height: 45px;
    line-height: 45px;
     padding: 0 20px;
}


/*DETAIL NOVINKY*/
.obsah  .publikovano {

}
.publikovano {
    display: block;
    padding-top: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}
.publikovano i {
	margin-right: 10px;
}

 .post-thumbnail img {
     border-radius: 15px;
     margin-bottom: 50px;
     margin: 0 auto;
     max-width: 100%;
     width: 100%;
     height: auto;
}
 .clanek h1 {
     padding-top: 5px !important;
}
@media(min-width:768px) {
footer .email, footer .telefon {
	justify-content: flex-end;
}	
	.hidden-md {
		display: none !important;
	}	
}
@media(max-width:767px) {
	.hidden-sm {
		display: none !important;
	}	
.how h3 {
		font-size: 16px !important;
	}
.banner {
    height: auto !important;
    padding-top: 105px;
    padding-bottom: 60px;	
	}
.how {
    backdrop-filter: none !important;
    background: none !important;
    border-radius: 0px !important;
    padding: 0px !important;
}
.under p {
	    display: block !important;	
}	
.t1 {
    display: block !important;
}
.t1 a {
    display: block !important;
    margin-left: 0px !important;	
}	
.under .t2 {
		padding-top: 10px;
}
.under img {
    margin-left: 0px !important;
}		
.produkt p {
    font-size: 14px !important;
	line-height: 135% !important;
}
.produkt h3 {
    font-size: 18px !important;
    line-height: 115% !important;
}	
.copyright {
		flex-direction: column-reverse;
}
.copyright a {
		display: block !important;
		padding-left: 0px !important;
		padding-right: 0px !important;
		padding-bottom: 15px;
		font-size: 14px;
	}	
.navigation .arrows {
	 font-size: 0;
	 padding: 10px 15px 10px 15px!important;
}
.navigation .arrows i {
	 font-size: 16px !important;
}
.back a {
		padding: 10px 15px 10px 15px!important;
}
}

/*Zpět nahoru tlačítko*/
.back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000; /* Ensure it appears above other content */
}

.btn {
    display: inline-block;
    text-align: center;
    width: 50px;
    height: 50px;
    background-color: var(--barvaodkazuhover);
    color: white;
    font-size: 30px;
    line-height: 50px; /* Vertically center the arrow */
    border-radius: 0;
    text-decoration: none;
    transition: background-color 0.3s ease;
	border-radius: 8px;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover {
    background-color: #000;
}

@media (max-width: 768px) {
.hero-slider {
  height: 600px !important;
}	
    .btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
        padding: 10px;
		line-height: 20px;
    }
}

/*Podstrana banner*/
.bannerpodstrany {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 0px;
    background-position: right;
}

 .bannerpodstrany p {
     font-size: 30px;
     line-height: 145%;
     font-weight: 400;
     padding-top: 0px;
     padding-bottom: 0;
     color: #0D7486;
     margin: 0;
     display: inline-block;
}
.bannerpodstrany .container {
	z-index: 2;
	position: relative;
}
.zuzena .container {
	max-width: 600px !important;
}


/*Kontakty*/
.ktn {
	max-width: 650px !important;
	column-gap: 25px;
}
.kontakty h3 {
	margin-top: 0 !important;
	margin-bottom: 10px !important;
}
.kontakty i {
    padding-right: 15px;
    font-size: 18px;
    color: var(--barvaodkazuhover);
}
.kontakty .name, .kontakty .contact {
	flex: 1;
} 
@media(max-width:767px) {
.kontakty .name, .kontakty .contact {
	flex:none !important;
	display: block !important;
}
.kontakty .contact {
		margin-top: 25px;
	}
}


/*Video embed*/
    .embed-container { 
        position: relative; 
        padding-bottom: 56.25%;
        overflow: hidden;
        max-width: 100%;
        height: auto;
    } 

    .embed-container iframe,
    .embed-container object,
    .embed-container embed { 
		border-radius: 8px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
}
.wp-video, video.wp-video-shortcode, .mejs-container, .mejs-overlay.load {
    width: 100% !important;
    height: 100% !important;
}
.mejs-container {
    padding-top: 56.25%;
}
.wp-video, video.wp-video-shortcode {
    max-width: 100% !important;
}
video.wp-video-shortcode {
    position: relative;
}
.mejs-mediaelement {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.mejs-controls {
    display: none;
}
.mejs-overlay-play {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto !important;
    height: auto !important;
}

/*Boxy*/
.boxy {
    background: #f4f4f4;	
}
.box {
    position: relative;
    margin: 0 auto;
    border-radius: 8px;
    height: 100%;
    border: 1px solid rgba(15, 15, 15, 0.1);
	background: #fff;
}
.box:hover {
    box-shadow: 0px 20px 110px rgba(15, 15, 15, 0.1);
	border: 1px solid rgba(15, 15, 15, 0);
}
.nozoom:hover {
	box-shadow: none !important;
	border: 1px solid rgba(15, 15, 15, 0.1) !important;
}
.nozoom:hover .obrazek img {
    transform: scale(1.0) !important;
}
.box .info {
 	padding: 25px 25px 25px 25px;	
}
.box .obrazek {
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}
.domov .box .obrazek img {
	width: 100%;
}
.box .obrazek img {
	height: auto;
	transition: all 0.2s;
	margin-bottom: -5px;
}
.box:hover .obrazek img {
    transform: scale(1.03);
}
.box h3 {
	margin-top: 0 !important; 
}
.box a {
	font-size: 24px;
	color: #000;
	font-weight: 600;
	margin-bottom: 0;
	padding-bottom: 0;
	text-decoration: none;
}
.box a:hover h3 {
	color: var(--barvaodkazuhover) !important;
	text-decoration: none;
}

.box p {
	font-size: 16px;
	color: #000;
	line-height: 135%;
	font-weight: 400;
	margin-top: 5px;
	margin-bottom: 40px !important;
}
.boxy ~ footer {
	padding-top: 0px !important;
}

/*Produkty*/
.produktyp {
    background: #fff;	
}
.produktp {
    position: relative;
    margin: 0 auto;
    border-radius: 8px;
    height: 100%;
	border: 1px solid color(srgb 0.06 0.06 0.06 / 0.1);
	background: #fff;
}
.produktp:hover {
    box-shadow: 0px 20px 110px rgba(15, 15, 15, 0.1);
	border: 1px solid #fff;
}
.produktp .info {
 	padding: 25px 25px 25px 25px;	
}
.produktp .obrazek {
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}

.produktp .obrazek img {
	height: auto;
	transition: all 0.2s;
	margin-bottom: -5px;
}
.produktp:hover .obrazek img {
    transform: scale(1.03);
}
.box h3 {
	margin-top: 0 !important; 
}
.produktp h3 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.produktp a {
	font-size: 24px;
	color: var(--barvaodkazuhover) !important;
	font-weight: 600;
	margin-bottom: 0;
	padding-bottom: 0;
	text-decoration: none;
}
.produktp a:hover h3 {
	text-decoration: none;
}

.produktp p {
	font-size: 16px;
	color: #000;
	line-height: 135%;
	font-weight: 400;
	margin-top: 5px;
	margin-bottom: 40px !important;
}

/*Pracovní pozice*/
.pozice a {
	min-width: 300px;
    width: fit-content;
    width: -moz-fit-content;
    background: #e7000e;
    border-radius: 8px;
    padding: 20px 20px;
	margin-bottom: 15px;
	display: block;
}
.pozice:last-of-type{
	margin-bottom: 50px;
}
.pozice a:hover {
	background: #000;
}
.pozice h3 {
	margin-top: 0 !important;
	padding-top: 0;
	margin-bottom: 15px !important;
	color: #fff !important;
}
.pozice li a {
	color: #fff;
}
.pozice li {
	list-style: none;
}
.pozice ul {
	margin: 0;
	padding: 0;
}
.pozice ul li:before {
	display: none !important;
}



/*Detail služba*/
.detail-sluzba .uvod ul {
    counter-reset: foo;
    display: table;
}

.detail-sluzba .uvod ul > li {
    counter-increment: foo;
    display: table;
	margin-bottom: 5px;
    line-height: 150%;
}

.detail-sluzba .uvod ul > li::before {
    text-align: right;
    display: table-cell;
}

.detail-sluzba .uvod ul {
	padding-left: 0;
	margin-left: 0;
}
.detail-sluzba .uvod ul li:before{
        content: '\f058';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 20px;
        position: relative;
        padding-right: 15px;
		color: var(--barvaodkazuhover);
	    margin-top: 2px;
   		float: left;
 }
.detail-sluzba .uvod ul li {
	list-style: none;
}
.phone-number small {
	margin-top: -5px;
	font-size: 15px !important;
}

/*Služby*/
.sluzba img {
	margin-bottom: 15px;
}
.sluzba p {
	color: #6B6B6B;
}

.odk {
	font-weight: 700;
}

#share-reservation-btn {
	color: #1C1C2E;
}

#clean-reservation-btn {
	color: #1C1C2E;
}

.clean-code-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
}

.tool-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    height: 100%;
    align-items: center;
}

.sluzba .odk {
	color: #58C2F4;
	font-weight: 700;
	text-decoration: none;
}
.sluzba .odk:hover {
	text-decoration: underline;
}

/*Výhody*/
.vyhoda img {
	margin-bottom: 15px;
}
.vyhoda h3 {
	padding-left: 20px;
	margin-bottom: 10px !important;
}
.vyhoda p {
	padding-left: 20px;
	color: #6B6B6B;
	margin-top: 0;
	margin-bottom: 0;
}

/*CTA partner*/
.cta h2 {
	color: #fff;
	margin-bottom: 0;
}
.cta p {
	color: #d5d5d5;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 18px;
}
.cta .container .ctabg {
	border-radius: 42px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
/*CTA plán*/
.plan {
	position: relative;
}
.plan h2.stred {
	font-size: 56px;
	margin-top: 30px;
	margin-bottom: 20px;
}
.plan p {
	color: #6B6B6B;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 18px;
}
.plan .odk {
	display: block;
	color: #58C2F4;
	text-decoration: underline;
	font-weight: 700;
}
.plan .odk:hover {
	text-decoration: none;
}
.plan:before {
    position: absolute;
    content: "";
    background: url('/wp-content/themes/main/img/road-left.svg');
    background-repeat: no-repeat;   
    background-size: contain;
}
.plan:after {
	position: absolute;
	content: "";
	background: url('/wp-content/themes/main/img/road-right.svg');
	background-repeat: no-repeat;
    background-size: contain;
}
@media(min-width:1800px){
.plan:before {
	width: 666px;
    height: 300px;
    top: calc(50% - 150px);
	left: 0;
}
.plan:after {
    width: 666px;
    height: 532px;
    top: calc(50% - 266px);
    right: 0;
}	
}
@media(min-width:1600px) and (max-width:1800px) {
.plan:before {
	width: 666px;
    height: 300px;
    top: calc(50% - 150px);
	left: -100px;
}
.plan:after {
    width: 666px;
    height: 532px;
    top: calc(50% - 266px);
    right: -100px;
}	
}
@media(min-width:1400px) and (max-width:1600px) {
.plan:before {
	width: 666px;
    height: 300px;
    top: calc(50% - 150px);
	left: -200px;
}
.plan:after {
    width: 666px;
    height: 532px;
    top: calc(50% - 266px);
    right: -200px;
}	
}
@media(min-width:1050px) and (max-width:1400px) {
.plan:before {
	width: 456px;
    height: 232px;
    top: calc(50% - 116px);
	left: -100px;
}
.plan:after {
    width: 456px;
    height: 364px;
    top: calc(50% - 182px);	
	right: -100px;	
}		
}
@media(min-width:850px) and (max-width:1050px) {
.plan:before {
	width: 456px;
    height: 232px;
    top: calc(50% - 116px);
	left: -200px;
}
.plan:after {
    width: 456px;
    height: 364px;
    top: calc(50% - 182px);	
	right: -200px;	
}		
}
@media(min-width:768px) and (max-width:850px) {
.plan:before {
	width: 456px;
    height: 232px;
    top: calc(50% - 116px);
	left: -250px;
}
.plan:after {
    width: 456px;
    height: 364px;
    top: calc(50% - 182px);	
	right: -250px;	
}		
}
@media(min-width:576px) and (max-width:768px) {
.plan:before {
	width: 456px;
    height: 232px;
    top: calc(50% - 116px);
	left: -300px;
}
.plan:after {
    width: 456px;
    height: 364px;
    top: calc(50% - 182px);	
	right: -300px;	
}		
}
@media(max-width:576px) {
.partner {
    margin-top: 0px;
}
.copyright .copymove a {
	padding-top: 10px;
	order: 1;
}
.copyright .copymove span {
	order: 2;
}
footer .copyright p{
	flex-direction: column;
	    align-items: flex-start;
}	
#ptcz-contact-form .checks label {
		font-size: 15px !important;
}	
.plan:before {
	display: none !important;
}
.plan:after {
	display: none !important;
}		
}
.page-5776 h1 {
	display: none !important;
}
.page-5776 .fa-check {
	box-shadow: 0px 24px 24px 0px #00000014;
    background: #1C1C2E;
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    text-align: center;
    line-height: 64px;
    font-size: 26px;
    padding: 0;
	margin-bottom: 5px;
}
.page-6398 h1 {
	display: none !important;
}
.page-6398 .fa-check {
	box-shadow: 0px 24px 24px 0px #00000014;
    background: #1C1C2E;
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    text-align: center;
    line-height: 64px;
    font-size: 26px;
    padding: 0;
	margin-bottom: 5px;
}
.page-6844 h1 {
	display: none !important;
}
.page-6844 .fa-xmark {
	box-shadow: 0px 24px 24px 0px #00000014;
    background: #1C1C2E;
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    text-align: center;
    line-height: 64px;
    font-size: 26px;
    padding: 0;
	margin-bottom: 5px;
}
.page-6846 h1 {
	display: none !important;
}
.page-6846 .fa-xmark {
	box-shadow: 0px 24px 24px 0px #00000014;
    background: #1C1C2E;
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    text-align: center;
    line-height: 64px;
    font-size: 26px;
    padding: 0;
	margin-bottom: 5px;
}

/*Cookies*/
.cmplz-categories details {
	display: block !important;
}
.cmplz-categories {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 15px;
}
.cmplz-service-header {
	margin-top: 20px;
	margin-bottom: 50px;
}
.cmplz-sharing-data {
	margin-bottom: 50px;
}

/*Předdefinované výlety HP*/
.vylety-carousel {
  position: relative;
}
.vylety-carousel .container {
  position: relative;
}
.vylety-carousel h2 {
	margin-bottom: 0 !important;
}
.vylety-nav button {
	color: #1C1C2E !important;
}
.vylety-nav button i {
	color: #1C1C2E !important;
}

.vylety-nav {
    position: absolute;
    top: -15px;
    right: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.vylety-nav button {
    background: #fff;
    border: 1px solid #6B6B6B3D;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    font-weight: bold;
    cursor: pointer;
}
.vylety-nav button:hover, .vylety-nav button:focus, .vylety-nav button:active {
    border: 1px solid #1C1C2E !important;
}
.vylety-slider {
  margin-top: 30px;
}
.carousel-item {
  width: 350px;
  padding: 10px;
}
.carousel-item:first-child {
  padding-left: 0;
}
.vylet-box {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #6B6B6B29;
}
.vylet-box:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.vylet-box:hover .naplanovat-btn {
	text-decoration: underline;
}  

.vylet-img-wrap {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.vylet-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.vylet-vhodne {
    position: absolute;
}
.vylet-vhodne span {
    background: #1C1C2E;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
    text-align: left;
    width: fit-content;
    width: -moz-fit-content;
}
.vylet-vhodne-foto {
    position: relative;
	margin-bottom: 5px;
}

.novinka-single .vylet-pesi i {
    width: 40px;
    height: 30px;
    font-size: 18px;
    line-height: 30px;
}

.vylet-vhodne-foto img {
    background: #fff;
    color: #1E1E1E;
    padding: 6px 10px 5px 10px;
    border-radius: 12px;
    display: block;
    width: fit-content;
    width: -moz-fit-content;
    height: auto;
    object-fit: none;
}
.vylet-doba {
    position: absolute;
    background: #fff;
    color: Gray;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.vylet-vhodne {
  top: 10px;
  left: 10px;
}
.vylet-doba {
  top: 10px;
  right: 10px;
}

.vylet-doba span {
	color: #1c1c2e;
}
.vylet-content {
    padding: 30px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.vylet-content h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;	
}
.vylet-harmonogram {
  padding-left: 0px;
  margin: 10px 0 20px;
  font-size: 14px;
  line-height: 1.4;
}

.vylet-harmonogram li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-weight: 600;
  margin-bottom: 4px;	
}

.vylet-harmonogram .cislo {
  flex: 0 0 10px;
  font-weight: bold;
  text-align: center;
  color: #58C2F4;
  font-weight: bold;
  margin-right: 5px;
}

.vylet-harmonogram .nazv {
  flex: 1;
  line-height: 1.4;
  color: #1C1C2E;
  font-weight: 700;	
}

.vylet-pesi i {
    background: #fff;
    color: transparent;
    border-radius: 16px;
    display: block;
    width: fit-content;
    width: -moz-fit-content;
    height: auto;
    object-fit: none;
    width: 36px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    height: 26px;
    font-size: 16px;
    line-height: 26px;
}

.vylet-pesi .fa-solid:before {
    content: var(--fa);
    -webkit-text-stroke: 0.6px black;
    color: white;
}

.trip-seo .vylet-pesi {
    position: relative;
    border: 2px solid #1c1c2e;
    border-radius: 16px;
}


.vylet-harmonogram .timev {
  display: block;
  margin-left: 0 !important;
  color: var(--barvap) !important;	
}


.vylet-harmonogram ::marker {
  font-size:0 !important;
}

.naplanovat-btn {
	display: flex;
    margin-top: auto;
    background: none;
    color: #58C2F4;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
}
.naplanovat-btn:hover {
	text-decoration: underline;
}
.naplanovat-btn:focus {
	text-decoration: underline;
	outline: 2px solid #000 !important;
}

.hero-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
}
.view-all,
.hero-overlay {
  position: absolute;
  right: 15px;
  bottom: 15px;

  /* pozadí s průhledností */
  background: rgba(0, 0, 0, 0.35);

  /* rozmazání obsahu ZA prvkem */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* Safari */

  color: #fff;
  border-radius: 16px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;	
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px; /* mezera mezi ikonou a textem */
}


.trip-hero-carousel { overflow: hidden; border-radius: 16px; }
.trip-hero-carousel .trip-hero-slide { width: 100%; }
.trip-hero-carousel .trip-hero-slide img {
  width: 100%;
  height: auto;
  border-radius: 16px;	
}

/* feed je mimo layout */
.hero-lightbox-feed { clip-path: inset(100%); }

/* ať je mobilní carousel vidět i bez JS/Flickity */
.trip-hero-carousel.d-md-none {
  display: block;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.trip-hero-carousel .trip-hero-slide {
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
}
.trip-hero-carousel .trip-hero-slide img {
  display: block;
  height: auto;
  max-width: 100%;
}
.trip-hero-carousel {
  position: relative;
}
.trip-hero-carousel-wrapper {
  position: relative;
}
.trip-hero-carousel-wrapper .hero-counter {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 12px;
    pointer-events: none;
    letter-spacing: 1px;
}

@media(max-width:991px) {
.view-all, .hero-overlay {
    right: 5px;
    bottom: 10px;
    padding: 5px 10px;
    font-size: 14px;
}	
}

.trip-hero-carousel .hero-overlay {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.6);
  border-radius: 12px;
}
.trip-hero-carousel .trip-hero-slide {
  position: relative; /* nutné, aby overlay držel v rohu */
}

.lb-counter{
  position: fixed;            /* aby byl vždy nahoře */
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10010;             /* nad obrázkem i šipkami */
  padding: 6px 10px;
  border-radius: 14px;
  font: 600 13px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#fff;
  background: rgba(0,0,0,.6);
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width:768px){
  .lb-counter{ top: 8px; font-size:12px; padding:5px 9px; }
}



@media (max-width: 768px) {
    .trip-seo .trip-stop-image img {
        width: 160px;
        height: 120px;
        object-fit: cover;
        border-radius: 16px;
    }
}

.trip-seo .vylet-vhodne {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    align-items: start;
}
.trip-seo .vylet-vhodne-foto img {
    background: #fff;
    color: #1E1E1E;
    border-radius: 16px;
    display: block;
    width: fit-content;
    width: -moz-fit-content;
    height: auto;
    object-fit: none;
    width: 40px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    height: 30px;
}
.trip-seo .vylet-vhodne-foto {
    position: relative;
    border: 2px solid #1c1c2e;
    border-radius: 16px;
	margin-right: 8px;
}
.trip-seo .vylet-vhodne span {
    background: #1C1C2E;
    color: #fff;
    padding: 10px 10px;
    font-size: 12px;
    border-radius: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
    text-align: left;
    width: fit-content;
    width: -moz-fit-content;
}

.trip-seo .trip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.trip-seo .trip-tags .badge {
  background-color: #58C2F4;
  font-size: 0.875rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: #fff;
}

.trip-seo .trip-featured img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.trip-seo dl dt {
  font-weight: 600;
  color: #333;
}

.trip-seo dl dd {
  margin-bottom: 1rem;
}

#map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  margin-top: 1rem;
}

.trip-seo .trip-stops {
  margin-top: 3rem;
}

.trip-seo .trip-stops h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.trip-seo .trip-stops .card {
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.trip-seo .trip-stops .card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.trip-seo .trip-stops .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trip-seo .trip-stops .card-text {
  font-size: 0.95rem;
  color: #555;
}

.trip-seo .trip-stops .card-footer {
  background: #f9f9f9;
  border-top: 1px solid #eee;
  padding: 0.75rem 1rem;
}

.trip-seo .trip-stops .card-footer img {
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  height: auto;
  width: 100%;
}

.trip-seo .trip-stops .row.g-2 > div {
  padding: 0.25rem;
}

.trip-seo .btn-primary {
  background-color: #58C2F4;
  border-color: #58C2F4;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  transition: background 0.3s ease;
}

.trip-seo .btn-primary:hover {
  background-color: #40b3ea;
  border-color: #40b3ea;
}
/* === SEO výlet stránka === */
.trip-seo .trip-title-page {
  font-size: 2.2rem;
  font-weight: 700;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.trip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trip-tags .badge {
  background-color: #007bff;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
    text-align: left;
    width: fit-content;
}

.trip-featured img {
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  max-height: 500px;
  object-fit: cover;
}

.trip-stops h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.trip-stops .card {
  border: 1px solid #eee;
  border-radius: 0.6rem;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.trip-stops .card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.trip-stops .card-body {
  padding: 1rem 1.25rem;
}

.trip-stops .card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.trip-stops .card-text {
  font-size: 0.95rem;
}

.trip-stops .card-footer {
  border-top: 1px solid #eee;
  padding: 0.75rem 1.25rem;
}

.trip-stops .card-footer img {
  border-radius: 0.4rem;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

#map {
  width: 100%;
  height: 400px;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  margin-top: 1rem;
}
.trip-hero-img {
  aspect-ratio: 16 / 6.5;
  position: relative;
  border-radius: 16px;
}

.trip-hero-bg {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.trip-hero-tags {
    z-index: 2;
    position: absolute;
    top: 0;
}

.trip-badge {
  background-color: #58C2F4;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: #fff;
}

.trip-hero-title {
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
    position: absolute;
    bottom: 0;
}
.trip-hero-title h1 {
	color: #fff !important;
}

.informace {
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	gap:.5rem;
	color:#6B6B6B;
	margin-bottom: 20px !important;	
}
.informace .sep { margin:0 .25rem; }

.trip-inner {
	padding-top: 40px;
}

.trip-inner #map {
	margin-top: 0px !important;
}

.trip-inner h2 {
	margin-bottom: 20px !important;
}

.ovyletu .ovyletu-toggle {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
}
.note-section label {
	font-weight: 700;
}

.ovyletu .ovyletu-toggle:hover {
	text-decoration: underline;
}
.ovyletu .ovyletu-after[hidden] { display:none !important; }

.trip-inner .stop-name{
	color: #1C1C2E;
}
.trip-inner .trip-stop-item {
    padding-bottom: 0;
}
.rezt a {
	width: 100%;
}
.rezt .newbutton {
	width: 100%;
}
.rezt .newbutton:hover {
	text-decoration: none;
}
.trip-inner .place-photo-grid {
    display: flex;
}
.place-photo-grid .d-none { display: none !important; }

.backbutton {
	margin-bottom: 15px;
}

.backbutton a {
	color: #6B6B6B;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}
.backbutton a:hover {
	color: #6B6B6B !important;
	text-decoration: underline;
}
.backbutton i {
	color: #6B6B6B;
	font-size: 14px;
	font-weight: 600;
}

.triph1 {
	font-size: 40px;
	font-weight: 600;
	color: #1C1C2E;
	padding-bottom: 15px;
}

.faq { margin-top: 24px; }
.faq-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 40px;
}
@media (max-width: 991px) {
  .faq-grid { grid-template-columns: 1fr; }
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-q {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #1C1C2E;
}

.faq-col {
    display: flex;
    flex-direction: column;
    row-gap: 20px;	
}

.faq-arrow::before {
  content: "";
  position: absolute; inset: 0;
  margin: auto;
  width: 8px; height: 8px;
  border-right: 2px solid #7a7a7a;
  border-bottom: 2px solid #7a7a7a;
  transform: rotate(-45deg); /* šipka doprava */
  top: 5px; left: 6px;
}

.faq-arrow {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: none;
  position: relative;
  transition: transform .25s ease;
}

.faq-toggle[aria-expanded="true"] .faq-arrow {
  transform: rotate(90deg); /* po otevření dolů */
}

.faq-a {
  overflow: hidden;
  height: 0; /* pro animaci přes JS */
  transition: height .28s ease;
  will-change: height;
}
.faq-a-inner {
  padding: 0 20px 18px 20px;
  color: #444;
}
.faq-a p:last-child { margin-bottom: 0; }



.trip-hero-grid[hidden] { display:none !important; }

.trip-hero-grid {
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: clamp(280px, 42vw, 560px);
}

.trip-hero-grid .hero-cell {
  border-radius: 20px;
  overflow: hidden;
  background:#f2f2f2;
}
.trip-hero-grid .hero-cell img {
  width:100%; height:100%; object-fit:cover; display:block;
}

/* umístění jako na screenu */
.hero-main      { grid-column: 1 / 2; grid-row: 1 / 3; }
.hero-mid-top   { grid-column: 2 / 3; grid-row: 1 / 2; }
.hero-mid-bot   { grid-column: 2 / 3; grid-row: 2 / 3; }
.hero-right     { grid-column: 3 / 4; grid-row: 1 / 3; }


@media (max-width: 650px){
  .trip-hero-grid{
    height:auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 48vw); /* výška řádků – klidně uprav */
    gap: 12px; /* volitelné */
  }

  /* Zrušíme původní rozsahy a dáme 2×2 */
  .hero-main    { grid-column: 1 / 2; grid-row: 1 / 2; }
  .hero-mid-top { grid-column: 2 / 3; grid-row: 1 / 2; }
  .hero-mid-bot { grid-column: 1 / 2; grid-row: 2 / 3; }
  .hero-right   { grid-column: 2 / 3; grid-row: 2 / 3; }

  /* pokud máš někde min-height, radši ho vypni */
  .trip-hero-grid .hero-cell { min-height: 0; }
}


.vylety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 991px) {
  .vylety-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
.tool-buttons {
    justify-content: flex-start !important;
	margin-top: 10px;
	height: auto !important;
}	
  .vylety-grid { grid-template-columns: 1fr; }
}

.vylet-grid-item, .vylet-box { height: 100%; }

.vylet-content h3 {
    margin-top: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
}