/*-----------------------------------------------------------------------------------*/
/*	COLORS VARIABLES
/*-----------------------------------------------------------------------------------*/
:root {
  /* základní barvy */
  --color-bg: #4E4E4E;
  --color-bg-dark: #A82A2D;
  --color-bg-light: #C2C2C2;
  --color-text: #ffffff;
  --color-text-dark: #000000;
  --color-accent: #E7BB27;
  --color-lines: #D9D9D9;
  --menu-max-width: 1360px;
  --color-menu-hover: #E7BB27;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ul,
li, fieldset, form, label, legend, caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
:focus {
  outline:0;
}

ul {
  list-style:none;
}
table {
  border-collapse:separate;
  border-spacing: 0;
}
.clear {
  clear: both;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  display: inline-block;
}
* html .clearfix {
  height:1%;
}
.clearfix {
  display:block;
}
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; margin: 0;
}
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  font: 400 100%/1.65 serif;
  scroll-behavior: smooth;
}
body {
  position: relative;
  color: var(--color-text);
  font-size: 16px;
  font-family: 'redhat_light', Tahoma, Arial, sans-serif;
  line-height: 1.4em;
  line-height:1;
  overflow-x: hidden;
  background: var(--color-bg);
  overflow-y: auto !important;
  margin: 0 !important;
  height: 100%;
}
body {
  word-wrap: break-word;
}


/*-----------------------------------------------------------------------------------*/
/*	GRID LAYOUT
/*-----------------------------------------------------------------------------------*/
.section {
  padding-block: 60px;                 
}
.section.fullwidth {
  padding-block: 0px; 
  padding: 40px 0px;                
}
@media (max-width: 600px) {
  .section {
    padding-block: 30px;                 
  }
}
/* utilitky pro variace section */
.pb-0   { padding-bottom: 0; }
.pb-15   { padding-bottom: 15px; }
.pb-30  { padding-bottom: 30px; }
.pb-60  { padding-bottom: 60px; }

.pt-0   { padding-top: 0; }
.pt-10  { padding-top: 10px; }
.pt-15  { padding-top: 15px; }
.pt-30  { padding-top: 30px; }
.pt-60  { padding-top: 60px; }
.pt-90  { padding-top: 90px; }

.mt-0   { margin-top: 0; }
.mt-30  { margin-top: 30px; }
.mt-60  { margin-top: 60px; }
.mt-90  { margin-top: 90px; }

.overlap-top-30 { margin-top: -30px; }
.overlap-top-60 { margin-top: -60px; }
.overlap-top-90 { margin-top: -90px; }

.overlap-90 { margin-right: -90px; }

/* Wrapper zarovnaný na střed */
.wrap {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 30px;
  box-sizing: border-box;
}
.fullwidth .wrap {
  padding-inline: 0px;
}
.pl-0   { padding-left: 0; }
.pl-15  { padding-left: 15px; }
.pl-30  { padding-left: 30px; }
.pl-60  { padding-left: 60px; }

.pr-0   { padding-right: 0; }
.pr-15  { padding-right: 15px; }
.pr-30  { padding-right: 30px; }
.pr-60  { padding-right: 60px; }

/* Grid jádro */
.row {
  display: grid;
  gap: var(--gap, 30px);               /* mezery mezi sloupci/řádky */
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.row.cols-2-fixed-left  { grid-template-columns: var(--fixed, 400px) minmax(0, 1fr); }
.row.cols-2-fixed-right { grid-template-columns: minmax(0, 1fr) var(--fixed, 400px); }

/* Pomocné utility pro rozsahy (12-sloupcový grid) */
.col { min-width: 0; }                 /* umožní zmenšování obsahu bez přetékání */
.col.center {
  display: flex;
  justify-content: center;
}

.span-12 { grid-column: span 12; }
.span-8  { grid-column: span 8; }      /* 8/12 = ~66.66% */
.span-6  { grid-column: span 6; }      /* 6/12 = 50%    */
.span-5  { grid-column: span 5; }      /* ~41.66%       */
.span-4  { grid-column: span 4; }      /* 4/12 = ~33.33% */
.span-3  { grid-column: span 3; }
.span-2  { grid-column: span 2; }
.row.cols-5 > .col { grid-column: span 2; }

/* Předpřipravené kombinace (pro pohodlí třídami) */
.cols-1 > .col { grid-column: span 12; }                  /* 100% */
.cols-2-50 > .col { grid-column: span 6; }                /* 50/50 */
.cols-2-66 > :nth-child(1) { grid-column: span 8; }       /* 66/33 */
.cols-2-66 > :nth-child(2) { grid-column: span 4; }       
.cols-2-33 > :nth-child(1) { grid-column: span 4; }       /* 33/66 */
.cols-2-33 > :nth-child(2) { grid-column: span 8; }       
.cols-2-60 > :nth-child(1) { grid-column: span 7; }       /* 60/40 (7/5) */
.cols-2-60 > :nth-child(2) { grid-column: span 5; }
.cols-2-40 > :nth-child(1) { grid-column: span 5; }       /* 40/60 */
.cols-2-40 > :nth-child(2) { grid-column: span 7; }
.cols-3-33 > :nth-child(1) { grid-column: span 4; }                /* 33/33/33 */
.cols-3-33 > :nth-child(2) { grid-column: span 4; }    
.cols-3-33 > :nth-child(3) { grid-column: span 4; }    

.cols-sform > :nth-child(1) { grid-column: span 5; }
.cols-sform > :nth-child(2) { grid-column: span 4; }       /* 40/60 */
.cols-sform > :nth-child(3) { grid-column: span 3; }

.row.cols-3 {
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* 3 stejných sloupců */
}
.row.cols-3 > .col {
  grid-column: auto; 
}

.parent-50 {
  display: flex;
  gap: 30px;
}
.parent-50 > div, .parent-50 > p {
  flex: 1;
  margin: 0;
  padding: 0; 
}
.parent-50 > ul {
  flex: 1 1 0;
  margin: 0;
  padding: 0; 
}


/*-----------------------------------------------------------------------------------*/
/*	SECTIONS
/*-----------------------------------------------------------------------------------*/
.section ul, .section ol {
  list-style-type: square;
  padding-left: 20px;
  margin: 10px 0px 20px 0px;
}
.section ol {
  list-style-type: decimal;
}
.section ul li, .section ol li {
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 3px;
  margin-left: 20px;
}
ul.signs li {
  font-size: 18px;
  padding-bottom: 10px;
}
.dark {
  color: var(--color-text);
  background-color: var(--color-main);
}
.grey {
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
}
#hero {
  height: 40px
}
#intro {
  min-height: 600px;
  background-image: url('../../images/bgr-intro.webp'); 
  background-position: center top 40px;
  background-repeat: no-repeat;
}
.intro-hlt {
  background: var(--color-bg-dark);
  padding: 40px;
  margin-bottom: 60px;
  text-transform: uppercase;
}
#co-je-dulezite .intro-hlt {
  margin-bottom: 0px;
}
#pokoje .cols-2-50 .col:first-child {
  padding-right: 30px;
}
#pokoje .cols-2-50 .col:last-child {
  padding-left: 30px;
}
#proc-od-nas .cols-2-40 .col:last-child {
  position: relative;
}
#proc-od-nas .cols-2-40 .col:last-child .intro-hlt {
  margin-left: -60px;
  position: relative;
  z-index: 2;
}
#co-je-dulezite {
  position: relative;
  z-index: 3;
}
#proces  {
  position: relative;
  z-index: 1;
}
#co-je-dulezite .intro-hlt {
  position: relative;
  z-index: 4;
}
#proces .cols-2-50 .col:last-child {
  padding-top: 120px;
}
#proces .cols-2-50 .col img {
  z-index: 150 !important;
}
#proces .proc {
  padding-top: 60px;
  width: 60%;
}

#dulezite .cols-2-50 .col:first-child {
  position: relative;
}
#dulezite .cols-2-50 .col:first-child .intro-hlt {
  margin-right: -60px;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  #proc-od-nas .cols-2-40 .col:last-child .intro-hlt {
    margin-left: 0;
  }
}
/* ---------------------------
   Sticky header and alignment fixes
   (merged & adjusted to integrate with existing header rules)
   --------------------------- */
.site-header {
  display: flex;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1100;
}
.site-header > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 30px;
  box-sizing: border-box;
  height: 180px;
}
.site-header .header-right {
  display: flex !important;
  flex-direction: column; 
  align-items: flex-end;
  gap: 6px;
  margin-left: 0;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-header .site-logo,
.site-header #logo {
  margin: 0;
  padding: 15px 0px;
  display: block;
  flex: 0 0 auto;
  align-self: flex-start;
}
.site-header .site-logo img,
.site-header #logo img {
  display: block;
  height: 120px;
  max-height: 100%;
  width: auto;
  transition: height 240ms cubic-bezier(.2,.9,.2,1), transform 240ms cubic-bezier(.2,.9,.2,1);
}
.site-header .header-right {
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.site-header .site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: gap 240ms cubic-bezier(.2,.9,.2,1), transform 240ms cubic-bezier(.2,.9,.2,1);
}
.header-spacer {
  display: none !important;
  width: 100%;
  height: 0;
  transition: height 240ms cubic-bezier(.2,.9,.2,1);
}
.has-sticky .header-spacer {
  display: block;
}
#logo { float: none !important; }
.header-flex > #logo { align-self: center !important; }


/*-----------------------------------------------------------------------------------*/
/*	MAIN MENU
/*-----------------------------------------------------------------------------------*/
.menu-row {
  display: flex;
  /*align-items: center;*/
  
}
.menu-row > a {
  flex: 1 1 auto;
  min-width: 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  text-decoration: none;
}
.menu-row > .submenu-toggle {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.menu-icos, #menu-toggle {
  font-size: 21px;
  color: var(--color-text);
  background: var(--color-accent);
  transition: color 0.2s;
  padding: 11px;
  margin: 0px 0px 0px 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.menu-icos:hover, .menu-icos:focus, 
#menu-toggle:hover, #menu-toggle:focus {
  color: var(--color-text);
  background: var(--color-bg-dark);
}
/*@media (min-width: 901px) {*/
  .site-header .site-nav,
  .site-header #mainmenu {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  #mainmenu {
    display: flex;
    /*align-items: center;*/
    gap: 0px; /* nebo dle potřeby */
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
  #mainmenu .menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 15px 0px 0px 0px;
    padding: 0;
  }
  #mainmenu .menu > li {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0px 10px 0px 0px;
  }
  #mainmenu .menu > li:last-child {
    padding: 0px 0px 0px 0px;
  }

  #mainmenu .menu > li .menu-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }
  #mainmenu .menu > li .menu-row > a {
    text-transform: uppercase;
    font-size: 18px;
    color: var(--color-text);
    padding: 10px 10px 26px 10px;
    transition: color 0.2s;
  }
  #mainmenu .menu > li .menu-row > a:hover,
  #mainmenu .menu > li .menu-row > a:focus {
    color: var(--color-menu-hover);
  }
/*}*/

#mainmenu .desktop-nav { display: flex; }
#menu-toggle { display: none; }
#mobile-overlay { display: none; }

/*-----------------------------------------------------------------------------------*/
/*	TYPOGRAPHY
/*-----------------------------------------------------------------------------------*/
.imgleft {
  float: left;
  margin: 0px 10px 20px 0px;
}
.imgright {
  float: right;
  margin: 0px 0px 20px 10px;
}
img.resp {
  display: block;       /* odstraní inline mezery */
  max-width: 100%;      /* drží se rodiče */
  height: auto;
}
.round {
  border-radius: 0px;
}
.txcenter {
  text-align: center;
}
.txleft {
  text-align: left;
}
.txright {
  text-align: right;
}
.toright {
  float: right;
}
.rpad {
  padding-right: 30px;
}
.lpad {
  padding-left: 30px;
}
.flex {
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
a {
  color: var(--color-main);
  text-decoration: none;
}
a:hover {
  color: var(--color-accent);
  text-decoration: none;
}
p {
  font-size: 16px;
  line-height: 21px;
  padding-bottom: 10px;
  margin: 0px;
}
strong {
  font-family: 'redhat_bold', Tahoma, Arial, sans-serif;
  font-weight: normal;
}

/*-----------------------------------------------------------------------------------*/
/*	HEADERS
/*-----------------------------------------------------------------------------------*/
h1, h2 {
  display: flex;
  flex-direction: column;
  color: var(--color-main);
  font-size: 40px;
  font-family: 'redhat_light', Tahoma, Arial, sans-serif;
  font-weight: 100;
  line-height: 1.1em;
  margin: 0px 0px 20px 0px;
}
h1 strong, h2 strong {
  font-family: 'redhat_bold', Tahoma, Arial, sans-serif;
  font-weight: 100;
}
h1 > span, h2 > span {
  display: flex;      
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-family: 'redhat_bold', Tahoma, Arial, sans-serif; 
  font-size: 18px; 
  color: var(--color-accent, #23B290);
  line-height: 1;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
}
h1 span::before, h2 span::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: var(--color-accent, #23B290); 
  border-radius: 2px;
  flex: 0 0 auto;
}
h1.smlr {
  font-size: 40px;
}
h2.smlr {
  font-size: 40px;
}
h1.bigr, h2.bigr {
  font-size: 48px;
}

.dark h2, .dark h3, .dark h4 {
  color: #fff;
}
h3 {
  color: var(--color-main);
  font-size: 24px;
  font-family: 'gloock', Tahoma, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.2em;
  padding: 20px 0px 10px 0px;
}
h4 {
  color: var(--color-main);
  font-size: 18px;
  font-family: 'redhat_bold', Tahoma, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.2em;
  padding: 20px 0px 5px 0px;
}
h4.likeUl {
  padding: 7px 0px 7px 30px;
  margin: 20px 0;
  border-left: 2px solid var(--color-accent);
}
hr.hline {
 border: none;
 border-bottom: 1px solid var(--color-lines);
 padding: 0 0 0px 0; margin: 0 0 15px 0;
}

/*-----------------------------------------------------------------------------------*/
/*	BUTTONS
/*-----------------------------------------------------------------------------------*/
.btnwrap {
  display: flex;
  justify-content: flex-start;
  padding-top: 20px;
}
.btnwrap.tocen {
  justify-content: center;
}
.btn {
  display: inline-flex;      
  margin-right: 0;
  float: none; 
  font-size: 16px;
  font-family: 'redhat_bold', Tahoma, Arial, sans-serif;
  cursor: pointer;
  padding: 10px 20px 10px 20px;
  border: none;
  transition: all 0.3s ease;
  overflow: hidden
}
.mr-0 {margin-right: 0px;}
.mr-20 {margin-right: 20px;}
.mr-30 {margin-right: 30px;}
.mr-60 {margin-right: 60px;}
.btn i {
  position: relative;
  font-size: 20px;
  padding-left: 30px;
}
.btn.dark {
  color: var(--color-bg);
  background: var(--color-main);
}
.btn.dark:hover {
  color: var(--color-bg-dark);
  background: var(--color-accent);
  box-shadow: 0 4px 10px rgba(227, 6, 19, 0.3);
}
.btn.dark i {
  color: var(--color-accent);
  transition: transform 0.2s;
}
.btn.dark:hover i {
  color: var(--color-bg);
  transform: rotate(360deg);
} 

.btn.light {
  color: var(--color-main);
  background: var(--color-bg-light);
}
.btn.light:hover {
  color: var(--color-bg);
  background: var(--color-main);
  box-shadow: 0 4px 10px rgba(227, 6, 19, 0.3);
}
.btn.light i {
  color: var(--color-accent);
  transition: transform 0.2s;
}
.btn.light:hover i {
  color: var(--color-accent);
  transform: rotate(360deg);
}

.btn.accent {
  color: var(--color-text);
  background: var(--color-accent);
}
.btn.accent:hover {
  color: #000;
  background: #54B047;
}
.btn.accent i {
  color: var(--color-bg);
  transition: transform 0.2s;
}
.btn.accent:hover i {
  color: var(--color-bg-);
  transform: rotate(360deg);
}

/*-----------------------------------------------------------------------------------*/
/*	ICONS
/*-----------------------------------------------------------------------------------*/
.icos {
  border-left: 1px solid var(--color-main-less);
  padding: 60px 0px 0px 0px;
}
.icos .col {
  padding: 0px 0px 0px 0px;
}
.icos .col img {
  padding: 0px 0px 10px 10px;
}
.icos .col .ico-side h4 {
  padding-top: 5px;
}
.icos .col .ico-side p {
  color: var(--color-text-dark);
  padding-bottom: 5px;
}
.icos .col .ico-side {
  padding: 0px 30px 0px 10px;
  border-right: 2px solid var(--color-bg-dark);
}
.icos .col:last-child .ico-side {
  width: 100%;
  
  border-right: 0px solid var(--color-bg-dark);
}

/*-----------------------------------------------------------------------------------*/
/*	FOOTER
/*-----------------------------------------------------------------------------------*/
footer {
  color: var(--color-bg-light);
  background: var(--color-main);
}
footer .foot {
  display: grid;
  grid-template-columns: 33.33% 33.33% 33.33%;
  gap: 0;
  padding: 35px 0px 35px 0px;
}
footer .foot div {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
footer .foot div:last-child {
  border-right: none;
}
footer .foot h4 {
  color: #fff;
  font-size: 20px;
  padding: 0px 0 10px 0;
  font-family: 'redhat_black', Tahoma, Arial, sans-serif;
}
footer .foot .finfos p {
  font-size: 14px;
}
footer .foot .finfos img {
  margin: 10px 0px 14px 0px;
}
footer .foot div.finfos {
  padding: 0px 60px 0px 30px;
}
footer .foot div.fmenu {
  padding: 0px 30px 0px 30%;
}
footer .foot div.fcont {
  padding: 0px 30px 0px 60px;
}

footer .foot div.fcont p {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  padding: 10px 0px 5px 0px;
}
footer .foot div.fcont p span {
  display: inline-flex;     
  align-items: center;
  font-size: 14px;
  font-family: 'redhat_black', Tahoma, Arial, sans-serif;
}


footer .foot a {
  color: #fff;
}
footer .foot a:hover {
  color: var(--color-accent);
}
.fmenu ul {
  font-size: 18px;
  padding-left: 0px;
  margin: 0px 0;
}
.fmenu {
  padding: 0px 20px;
}
.fmenu ul li {
  margin: 15px 0;
  font-family: 'redhat_light', Tahoma, Arial, sans-serif;
}
.fmenu ul li::before {
  font-family: 'icomoon', sans-serif; /* upravte podle reálného icon fontu */
  content: "\e90b";
  display: inline-block;
  margin-right: 3px;
  font-size: 0.95em;
  vertical-align: middle;
  color: var(--color-accent); 
}

/*-----------------------------------------------------------------------------------*/
/*	COPYRIGHT
/*-----------------------------------------------------------------------------------*/
div.copy {
  padding: 15px 0px 15px 0px;
  background: var(--color-text-dark);
}
div.copy p {
  color: #BFBFBF;
  font-size: 14px;
  padding: 0; margin: 0;
  text-align: center;
}
div.copy a {
  color: var(--color-bg);
}
div.copy a:hover {
  color: var(--color-accent);
}
div.copy .txright a {
  color: #BFBFBF;
}
div.copy .txright a:hover {
  color: #fff;
}


.flinks {
  display: flex;
  width: 100%; 
  min-height: 140px;
}
.flink {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  background: var(--color-main);
  transition: background .15s, transform .12s;
}
.flink:nth-child(2) {
  background: var(--color-main-more);
}
.flink:hover {
  background: var(--color-main-less);
  transform: translateY(-3px);
}
.flink span { font-size: 40px; margin-bottom: 10px; color: var(--color-accent);}
.flink .label { color: #fff; font-size: 20px; text-align: center; }

/*-----------------------------------------------------------------------------------*/
/*	PAGINATION
/*-----------------------------------------------------------------------------------*/
.pagination {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 20px;
    align-items: center;
}
.pagination a, 
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; 
    height: 36px;
    color: #000; 
    background: var(--color-lines);
}
.pagination a:hover, 
.pagination span:hover {
    color: #fff; 
    background: var(--color-main);
}
.pagination a.active {
    background: var(--color-accent);
    color: var(--color-bg);
}

.pagination .dots {
    color: var(--color-lines);
    pointer-events: none; 
}
.pagination a.prev, 
.pagination a.next {
    width: auto; 
    padding: 0 12px; 
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px; 
}