@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  scroll-behavior: smooth;
}

* ul li {
  list-style: none;
}

:root {
  --backgroud-color-header: #000000;
  --nav-text-color: #ffffff;
  --nav-hover-bg-color: #CE3D8F;
  --nav-hover-icon-color: #CE3D8F;
  --nav-hamburger-color: #CE3D8F;
  --loader-bg-color: #000000;
  --hero-overaly-background-color: linear-gradient(to bottom, rgba(31, 37, 32, 0.7), rgb(31 37 32 / 65%));
}

.pixly__container--header {
  width: 100%;
  background-color: var(--backgroud-color-header);
  display: inline-flex;
  padding: 0 25px;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 9999;
  height: 50px;
  transform: translateY(-100%);
  transition: transform 0.5s;
  box-shadow: 0 0 5px #fff, 0 0 10px #ffffff;
}

.pixly__container--header.active {
  transform: translateY(0);
}

.pixly__container--header-logo img {
  width: 100%;
  max-width: 13vw;
  min-width: 143px;
  height: auto;
}

.pixly__container--header-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dropDown {
  display: none !important;
  position: absolute;
  background: black;
  flex-direction: column;
  left: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 1000; /* aby přeskakovalo jiné prvky */
}

.pixly__container--header-nav ul li {
  position: relative; /* kvůli absolutní pozici dropdownu */
}

.pixly__container--header-nav ul li:hover > .dropDown {
  display: flex !important;
}

.dropDown li {
  padding: 5px 30px;
  text-align: center;
}

.pixly-logo-container-nav-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 1px solid white;
  border-right: 1px solid white;
  transform: skew(-29deg);
  z-index: -1;
}

.pixly__container--header-nav ul, .pixly__container--header-social-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pixly__container--header-nav ul li {
  position: relative;
  height: 100%;
}

.pixly__container--header-nav ul li a {
  display: flex;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--nav-text-color);
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.pixly__container--header-nav ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transform: skew(-29deg);
  z-index: -1;
  transition: background 0.3s ease;
}

.pixly__container--header-nav ul li a:hover::before {
  background: var(--nav-hover-bg-color);
}

.pixly__container--header-social-nav ul li a {
  height: 100%;
  display: flex;
  padding: 5px;
  border-radius: 25vh;
  transition: 0.3s ease;
}
.pixly__container--header-social-nav ul li a:hover {
  background-color: var(--nav-hover-icon-color);
}

.pixly__container--hero {
  width: 100%;
  height: 100vh;
  display: inline-flex;
}

.pixly__container--hero-carousel-container {
  width: 50%;
  height: 100%;
  position: relative;
}

.pixly__container--hero-carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 78.89% 54.07%, 89.7% 63.07%, 91.12% 82.6%, 84.53% 100%);
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.pixly__container--hero-carousel.active {
  transform: translateX(0);
}

.pixly__container--hero-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

.pixly__container--hero-animation-container {
  width: 50%;
  height: 100%;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.5s;
}

.pixly__container--hero-animation-container.active {
  transform: translateX(0);
}

.pixly__container--hero-animation-content {
  width: 25vw;
  height: 25vw;
  min-width: 300px;
  min-height: 300px;
  position: absolute;
  background-color: rgb(255, 255, 255);
  top: 50%;
  left: 63%;
  transform: translate(-50%, -50%);
  z-index: 50;
  border-radius: 50vh;
  box-shadow: rgba(0, 0, 0, 0.25) 0px -2px 8px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  display: flex;
  position: relative;
}

.pixly__container--hero-animation-content img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
}

.pixly__container--hero-animation-overlay {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background-image: url("/assets/media/img/dekorace-right-hero.png");
  height: 100%;
  width: 100%;
  background-position: center right;
  background-repeat: no-repeat;
}

.pixly__container--hero-carousel-overlay-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 100%;
  background-image: url("/assets/media/img/dekorace-to-hero2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  z-index: 50;
  text-align: center;
  padding-top: 125px;
}

.pixly__container--hero-carousel-overlay-img h1 {
  font-size: 3rem;
  color: rgb(0, 0, 0);
  text-shadow: 0 0 5px rgba(255, 252, 252, 0.777), 0 0 10px rgba(0, 0, 0, 0.704), 0 0 20px rgba(255, 255, 255, 0.301), 0 0 40px rgba(255, 255, 255, 0.404), 0 0 80px rgba(255, 255, 255, 0.31);
}

.pixly__container--hero-carousel-overlay-text {
  width: 100%;
  max-width: 450px;
  margin-top: 50px;
  background-color: rgba(255, 255, 255, 0.6509803922);
  text-align: justify;
  padding: 25px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.pixly_container-button {
  background-color: rgb(206, 61, 143);
  color: white;
  box-shadow: rgb(255, 255, 255) 0px 0px 5px, rgb(255, 255, 255) 0px 0px 10px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  -o-border-image: initial;
  border-image: initial;
  padding: 14px 0px;
  border-radius: 18px;
  margin-top: 30px;
  text-align: center;
  width: 170px;
  font-size: 19px;
  cursor: pointer;
  transition: 0.3s;
}
.pixly_container-button:hover {
  background-color: rgb(172.4444444444, 43.5555555556, 116.4444444444);
}

.loaderContainer {
  display: flex;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--loader-bg-color);
  z-index: 10000;
  transition: opacity 0.5s ease-in-out;
}

.loaderContainer img {
  width: 75px;
  height: auto;
  margin-left: 10px;
}

.loader {
  position: relative;
  margin: auto;
  box-sizing: border-box;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid rgb(255, 255, 255);
  transform-origin: 50% 50%;
  transform: perspective(200px) rotateX(66deg);
  animation: spinner-wiggle 1.1s infinite;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 4px solid #a1199f;
  animation: spinner-spin 1.2s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, spinner-fade 1.2s linear infinite;
}

.loader:before {
  border-top-color: #fff;
}

.loader:after {
  border-top-color: #6f014d;
  animation-delay: 0.4s;
}

@keyframes spinner-spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinner-fade {
  25%, 75% {
    opacity: 0.1;
  }
  50% {
    opacity: 1;
  }
}
.logoLoader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 50;
  transform: translate(-50%, -100%);
}

.pixly__container--header-hamburger {
  cursor: pointer;
}

.pixly__container--header-hamburger .line {
  padding: 0;
  width: 30px;
  background: var(--nav-hamburger-color);
  height: 2px;
  margin: 5px 0;
  transition: all 300ms cubic-bezier(0.9, 0, 0.33, 1);
  display: none;
}

.pixly__container--header-hamburger .line.line--1 {
  width: 30px;
  transform: rotate(0) translateY(0);
}

.pixly__container--header-hamburger .line.line--2 {
  width: 28px;
  transform: translateX(0);
}

.pixly__container--header-hamburger .line.line--3 {
  width: 20px;
  transform: rotate(0) translateY(0);
}

.pixly-hero-dot-container {
  width: 100%;
  height: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgb(203, 19, 169);
  border-radius: 50%;
  margin: 0px 10px;
  cursor: pointer;
  transition: 0.3s;
}
.dot:hover {
  transform: scale(1.2);
}

.carousel__navigation-item.active {
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3), inset 5px 5px 15px rgba(255, 255, 255, 0.4), inset -5px -5px 15px rgba(0, 0, 0, 0.3);
}

.carousel__navigation-item.active::after,
.carousel__navigation-item.active::before {
  content: "";
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 6px solid #FFF;
  position: absolute;
  left: 0;
  top: 0;
  animation: animloader 2s linear infinite;
}

.carousel__navigation-item.active::after {
  animation-delay: 1s;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
/* Styl pro boční menu */
.sidebar {
  position: fixed;
  top: 50%;
  left: -225px;
  width: 260px;
  background-color: #000;
  color: #fff;
  transition: left 0.3s ease;
  transform: translate(0, -50%);
  border-radius: 0px 0px 10px 0px;
  box-shadow: 0 0 5px #fff, 0 0 10px #ffffff;
  z-index: 1000; /* Zajišťuje, že sidebar je nad ostatními prvky */
}

.sidebar.open {
  left: 0;
}

/* Styl pro položky menu */
.menu-item {
  position: relative;
  padding: 5px;
  cursor: pointer;
  font-size: 0.9em;
  display: flex;
  justify-content: space-between;
  align-items: center; /* Zarovnání ikony a textu */
}

.menu-item:hover {
  background-color: #CE3D8F;
}

/* Styl pro ikonu */
.icon {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 5px; /* Malá oblast pro snazší interakci */
}

.icon svg {
  fill: #ffffff;
  vertical-align: middle;
  margin-left: 8px;
  width: 20px;
  height: 20px;
}

/* Styl pro podmenu */
/* Styl pro podmenu */
.submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  width: 175px;
  max-height: 300px; /* Omezení maximální výšky podmenu */
  overflow-y: auto; /* Povolení vertikálního scrollování */
  background-color: #2c2c2c;
  z-index: 10;
  box-shadow: 5px 0 10px -5px #fff;
  padding: 15px 0;
  text-align: center;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-item-wrap {
  display: flex;
  width: 100%;
  align-items: center;
}

/* Zobrazení podmenu při najetí na ikonu nebo podmenu */
.menu-item:hover .submenu,
.menu-item .icon:hover + .submenu,
.menu-item .submenu:hover {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Styl pro položky podmenu */
.submenu-item {
  padding: 8px;
  font-size: 0.8em;
}

.sideBar-pixky ul li:nth-child(11) > ul {
  position: absolute;
  top: auto;
  bottom: 0; /* otevře se nahoru */
}

.submenu-item:hover {
  background-color: #CE3D8F;
}

/* Vylepšení vzhledu scrollbaru (volitelné, pro profesionální vzhled) */
.submenu::-webkit-scrollbar {
  width: 8px;
}

.submenu::-webkit-scrollbar-track {
  background: #2c2c2c;
}

.submenu::-webkit-scrollbar-thumb {
  background: #523f49;
  border-radius: 4px;
}

.submenu::-webkit-scrollbar-thumb:hover {
  background: #523f49;
}

/* Zobrazení podmenu při najetí na ikonu nebo podmenu */
.menu-item:hover .submenu,
.menu-item .icon:hover + .submenu,
.menu-item .submenu:hover {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Styl pro položky podmenu */
.submenu-item {
  padding: 8px;
  font-size: 0.8em;
}

.submenu-item:hover {
  background-color: #CE3D8F;
}

/* Styl pro odkazy */
.sideBar {
  position: fixed;
  top: 50%;
  height: 500px;
  z-index: 1000;
}

.sideBar-pixky ul li a {
  width: 100%;
  text-decoration: none;
  color: white;
  display: block; /* Zajistí, že odkaz vyplní celou položku */
}

/* Styl pro tlačítko přepínání */
.toggle-button {
  position: absolute;
  top: -265px;
  left: 15px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #CE3D8F;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  background-image: url(media/arrow-button.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1001;
  transition: 0.3s;
  transform: rotate(-90deg);
}

.toggle-button.open {
  left: 250px;
  transform: rotate(90deg);
}

.toggle-button:hover {
  background-color: #333;
}

@media (max-width: 1025px) {
  .pixly__container--hero-carousel-overlay-img h1 {
    font-size: 5vw;
  }
  .pixly__container--header-nav {
    display: none;
  }
  .pixly__container--header-right {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 120px;
    justify-content: space-between;
  }
  .pixly__container--header-hamburger .line {
    display: block;
  }
  .pixly__container--hero-carousel-container {
    width: 100%;
    height: 50%;
    position: relative;
  }
  .pixly__container--hero {
    flex-direction: column;
  }
  .pixly__container--hero-animation-container {
    height: 50%;
    width: 100%;
  }
  .pixly__container--hero-animation-content {
    left: 50%;
  }
  .pixly__container--hero-carousel-overlay-img {
    height: 50%;
  }
  .pixly__container--hero-animation-content {
    width: 17vw;
    height: 17vw;
    min-width: 246px;
    min-height: 246px;
  }
}
@media screen and (max-width: 768px) {
  .pixly__container--header-nav {
    top: 75px;
    width: 100%;
    background-color: black;
    justify-content: center;
  }
  .pixly__container--header-nav ul {
    justify-content: center;
  }
  .sidebar {
    width: 100%;
    max-width: 260px;
    left: -100%;
    top: 50px;
    transform: none;
    border-radius: 0;
    height: 100%;
    overflow-y: auto;
  }
  .sideBar-pixky ul li:nth-child(11) > ul {
    position: static;
    top: auto;
    bottom: auto;
    background-color: #333; /* Příklad: jiná barva pozadí */
  }
  .sidebar.open {
    left: 0;
  }
  .toggle-button {
    position: fixed;
    top: 53px;
    left: 15px;
  }
  .menu-item-wrap {
    display: flex;
    width: 100%;
    padding: 0 8px;
  }
  .menu-item {
    display: flex;
    font-size: 1em;
    flex-direction: column;
    padding: 0;
  }
  .submenu {
    position: static;
    width: 100%;
    max-height: 200px;
    box-shadow: none;
    background-color: #1a1a1a;
    transform: none;
    opacity: 1;
    display: none;
  }
  .menu-item:hover .submenu,
  .menu-item .icon:hover + .submenu,
  .menu-item .submenu:hover {
    display: block;
  }
  .submenu-item {
    font-size: 0.9em;
    padding: 10px;
  }
  .icon svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 540px) {
  .pixly__container--hero-animation-content {
    width: 200px;
    height: 200px;
    top: 70%;
  }
}
@media (max-width: 499px) {
  .pixly__container--header-nav ul {
    position: absolute;
    top: -25px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.792);
    width: 100%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}
@media screen and (max-width: 480px) {
  .sidebar {
    max-width: 200px;
  }
  .menu-item {
    font-size: 0.9em;
  }
  .submenu-item {
    font-size: 0.8em;
    padding: 8px;
  }
  .toggle-button {
    width: 40px;
    height: 40px;
    background-size: 20px;
  }
  .toggle-button.open.open {
    left: 185px;
  }
}
@media (max-width: 414px) {
  .pixly__container--hero-animation-content {
    top: 61%;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  body {
    font-size: 14px;
  }
  .pixly__container--hero-carousel-overlay-img h1 {
    font-size: 1.7rem;
  }
  .pixly__container--hero-animation-content {
    width: 17vw;
    height: 17vw;
    min-width: 246px;
    min-height: 246px;
  }
  .pixly_container-button {
    margin-top: 20px;
  }
}
@media (max-width: 376px) {
  .pixly__container--hero-animation-content {
    width: 17vw;
    height: 17vw;
    min-width: 150px;
    min-height: 150px;
  }
  .pixly__container--hero-animation-content {
    top: 74%;
  }
  .pixly__container--hero {
    height: 100vh;
  }
}
@media (max-width: 376px) and (max-height: 812px) {
  .pixly__container--hero-animation-content {
    top: 50%;
  }
  .pixly__container--hero-carousel-overlay-text {
    max-width: 310px;
  }
}/*# sourceMappingURL=critical.css.map */