:root {
--gap: 16px;
--bg: #050505;
}

* 
{ font-family: "Outfit", sans-serif; font-optical-sizing: auto; font-style: normal; box-sizing: border-box; }

html, body { height: 100%; }
body { margin: 0; overflow: auto; background: var(--bg); color: #F4F4F0; }

::-webkit-scrollbar 
{ width: 6px; }
::-webkit-scrollbar-track 
{ background: #434345; }
::-webkit-scrollbar-thumb 
{ background: #29292b; border-radius: 999px; }

.wrapper { width: calc( 100% - clamp(32px, 10vw, 600px) ); margin-inline: auto; }


/** DOCK ********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.dock 
{ position: fixed; bottom: 16px; left: 50%; translate: -50%; z-index: 10; width: min(560px, calc(100% - 32px)); display: flex; flex-direction: column; overflow: hidden; border-radius: 1rem; background: rgba(255,255,255,.09); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.dock__panel 
{ display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows .4s ease, visibility .4s; }
.dock[data-open="menu"] .dock__panel--menu, .dock[data-open="lang"] .dock__panel--lang 
{ grid-template-rows: 1fr; visibility: visible; }
.dock__list 
{ overflow: hidden; min-height: 0; display: flex; flex-direction: column; }
.dock__list a 
{ padding: 14px 20px; color: inherit; text-decoration: none; font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.dock__list a:hover { background: rgba(255,255,255,.06); }
.dock__list a[aria-current] { font-weight: 600; }

.dock__bar 
{ display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 16px; }
.dock__logo img 
{ display: block; height: 34px; }
.dock__buttons 
{ display: flex; gap: 4px; }
.dock__toggle 
{ display: flex; padding: 8px; border: 0; background: none; cursor: pointer; }
.dock__icon 
{ display: block; width: 20px; height: 20px; }
.dock__icon--close 
{ display: none; }
.dock[data-open="menu"] .dock__toggle--menu .dock__icon--open, .dock[data-open="lang"] .dock__toggle--lang .dock__icon--open 
{ display: none; }
.dock[data-open="menu"] .dock__toggle--menu .dock__icon--close, .dock[data-open="lang"] .dock__toggle--lang .dock__icon--close 
{ display: block; }

@media (prefers-reduced-motion: reduce) {
.dock__panel { transition-duration: .01ms; }
}


/** MAIN ********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.stage 
{ position: relative; height: 100dvh; }

.grid 
{ position: relative; z-index: 1; display: grid; height: 100%; padding: var(--gap); gap: var(--gap); grid-template-columns: repeat(20, 1fr); grid-template-rows: 1.15fr .6fr .6fr; grid-template-areas: "t1 t1 t1 t1 t1 t1 t1 t2 t2 t2 t2 t2 t2 t2 t2 t2 t2 t2 t2 t2" "t3 t3 t3 t3 t4 t4 t4 t4 t4 t4 t4 t4 t4 t4 t4 t4 t5 t5 t5 t5" "t3 t3 t3 t3 t4 t4 t4 t4 t4 t4 t4 t4 t4 t4 t4 t4 t6 t6 t6 t6"; }

#t1 { grid-area: t1 }
#t2 { grid-area: t2 }
#t3 { grid-area: t3 }
#t4 { grid-area: t4 }
#t5 { grid-area: t5 }
#t6 { grid-area: t6 }

.tile 
{ display: flex; align-items: flex-end; padding: clamp(14px, 1.6vw, 32px); border-radius: 1rem; background: rgba(255,255,255,.09); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); color: inherit; text-decoration: none; transition: background-color .3s; }

.tile:hover 
{ background: rgba(255, 255, 255, .05); }
.tile h2 
{ margin: 0; font-size: clamp(0.875rem, 1.9vw, 1.2rem); font-weight: 500; line-height: 1; letter-spacing: .02em; }
.echo 
{ position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.echo > span 
{ position: absolute; top: 50%; left: 50%; translate: -50% -50%; transform: translateY(.15em); white-space: nowrap; font-size: clamp(10rem, 16vw, 24rem); font-weight: 400; line-height: 1; letter-spacing: 0.06em; color: #ffffff; opacity: 0; transition: opacity .6s ease, transform 1s ease; }
.stage:has(.grid > :nth-child(1):hover) .echo > :nth-child(1), .stage:has(.grid > :nth-child(2):hover) .echo > :nth-child(2), .stage:has(.grid > :nth-child(3):hover) .echo > :nth-child(3), .stage:has(.grid > :nth-child(4):hover) .echo > :nth-child(4), .stage:has(.grid > :nth-child(5):hover) .echo > :nth-child(5), .stage:has(.grid > :nth-child(6):hover) .echo > :nth-child(6) 
{ opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
.echo 
{ display: none; }
.stage 
{ height: auto; min-height: 100dvh; padding-bottom: 90px; }
.grid { height: auto; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, auto); grid-template-areas: none; }
#t1, #t2, #t3, #t4, #t5, #t6 { grid-area: auto; }
.tile 
{ aspect-ratio: 1; align-items: center; justify-content: center; text-align: center; }

}


/** PAGE ********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.page 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 0px 0px 80px 0px; position: relative; z-index: 1; }

.page-top 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 160px 0px 160px; position: relative; }
.page-top__content 
{ width: 100%; max-width: 900px; height: auto; margin: 0 auto; padding: 0px; }
.page-top__content h1 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 0px; font-size: clamp(2.5rem, 4vw, 5rem); font-weight: 500; line-height: 1.3; letter-spacing: 0.04em; text-transform: none; color: #ffffff; text-align: center; text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.30); -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.20); }
.page-top__content p
{ width: 100%; height: auto; float: left; margin: 50px 0px 0px 0px; padding: 0px; font-size: clamp(1.125rem, 2vw, 1.4rem); font-weight: 300; line-height: 1.6; letter-spacing: 0.04em; color: #ffffff; text-align: center; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45); }
.page-top-lime
{ color: #b9ff4a; }


/** BLOG ********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.blog-wrapper
{ width: min( 1600px, 100% - clamp(32px, 6vw, 180px) ); margin-inline: auto; }

/** BLOG HEAD **/
.blog-head 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 120px 20px 120px 20px; position: relative; background: rgba(255,255,255,.09); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.blog-head__content 
{ width: 100%; max-width: 1000px; height: auto; margin: 0 auto; padding: 0px; }
.blog-head__content h1 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 0px; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; line-height: 1.6; letter-spacing: 0.04em; text-transform: none; color: #b9ff4a; text-align: center; text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.30); -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.20); }
.blog-head__content p
{ width: 100%; height: auto; float: left; margin: 50px 0px 0px 0px; padding: 0px; font-size: clamp(1.125rem, 2vw, 1.4rem); font-weight: 300; line-height: 1.6; letter-spacing: 0.04em; color: #ffffff; text-align: center; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45); }
.blog-head-lime
{ color: #b9ff4a; }


/** BLOG BOX **/
.containerBlogBox 
{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 20px 10px; }
.blog-box 
{ display: flex; flex-direction: column; padding: 15px; background: rgba(255, 255, 255, .09); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-radius: 1rem; box-sizing: border-box; color: inherit; text-decoration: none; position: relative; transition: background-color .3s; }
.blog-box:hover 
{ background: rgba(255, 255, 255, .05); }
.blog--picture 
{ position: relative; overflow: hidden; border-radius: 1rem; }
.blog--picture img 
{ width: 100%; height: auto; display: block; border-radius: 1rem; transition: transform 0.8s ease; transform-origin: center center; }
.blog-box:hover .blog--picture img 
{ transform: scale(1.04); }
.blog-box-date-panel 
{ display: flex; align-items: center; padding-top: 20px; padding-bottom: 20px; }
.blog-box-date-ico-box 
{ width: 18px; height: 18px; flex-shrink: 0; }
.blog-box-date-ico 
{ width: 100%; height: auto; }
.blog-box-date-txt 
{ padding-left: 10px; font-size: 0.875rem; font-weight: 400; color: #b9b9bc; line-height: 18px; letter-spacing: 0.04em; }
.blog-box h2 
{ margin: 0; padding-top: 5px; padding-bottom: 10px; font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 500; color: #ffffff; line-height: 1.6; letter-spacing: 0.03em; height: calc(clamp(1.1rem, 2vw, 1.3rem) * 1.6 * 2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-box p 
{ margin: 0; padding: 20px 0px 20px 0px; font-size: 0.9375rem; font-weight: 300; color: #b9b9bc; line-height: 160%; letter-spacing: 0.04em; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }


@media (max-width: 1680px) {
.containerBlogBox 
{ grid-template-columns: repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 1380px) {
.containerBlogBox 
{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 880px) {
.containerBlogBox 
{ grid-template-columns: 1fr; gap: 20px; }
}

.blog-page 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 30px 0px 60px 0px; position: relative; }
.blog-container 
{ display: flex; gap: 20px; }
.blog-left 
{ width: 65%; height: auto; }
.blog-right 
{ width: 35%; height: auto; padding: 30px 20px 30px 20px; box-sizing: border-box; background: rgba(255,255,255,.09); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-radius: 1rem; overflow: hidden; }
.blog-top-img 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 0px; background: none; }
.blog-top-img img 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 0px; border-radius: 1rem; overflow: hidden; }

.blog-page-panel
{ width: 100%; height: auto; float: left; margin: 20px 0px 0px 0px; padding: 30px 20px 30px 20px; box-sizing: border-box; background: rgba(255,255,255,.09); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-radius: 1rem; overflow: hidden; }
.blog-page-date p 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 0px 0px 20px 0px; font-size: 1rem; font-weight: 400; color: #d0fc53; text-transform: none; text-align: left; text-decoration: none; line-height: 100%; letter-spacing: 0.04em; }
.blog-page-napis h2 
{ width: 100%; height: auto; float: left; margin: 30px 0px 5px 0px; padding: 0px; font-size: 1.25rem; font-weight: 600; color: #ffffff; text-transform: none; text-align: left; text-decoration: none; line-height: 150%; letter-spacing: 0.04em; }
.blog-page-popis p 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 8px 0px 8px 0px; font-size: 1rem; font-weight: 300; color: #f6f6f6; text-transform: none; text-align: left; text-decoration: none; line-height: 150%; letter-spacing: 0.04em; }
.blog-page-odstavec 
{ width: 100%; height: auto; float: left; margin: 0px 0px 20px 0px; padding: 0px; }
.blog-page-odstavec p 
{ width: 96%; float: left; margin: 5px 0px 5px 0px; padding: 0px 0px 0px 36px; font-size: 0.9375rem; font-weight: 300; color: #ffffff; text-align: left; text-transform: none; text-decoration: none; line-height: 26px; letter-spacing: 0.04em; background: url(../images/bckg/blog/odstavec.svg) no-repeat 0px 0px; }
.blog-page-popis a, .blog-page-odstavec a 
{ color: #d0fc53; text-decoration: none; }
.blog-page-popis a:hover, .blog-page-odstavec a:hover 
{ color: #d0fc53; text-decoration: underline; }

.blog-page-img 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 40px 0px 20px 0px; }
.blog-page-img img 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 0px; }

/** BLOG RIGHT PAGE **/
.blog-right-napis p 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 0px; font-size: 1.125rem; font-weight: 600; color: #ffffff; text-decoration: none; text-transform: none; text-align: left; line-height: 100%; letter-spacing: 0.04em; }
.blog-right-box 
{ width: 100%; height: auto; float: left; margin: 0px 0px 30px 0px; padding: 10px 0px 20px 0px; }
.blog-right-box a 
{ width: 100%; height: auto; float: left; margin: 15px 0px 0px 0px; padding: 0px; font-size: 0.9375rem; font-weight: 400; color: #f6f6f6; text-decoration: none; text-transform: none; text-align: left; text-decoration: none; line-height: 130%; letter-spacing: 0.04em; }
.blog-right-box a:hover 
{ color: #ffffff; text-decoration: underline; }
.blog-right-box p 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 8px 0px 0px 0px; font-size: 0.8rem; font-weight: 300; color: #d0fc53; text-transform: none; text-align: left; text-decoration: none; line-height: 100%; letter-spacing: 0.04em; }
.blog-right-box-btn 
{ width: 100%; height: auto; float: left; margin: 0px; padding: 10px 0px 20px 0px; }
.blog-right-box-btn a 
{ height: 26px; float: left; margin: 10px 6px 0px 0px; padding: 0px 6px 0px 6px; font-size: 0.75rem; font-weight: 400; color: #f6f6f6; text-transform: none; text-align: center; text-decoration: none; line-height: 26px; letter-spacing: 0.04em; border: 1px solid #3e3e3e; border-radius: 0.4rem; overflow: hidden; transition: all .3s ease; }
.blog-right-box-btn a:hover 
{ color: #ffffff; background: #3e3e3e; }


/** BLOG BOTTOM PANEL **/
   .blog-bottom-panel {
      width: 100%;
      height: auto;
      float: left;
      margin: 0px;
      padding: 60px 0px 0px 0px;
   }

   .blog-bottom-box {
      width: 100%;
      height: auto;
      float: left;
      margin: 0px;
      padding: 20px 0px 20px 0px;
      background: #fefaf8;
      border: 1px solid #efe3dc;
      border-radius: 1rem;
      overflow: hidden;
   }

   .blog-grid-boxes {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-left: 1px solid transparent;
      border-right: 1px solid transparent;
   }

   .blog-item {
      padding: 5px 0px 5px 0px;
      position: relative;
   }

      .blog-item:not(:last-child) {
         border-right: 1px solid #e8d6cb;
      }

   .blog-more-box {
      width: max-content;
      height: auto;
      margin: 0px auto 0px auto;
      padding: 0px;
   }

   .blogMoreBox {
      height: auto;
      margin: 0px;
      padding: 0px;
      display: block;
      text-decoration: none;
   }

   .blogMoreBtn {
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 0px;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      color: #452c29;
      font-size: 0.875rem;
      text-transform: uppercase;
      text-decoration: none !important;
      letter-spacing: 0.04em;
      cursor: pointer;
   }

      .blogMoreBtn .blogArrow svg {
         transition: transform 0.35s ease;
         display: block;
         color: #452c29
      }

      .blogMoreBtn:hover .blogArrow svg {
         transform: translateX(3px);
      }




   @media only screen and (max-width: 980px) {
      .blog-container {
         display: block;
         gap: 0px;
      }

      .blog-left {
         width: 100%;
         height: auto;
         float: left;
         margin: 0px;
      }

      .blog-right {
         width: 100%;
         height: auto;
         float: left;
         margin: 30px 0px 0px 0px;
         padding: 30px 20px 30px 20px;
         border-radius: 0.75rem;
         overflow: hidden;
      }
      /** BLOG BOTTOM **/
      .blog-bottom-panel {
         width: 100%;
         height: auto;
         float: left;
         margin: 0px;
         padding: 30px 0px 0px 0px;
      }

      .blog-bottom-box {
         width: 100%;
         height: auto;
         padding: 0px 0px 0px 0px;
         border-radius: 0.75rem;
         overflow: hidden;
      }

      .blogMoreBox {
         height: auto;
         margin: 0px;
         padding: 10px 0px 10px 0px;
         display: block;
         text-decoration: none;
      }

      .blog-grid-boxes {
         grid-template-columns: 1fr;
      }

      .blog-item:last-child {
         border-right: none;
      }

      .blog-item:not(:last-child) {
         border-right: none;
         border-bottom: 1px solid #e8d6cb;
      }
   }
   /** CONTACT *****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
   .contact-panel {
      width: 100%;
      height: auto;
      float: left;
      margin: 60px 0px 0px 0px;
      padding: 0px;
   }

   .contact-label-panel {
      width: 100%;
      height: auto;
      float: left;
      margin: 0px;
      padding-bottom: 20px;
   }

   .contact-label-box {
      width: 100%;
      height: auto;
      float: left;
      margin: 0px 0px 20px 0px;
      padding: 2rem 2rem 2rem 2rem;
      background: rgba(255,255,255,.09);
      -webkit-backdrop-filter: blur(24px);
      backdrop-filter: blur(24px);
      border-radius: 1rem;
      position: relative;
      box-sizing: border-box;
   }

   .contact-label-napis p {
      width: 100%;
      height: auto;
      float: left;
      margin: 0px;
      padding: 0px 0px 0px;
      font-weight: 400;
      font-style: normal;
      font-size: 1.125rem;
      color: #757580;
      text-transform: none;
      text-decoration: none;
      letter-spacing: 0.06em;
      line-height: 100%;
   }

   .contact-label-popis a {
      width: 100%;
      height: auto;
      float: left;
      margin: 0px;
      padding: 15px 0px 0px 0px;
      font-weight: 500;
      font-style: normal;
      font-size: 1.625rem;
      color: #f1f1f1;
      text-transform: none;
      text-decoration: none;
      letter-spacing: 0.06em;
      line-height: 100%;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
   }

      .contact-label-popis a:hover {
         color: #b9ff4a;
      }

   .contactAddressPanel {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
   }

   .contact-address-box {
      width: 100%;
      height: auto;
      float: left;
      margin: 0px;
      padding: 20px 0px 0px 0px;
   }

   .contact-address p {
      width: 100%;
      height: auto;
      float: left;
      margin: 0px;
      padding: 0px;
      font-weight: 400;
      font-style: normal;
      font-size: 1rem;
      color: #f1f1f1;
      text-transform: none;
      text-decoration: none;
      letter-spacing: 0.06em;
      line-height: 160%;
   }

   .contact-label-name p {
      width: 100%;
      height: auto;
      float: left;
      margin: 0px;
      padding: 0px;
      font-weight: 500;
      font-style: normal;
      font-size: 1.25rem;
      color: #ffffff;
      text-transform: none;
      text-decoration: none;
      letter-spacing: 0.06em;
      line-height: 100%;
   }

   .contact-label-position p {
      width: 100%;
      height: auto;
      float: left;
      margin: 15px 0px 0px 0px;
      padding: 0px;
      font-weight: 400;
      font-style: normal;
      font-size: 1rem;
      color: #757580;
      text-transform: none;
      text-decoration: none;
      letter-spacing: 0.04em;
      line-height: 100%;
   }

   .contact-info-list {
      width: 100%;
      height: auto;
      margin: 0px;
      padding: 20px 0px 0px 0px;
      display: flex;
      flex-direction: column;
      gap: 16px;
   }

   .contact-info-line {
      width: 100%;
      height: auto;
      margin: 0px;
      padding: 5px 0px 5px 0px;
      text-decoration: none;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      gap: 20px;
      transition: all 0.25s ease;
   }

   .contact-info-icon {
      width: 24px;
      height: 24px;
      min-width: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
   }

      .contact-info-icon img {
         width: 24px;
         height: 24px;
         display: block;
      }

   .contact-info-text {
      margin: 0px;
      padding: 0px;
      font-weight: 400;
      font-style: normal;
      font-size: 1.125rem;
      line-height: 140%;
      color: #f1f1f1;
      letter-spacing: 0.04em;
      transition: color 0.3s ease;
   }

      .contact-info-text:hover {
         color: #b9ff4a;
      }

   @media (max-width: 1280px) {
      .contact-label-box {
         margin: 0px 0px 20px 0px;
         padding: 1.5rem 1.5rem 1.5rem 1.5rem;
      }

      .contactAddressPanel {
         display: grid;
         grid-template-columns: repeat(1, 1fr);
         gap: 20px;
      }
   }




@view-transition 
{ navigation: auto; }

@keyframes fade-in  { from { opacity: 0; }}
@keyframes fade-out { to { opacity: 0; }}
::view-transition-old(root) 
{ animation: 160ms cubic-bezier(0.4, 0, 1, 1) both fade-out; }
::view-transition-new(root) 
{ animation: 280ms cubic-bezier(0, 0, 0.2, 1) 120ms both fade-in; }
@media (prefers-reduced-motion: reduce) { @view-transition { navigation: none; }}