* {
    margin: 0;
    padding: 0;
 }

 html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

 body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}



/* header */
header {
    width: 100%;
    margin-top: 100px;
  }

 nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 100px;
    position: fixed;
    top: 0;
    background-color: white;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-out;
}

nav.hide {
    transform: translateY(-100%);
    overflow: hidden;
}

.nav-icons {
  position: relative;
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
  margin: 5px 50px;
  width: 33%;
}

 .nav-icons img {
    margin-left: 3px;
}

.hamburger-menu {
    background-color: #009dfb;
    border-radius: 50%;
    width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      position: relative;
      overflow: visible;
      cursor: pointer;
      z-index: 1001;
    }
    
    .hamburger-menu path {
      fill: white;
      transition: transform 0.3s ease, fill 0.3s ease;
      transform-origin: center;
    }
    
    .hamburger-menu:hover path {
      fill: #FB7600;
      transform: scale(1.8); 
    }

  .identity {
    width: 7%;
    padding: 1px;
  }

  .nav-icons h2 {
    color: #009dfb;
    font-family: 'Just Another Hand';
    font-size: 32px;
    font-weight: 400;
    transform: rotate(-1deg);
    margin-left: 3px;
  }

  .nav-identity {
    display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin-top: 50px;
      width: 33%;
}

.nav-identity a {
    display: flex; /* Změní `<a>` na flex kontejner */
    justify-content: center;
    align-items: center;
    width: 100%; 
}

.nav-identity a img {
    width: 18%;
    display: block; /* Zabrání problémům s mezery pod obrázkem */
    margin-top: 30px;
}


  .nav-button {
    width: 33%;
    display: flex;
    justify-content: end;
    margin-right: 50px;
  } 

  .sidebar {
    height: 100%;
    width: 0; /* Nebo 40% podle tvého JS */
    position: fixed;
    top: 100px;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 100;
}

#menu-toggle-btn {
  position: relative; 
  z-index: 101; 
}

/* Otevřený stav menu pro desktop */
.sidebar.open {
  width: 48%; /* Šířka otevřeného menu na desktopu */
}

.sidebar a {
    padding: 0px 50px;
    text-decoration: none;
    font-size: 36px;
    color: black;
    display: flex;
    transition: 0.2s;
    font-family: 'DM Sans';
    font-weight: 700;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: 0.3s;
    z-index: 99;
}

.aside-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 150px;
}

.aside-social-icons {
    display: flex;
    flex-direction: row;
    width: 50%;
    justify-content: flex-start;
    padding: 0;
    margin-left: 50px;
}

.aside-social-icons a {
    padding: 10px;
}

.aside-social-icons i {
    font-size: 24px;
    color: #009dfb;
    padding: 5px;
}

.aside-info {
    width: 50%;
}

.aside-info p {
    font-size: 32px;
}



/* index */
main {
    width: 100%;
    background-image: url('../images/kresba_pozadi_homepage_kouzelnik_pan_kravata.webp');
    background-size: cover;
    background-repeat: no-repeat;
    height: 640px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

.main-text {
    display: flex;
    justify-content: center;
    margin-top: auto;
    width: 50%;
    margin-left: 50px;
    margin-bottom: 25px;
  }

  .main-image {
    display: flex;
    justify-content: center;
    width: 50%;
  }

  .main-image img {
    width: 100%;
    margin-top: -50px;
    margin-bottom: -84.5px;
    z-index: 1;
  }

  .performance {
    width: 100%;
    margin: 100px 0px;
  }

  .performance-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .performance-container a {
    margin-top: 50px;
    max-width: 400px;
  }

  .performance-container button img {
    width: 15px;
    margin-left: 10px;
    background-color: white;
    border-radius: 25px;
    padding: 5px;
  }


  .performance-container h1 {
    margin-top: 40px;
    color: #009dfb;
    font-size: 72px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
  }

  .performance-text {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .performance-text img {
    width: 15px;
    margin-right: 10px;
  }

  .performance-text h2 {
    color: #009dfb;
    font-family: 'Just Another Hand';
    font-size: 48px;
    font-weight: 400;
    transform: rotate(-1deg);
    border-bottom: 3px solid orange;
  }


  .performance-blog {
    display: flex;
    width: 100%;
    color: white;
    margin-top: 50px;
  }

  .performance-blog-info {
    display: flex;
    flex-direction: row;
    background-color: #009dfb;
    width: 750px;
    margin-left: 50px;
    border-radius: 25px;
  }


  .performance-blog-info img {
    margin-left: auto;
    width: 40%;
    margin-top: -25px;
    margin-bottom: -40px;
    transition: transform 0.5s ease;
  }

  .performance-blog-info img:hover {
    transform: scale(1.1) translateY(-12px);
    transition: 0.5s;
  }


  .performance-blog-info-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
    height: 100%;
  }

.performance-blog-info-container-second {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 50px;
  width: 500px;
  height: 300px;
  border-radius: 25px;
  position: relative; 
  overflow: hidden;
  isolation: isolate; 
}

.performance-blog-info-container-third {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 50px;
  width: 500px;
  height: 300px;
  border-radius: 25px;
  position: relative; 
  overflow: hidden;
  isolation: isolate; 
}

.performance-blog-info-container-second::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/kouzelnik_pan_kravata_moderator.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
  z-index: -1; 
}

.performance-blog-info-container-third::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/foto_vystoupeni_narozeninove_oslavy_kouzelnik_pan_kravata.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
  z-index: -1; 
}

.performance-blog-info-container-second:hover::before {
  transform: scale(1.2);
}

.performance-blog-info-container-third:hover::before {
  transform: scale(1.2);
}

  .performance-blog-info-container p {
    font-family: 'DM Sans';
    font-size: 24px;
    font-weight: 500;
    padding: 20px 35px;
    text-align: left;
    margin-top: auto;
    width: 100%;
  }

  .performance-blog-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-top: 100px;
  }

  .performance-blog-links a {
    list-style-type: none;
    text-decoration: none;
    background-color: #FB7600;
    color: white;
    border-radius: 50px;
    font-family: 'DM Sans';
    font-size: 18px;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0px 50px;
    max-width: 500px;
    padding: 0px 25px 0px 5px;
  }

  .performance-blog-links a svg {
    transition: transform 0.3s ease-out; 
}

.performance-blog-links a:hover svg {
    transform: rotate(45deg);
}

.index-aboutus {
  width: 100%;
  margin-bottom: 100px;
}

.index-aboutus-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.index-aboutus-container h1 {
    margin-top: 40px;
    color: #009dfb;
    font-size: 72px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
  }
  
  .index-aboutus-text {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .index-aboutus-text img {
    width: 15px;
    margin-right: 10px;
  }
  
  .index-aboutus-text h2 {
    color: #009dfb;
    font-family: 'Just Another Hand';
    font-size: 48px;
    font-weight: 400;
    transform: rotate(-1deg);
    border-bottom: 3px solid orange;
  }
  
  .index-aboutus-banner {
    width: 100%;
    margin: 0px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
  }
  
  .index-aboutus-banner-text {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .index-aboutus-banner-text p {
    font-family: 'DM Sans';
    font-weight: 400;
    font-size: 42px;
    margin: 50px 100px 0px 100px;
  }
  
  .index-aboutus-banner-text a {
    margin: 10px 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 180px;
  }
  
  .index-aboutus-banner-text button img {
    width: 15px;
    
  }
  
  .index-aboutus-banner img {
    width: 95%;
    margin-top: -50px;
  }
  
  
  .photogalery {
    width: 100%;
    margin-bottom: 100px;
  }
  
  .photogalery-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
    align-items: center;
  }
  
  
  .photogalery-container h1 {
    margin-top: 40px;
    color: #009dfb;
    font-size: 72px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
  }
  
  .photogalery-text {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .photogalery-text img {
    width: 15px;
    margin-right: 10px;
  }
  
  .photogalery-text h2 {
    color: #009dfb;
    font-family: 'Just Another Hand';
    font-size: 48px;
    font-weight: 400;
    transform: rotate(-1deg);
    border-bottom: 3px solid orange;
  }
  
  .image-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 300px;
  gap: 50px;
  max-width: 1350px;
  margin-top: 50px;
  }
  
  .collage-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    border-radius: 25px;
  }
  
  .collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  }
  
  .collage-item img:hover {
  transform: scale(1.1) translateY(-12px);
  transition: 0.5s;
  }
  
  .item-1 {
  grid-column: span 2;
  grid-row: span 1;
  }
  
  .item-2 {
  grid-column: span 2;
  grid-row: span 1;
  }
  
  .item-3 {
  grid-column: span 2;
  grid-row: span 2;    
  }
  
  .item-4 {
  grid-column: span 2;
  grid-row: span 2;    
  }
  
  .item-5 {
  grid-column: span 2;
  grid-row: span 1;    
  }
  
  .item-6 {
  grid-column: span 4;
  grid-row: span 1;
  }
  
  .video-item video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  
  .play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    transition: opacity 0.3s ease-in-out;
  }
  
  .collage-item:hover .play-button-overlay {
    opacity: 0;
    pointer-events: none;
  }
  
  .play-icon {
    width: 100px;
    height: 100px;
    background-color: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5px;
    transition: transform 0.2s ease-out;
  }
  
  .play-icon:hover {
    transform: scale(1.1);
  }
  
  .play-icon-blue {
    fill: #009dfb; /* Modrá barva vnitřního trojúhelníku */
    stroke: none; /* Bez obrysu */
    /* Můžete zkusit i z-index, pokud by se stále překrývalo */
    z-index: 2; /* Zajistí, že bude nad oranžovým */
  }
  
  /* Styly pro vnější oranžový obrys */
  .play-icon-orange {
    fill: #fb7600; /* Oranžová barva */
    stroke: none; /* Bez obrysu */
    /* Zde již není opacity: 0, takže bude viditelný */
    z-index: 1; 
  }
  
  .collage-item.playing .play-button-overlay {
    opacity: 0;
    pointer-events: none;
  }
  
  .photogalery-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 50px;
  margin: 0px 0px 50px 0px;
  }
  
  .social-media {
    width: 100%;
    margin-bottom: 100px;
  }
  
  .social-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
    align-items: center;
  }
  
  .social-container a {
    margin: 50px 0px;
  }
  
  .social-container h1 {
    margin-top: 40px;
    color: #009dfb;
    font-size: 72px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
  }
  
  .social-text {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .ikona-sipka {
    width: 24px;
    height: 24px;
  }
  
  .ikona-sipka {
    fill: #FB7600;
  }
  
  .social-text img {
    width: 15px;
    margin-right: 10px;
  }
  
  .social-text h2 {
    color: #009dfb;
    font-family: 'Just Another Hand';
    font-size: 48px;
    font-weight: 400;
    transform: rotate(-1deg);
    border-bottom: 3px solid orange;
  }
  
  .social-container-images {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .social-images a {
    text-decoration: none;
    list-style-type: none;
  }
  
  .social-images img {
    width: 20%;
    padding: 20px;
  
  }
  
  .rabbit-container-left {
  position: fixed; 
  bottom: 50%; 
  width: 150px;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  cursor: pointer;
  z-index: 50;
  }
  
  .rabbit-container-right {
  position: fixed;
  bottom: 20%; 
  width: 150px;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  cursor: pointer;
  z-index: 99999;
  }
  
  .rabbit-container-bottom {
  position: fixed;
  bottom: -200px;
  left: 20%;
  transform: translateX(-50%);
  width: 150px;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  cursor: pointer;
  z-index: 50;
  }
  
  .rabbit-container-bottom:hover {
  opacity: 0 !important;
  transform: translateY(0);
  }
  
  .rabbit-container-left {
  left: -200px;
  }
  
  .rabbit-container-right {
  right: -205px;
  }
  
  .rabbit-container-bottom {
  bottom: -100px;
  }
  
  .rabbit-container-left.active {
  opacity: 1;
  transform: translateX(200px) rotate(45deg); 
  }
  
  .rabbit-container-right.active {
  opacity: 1;
  transform: translateX(-200px) rotate(45deg); 
  }
  
  .rabbit-container-bottom.active {
  opacity: 1;
  transform: translateX(-175px) rotate(90deg);
  }
  
  .rabbit-container-left:hover,
  .rabbit-container-right:hover {
  opacity: 0 !important;
  transform: translateX(0) rotate(45deg);
  }
  
  .rabbit-container-right:hover {
  opacity: 0 !important;
  transform: translateX(0) rotate(45deg);
  }

  /* references.html */
  .references-main {
    width: 100%;
    background-image: none;
  }
  
  .references-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    text-align: center;
    align-items: center;
    margin: 0px auto;
    position: relative;
  }
  
  .references-main-container h1 {
    margin-top: 40px;
    color: #009dfb;
    font-size: 120px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
  }
  
  .programme-position {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0px auto;
    width: 100%;
  }
  
  
  .headline-wrapper {
    position: relative;
    display: inline-block;
  }
  
  .headline-wrapper h1 {
    margin: 40px 0;
    color: #009dfb;
    font-size: 120px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
    position: relative;
    z-index: 1;
  }
  
  .references-img {
    position: absolute;
    width: 50px;
    height: auto;
    z-index: 2;
    pointer-events: none;
  }
  
  .references-top-right {
    top: 0;
    right: 50px;
    transform: rotate(180deg);
  }
  
  .references-bottom-left {
    bottom: 0;
    left: 50px;
    transform: translate(-20px, -20px);
  }
  
  
  .references-main-text {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .references-main-text h2 {
    color: #009dfb;
    font-family: 'Just Another Hand';
    font-size: 48px;
    font-weight: 400;
    transform: rotate(-1deg);
    border-bottom: 3px solid orange;
  }

  .references {
    width: 100%;
    margin-bottom: 100px;
  }

  .references-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .references-container h1 {
    margin-top: 40px;
    color: #009dfb;
    font-size: 72px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
  }

  .references-text {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .references-text img {
    width: 15px;
    margin-right: 10px;
  }

  .references-text h2 {
    color: #009dfb;
    font-family: 'Just Another Hand';
    font-size: 48px;
    font-weight: 400;
    transform: rotate(-1deg);
    border-bottom: 3px solid orange;
  }

  .references-logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-bottom: 75px;
  }

  .references-logo img {
    width: 19%;
    height: auto;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .references-users {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 50px;
  }

  .references-user-container {
    position: relative;
    width: 25%;
    max-height: 400px;
    background-color: #F4F4F4;
    border-radius: 25px;
    padding: 40px 20px;
    overflow: visible;
    gap: 30px;
  }

  .corner-img {
    position: absolute;
    width: 25px;
    height: auto;
    z-index: 1;
  }
  
  .top-left {
    top: -10px;
    left: -3px;
  }
  
  .bottom-right {
    bottom: -10px;
    right: -3px;
  }
  

  .references-user-container h2 {
    font-family: 'DM Sans';
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    margin-bottom: 20px;
  }

  .references-user-container p {
    position: absolute;
    bottom: 15px;
    right: 30px;
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 300;
    text-align: right;  
  }

  .references-button {
    margin-top: 30px;
  }

/* footer */

footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 20px;
  }

  .footer-container {
    display:  flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    border-radius: 75px 75px 0px 0px;
    background-color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 -30px 30px -20px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
  }
  
  .footer-info {
    width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
    margin-left: 125px;
  }

  .text-blue {
    font-family: 'Just Another Hand';
    color: #009dfb;
    font-size: 48px;
    margin-bottom: -10px;
    transform: rotate(-2deg);
  }

  .text-orange {
    font-family: 'Just Another Hand';
    color: #FB7600;
    font-size: 48px;
    transform: rotate(-2deg);
  }

  .text-orange-about {
    color: #FB7600;
  }

  .footer-info img {
    margin-top: 15px;
    max-width: 300px;
  }

  .footer-identity {
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
  }

  .footer-identity img {
    max-height: 300px;
    margin-top: -60px;
  }

  .footer-text {
    width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    width: 33%;
    margin-right: 125px;
  }

  .footer-text a {
    margin-left: auto;
    width: 90px;
  }

  .footer-email {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
    margin-top: 8px;
    width: 100%;
  }

  .footer-email a {
    color: black;
    list-style-type: none;
    text-decoration: none;
    font-family: 'DM Sans';
    font-weight: bold;
    font-size: 22px;
    margin-top: 5px;
    width: 100%;
  }

  .technical-text a {
    font-family: 'DM Sans';
    font-weight: 300;
    font-size: 15px;
    color: #FB7600;
    list-style-type: none;
    text-decoration: none;
  }

  .technical-text p {
    font-family: 'DM Sans';
  }

  .footer-social-icons i {
    font-size: 24px;
    color: #009dfb;
    padding: 5px;
  }
  
  .footer-copyright {
    display: flex;
    justify-content: space-between;
    margin: 20px 125px;
    font-family: "DM Sans";
  }

  .skybert-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
  }
  
  .skybert-logo img {
    width: 100px;
    margin-right: 10px;
  }
  
  .skybert {
    font-weight: 700;
  }

  /* komponenty */

  .animated-button {
    background-color: #009dfb;
    border: none;
    border-radius: 25px;
    /* max-width: 220px; -- Může být potřeba doladit nebo odstranit, pokud text přetéká při animaci */
    width: auto;
    padding: 3px 5px; /* Sjednotíme padding, vnitřní mezery zajistí flexbox */
    font-size: 12px;
    font-family: 'DM Sans';
    font-weight: 600;
    color: white;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center; /* Vertikální zarovnání obsahu */
    justify-content: flex-end; /* Zpočátku zarovná na konec (šipka vpravo) */
    overflow: hidden; /* Skryje obsah, který se posune mimo tlačítko */
    position: relative;
    transition: background-color 0.3s ease-out; /* Plynulá změna barvy pozadí buttonu */
    gap: 5px; /* Mezera mezi textem a šipkou */
    padding-left: 20px; /* Odsazení celého obsahu od levého okraje buttonu */
    padding-right: 8px; /* Odsazení celého obsahu od pravého okraje buttonu */
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
  .button-text {
    /* Odebereme order, protože ho nebudeme měnit */
    transition: transform 0.3s ease-out; /* Plynulý posun */
    /* Zpočátku bez transformace */
  }
  
  .button-text-aboutus {
    /* Odebereme order, protože ho nebudeme měnit */
    transition: transform 0.3s ease-out; /* Plynulý posun */
    /* Zpočátku bez transformace */
  }
  
  .button-text-long {
    transition: transform 0.3s ease-out;
  }
  
  .button-sipka-modra {
    background-color: white;
    padding: 5px;
    border-radius: 60px;
    width: 12px;
    transition: transform 0.3s ease-out; /* Plynulý posun */
    transform: rotate(-45deg);
  }
  
  .button-sipka-modra-long {
    background-color: white;
    padding: 10px;
    border-radius: 50px;
    width: 13px;
    transition: transform 0.3s ease-out; /* Plynulý posun */
    transform: rotate(-45deg);
  }
  
  .button-sipka-modra-longer {
    background-color: white;
    padding: 10px;
    border-radius: 50px;
    width: 13px;
    transition: transform 0.3s ease-out; /* Plynulý posun */
    transform: rotate(-45deg);
  }
  
  .button-sipka-modra-medium {
    background-color: white;
    padding: 10px;
    border-radius: 50px;
    width: 13px;
    transition: transform 0.3s ease-out; /* Plynulý posun */
    transform: rotate(-45deg);
  }
  
  .button-sipka-modra-aboutus {
    background-color: white;
    padding: 10px;
    border-radius: 50px;
    width: 13px;
    transition: transform 0.3s ease-out; /* Plynulý posun */
    transform: rotate(-45deg);
  }
  
  .button-sipka-modra path {
    fill: #009dfb;
  }
  
  .button-sipka-modra-long path {
    fill: #009dfb;
  }
  
  .button-sipka-modra-longer path {
    fill: #009dfb;
  }
  
  .button-sipka-modra-medium path {
    fill: #009dfb;
  }
  
  
  .button-sipka-modra-aboutus path {
    fill: #009dfb;
  }
  
  .animated-button:hover .button-text {
    transform: translateX(40px);
  }
  
  .animated-button:hover .button-text-long {
    /* Posune text doleva.
       Hodnota by měla být rovna šířce šipky + mezera mezi nimi.
       Šipka má width: 13px, padding: 10px na každé straně (celkem 20px) = 33px.
       Mezera (gap) je 10px.
       Takže posun textu doleva je - (33px + 10px) = -43px. */
    transform: translateX(30px); /* Posune text doleva */
  }
  
  .animated-button:hover .button-text-aboutus {
    /* Posune text doleva.
       Hodnota by měla být rovna šířce šipky + mezera mezi nimi.
       Šipka má width: 13px, padding: 10px na každé straně (celkem 20px) = 33px.
       Mezera (gap) je 10px.
       Takže posun textu doleva je - (33px + 10px) = -43px. */
    transform: translateX(30px); /* Posune text doleva */
  }
  
  .animated-button:hover .button-sipka-modra {
    /* Posune šipku doprava.
       Hodnota by měla být rovna šířce textu + mezera mezi nimi.
       Šířku textu (poptávka) musíme změřit nebo odhadnout (např. 60px).
       Takže posun šipky doprava je (60px + 10px) = 70px.
       Toto číslo je potřeba doladit, aby se text a šipka dokonale "minuly". */
    transform: translateX(-75px); /* Posune šipku doprava */
  }
  
  .animated-button:hover .button-sipka-modra-long {
    transform: translateX(-125px);
  }
  
  .animated-button:hover .button-sipka-modra-longer {
    transform: translateX(-150px);
  }
  
  .animated-button:hover .button-sipka-modra-medium {
    transform: translateX(-135px);
  }
  
  .animated-button:hover .button-sipka-modra-aboutus {
    transform: translateX(-130px);
  }
  
  .animated-button:hover .button-sipka-modra path {
    fill: orange;
  }
  
  .animated-button:hover .button-sipka-modra-long path {
    fill: orange;
  }
  
  .animated-button:hover .button-sipka-modra-longer path {
    fill: orange;
  }
  
  .animated-button:hover .button-sipka-modra-medium path {
    fill: orange;
  }
  
  .request-button {
    position: relative;
    overflow: hidden;
  }
  
  .request-button .button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.4s ease;
    position: relative;
  }
  
  .request-button .icon,
  .request-button .text {
    transition: transform 0.4s ease;
  }
  
  /* Výchozí stav: vše na středu */
  .request-button .icon {
    transform: translateX(0);
  }
  .request-button .text {
    transform: translateX(0);
  }
  
  /* Hover efekt: šipka vlevo, text vpravo */
  .request-button:hover .icon {
    transform: translateX(-50px);
  }
  
  .request-button:hover .text {
    transform: translateX(30px);
  }
  
  
  
  
  /* Styl pro samotný text uvnitř buttonu */
  .button-text {
    position: relative; /* Důležité pro posun */
    z-index: 2; /* Zajistí, že text bude nad šipkou */
    transition: transform 0.3s ease-out; /* Animace posunu textu */
    padding-right: 10px; /* Výchozí mezera mezi textem a šipkou */
  }
  
  /* Kontejner pro bílé kolečko a šipku uvnitř */
  .arrow-wrapper {
    position: relative; /* Důležité pro posun kolečka s textem, místo absolute */
    right: 0; /* Výchozí pozice napravo od textu (flexbox) */
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Zajistí, že kolečko bude pod textem */
    transition: transform 0.3s ease-out; /* Animace posunu kolečka */
  }
  
  /* Styly pro samotnou šipku uvnitř kolečka */
  .arrow-icon {
    width: 8px;
    height: 8px;
    border-top: 2px solid #009dfb; /* Modrá barva šipky */
    border-right: 2px solid #009dfb; /* Modrá barva šipky */
    transform: rotate(45deg); /* Otočení pro špičku */
  }
  
  .animated-button:hover .button-text {
    transform: translateX(35px); /* Posune text doprava, aby udělal místo šipce (nastav hodnotu) */
  }
  
  .animated-button:hover .arrow-wrapper {
    /* Posune kolečko s šipkou doleva před text.
       Hodnota -50px je příklad, budeš ji muset doladit podle šířky textu a šipky. */
    transform: translateX(-75px);
  }
  
  .ikona-sipecka {
    background-color: white;
    padding: 10px;
    border-radius: 50px;
    margin: 20px 35px;
    width: 20px;
    fill: #FB7600;
    rotate: -45deg;
  }
  
  .ikona-sipecka:hover {
    rotate: 0deg;
    transition: 0.5s;
  
  }
  
  .button-sipka {
    background-color: white;
    padding: 10px;
    border-radius: 50px;
    margin: 10px 20px 10px 10px;
    width: 15px;
    fill: #FB7600;
    rotate: -45deg;
  }
  
  .blue-text {
      color: #009dfb;
      line-height: 0.7;
    }
  
  .orange-text {
    color: #FB7600;
  }
  
  .main-orange-text {
    color: #FB7600;
      font-size: 90px;
      font-family: 'Luckiest Guy';
      font-weight: 400;
  }
  
  .main-white-text {
    color: white;
      font-size: 90px;
      font-family: 'Luckiest Guy';
      font-weight: 400;
  }

  /* videogalerie.html */

  .references-main {
    width: 100%;
    background-image: none;
  }
  
  .references-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    text-align: center;
    align-items: center;
    margin: 0px auto;
    position: relative;
  }
  
  .references-main-container h1 {
    margin-top: 40px;
    color: #009dfb;
    font-size: 96px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
    width: 100%;
  }

  .references-main-text {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .references-main-text h2 {
    color: #009dfb;
    font-family: 'Just Another Hand';
    font-size: 48px;
    font-weight: 400;
    transform: rotate(-1deg);
    border-bottom: 3px solid orange;
  }

  .video-wrapper {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
  }
  
  .video-wrapper h1 {
    margin: 40px 0;
    color: #009dfb;
    font-size: 120px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
    position: relative;
    z-index: 1;
  }
  
  .video-wrapper img {
    /* 2. Vyjmeme obrázek z normálního toku dokumentu */
    position: absolute; 
    
    /* 3. Vyladíme pozici obrázku vůči spanu (rodiči) */
    /* Toto jsou příklady hodnot - budete si je muset doladit! */
    top: 0px;      /* Posun od horního okraje spanu */
    left: 55px;     /* Posun od levého okraje spanu */
    width: 150px;    /* Pevná šířka obrázku kamery */
    
    /* 4. Zajistíme, aby obrázek nepřekrýval text a nebyl klikatelný */
    z-index: -1;
  }
  
  
  .video-orange {
    color: #FB7600;
    position: relative;
    display: inline-block;
  }
  
  .video-galery {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
  }
  
  .video-galery-container {
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .video-galery-single {
    width: 100%;
    max-width: 560px;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    
  
  }
  
  .video-galery-vimeo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-bottom: 50px;
    width: 100%;
  }

  .video-galery-youtube {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding-bottom: 50px;
    width: 100%;
  }
  
  .vimeo-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    padding-bottom: 56.25%;
    height: 0; 
    overflow: hidden;
  }
  
  .vimeo-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  /* fotogalery.html*/
  .fotogalery-main {
    width: 100%;
    background-image: none;
    height: 450px;
    padding-top: 50px;
  }
  
  .fotogalery-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    text-align: center;
    align-items: center;
    margin: 0px auto;
    position: relative;
  }

  .fotogalery-main-container > img {
    position: absolute;
    width: 140px;
    top: 58%;
    left: 52%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  
  .fotogalery-main-text {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .fotogalery-main-text h2 {
    color: #009dfb;
    font-family: 'Just Another Hand';
    font-size: 48px;
    font-weight: 400;
    transform: rotate(-1deg);
    border-bottom: 3px solid orange;
  }

  .main-title-container {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  
  .main-title-container h1 {
    color: #009dfb;
    font-size: 120px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
    line-height: 0.9;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    line-height: 0.6;
    margin-top: 20px;
  }
  
  h1.foto {
    color: #009dfb;
    font-size: 120px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
    line-height: 0.9;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  
  h1.galerie {
    color: #009dfb;
    font-size: 120px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
    line-height: 0.9;
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  
  /*
  .smiley-r {
    color: #009dfb;
    font-size: 120px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
    line-height: 0.9;
    position: absolute;
    top: 110px;
    left: 41.5%;
    transform: translateX(110px); 
    z-index: 3;
  }
  */
  
  
  .fotogalery {
    width: 100%;
    margin-bottom: 125px;
  }
  
  .fotogalery-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }
  
  .fotogalery-single {
    display: flex;
    justify-content: center;
    margin: 0 auto 10px auto;
    width: 95%;
    border-radius: 50px;
  }
  
  .fotogalery-single img {
    width: 100%;
    height: 500px;
    object-position: 25% 25%;
    border-radius: 50px;
    object-fit: cover;
  }
  
  .fotogalery-double-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    height: auto;
    text-align: center;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 30px;
    gap: 40px;
  }
  
  .fotogalery-double-first {
    margin: 10px;
    width: 45%;
    height: 350px;
    border-radius: 50px;
    margin-left: 30px;
  }
  
  .fotogalery-double-first img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50px;
  }
  
  .fotogalery-double-second {
    display: flex;
    margin: 10px;
    width: 55%;
    height: 350px;
    border-radius: 50px;
    margin-right: 30px;
  }
  
  .fotogalery-double-second img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50px;
  }
  
  .fotogalery-triple-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 650px;
    gap: 40px;
    margin-bottom: 30px;
  }
  
  .triple-double-column {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 60%;
    margin: 30px;
    height: 100%;
  }
  
  .triple-single-column {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35%;
    height: 100%;
  }
  
  .triple-item {
    border-radius: 50px;
    overflow: hidden;
    position: relative;
  }
  
  .triple-item-small {
    flex-grow: 1;
    width: 100%;
  }
  
  .triple-item-large {
    height: 100%;
    width: 100%;
    margin-top: 55px;
    margin-right: 30px;
  }
  
  .triple-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  .fotogalery-single,
  .fotogalery-double-first,
  .fotogalery-double-second,
  .triple-item {
    overflow: hidden;
  }
  
  .fotogalery-single img,
  .fotogalery-double-first img,
  .fotogalery-double-second img,
  .triple-item img {
    cursor: pointer;
    transition: transform 0.4s ease;
  }
  
  .fotogalery-single:hover img,
  .fotogalery-double-first:hover img,
  .fotogalery-double-second:hover img,
  .triple-item:hover img {
    transform: scale(1.1);
  }
  
  .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 99999;
  }

  .lightbox.active {
      display: flex;
  }
  
  .lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 90%;
    max-height: 90%;
  }
  
  #lightbox-image {
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
  }
  
  .lightbox-close-btn,
  .lightbox-prev-btn,
  .lightbox-next-btn {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 5px;
    user-select: none;
    opacity: 0.7;
    transition: opacity 0.2s ease-in-out;
    background-color: black;
  }
  
  .lightbox-close-btn:hover,
  .lightbox-prev-btn:hover,
  .lightbox-next-btn:hover {
    opacity: 1;
  }
  
  .lightbox-close-btn {
    top: 5px;
    right: 5px;
  }
  
  .lightbox-prev-btn {
    left: 5px;
  }
  
  .lightbox-next-btn {
    right: 5px;
  }

  /* programme.html */

  .schedule-main {
    background-image: none;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  
  .scroll-navigation {
    position: absolute; /* Pozicuje se vůči .programme-main */
    z-index: 50;

    /* === HORIZONTÁLNÍ POZICE === */
    /* "Nalepeno" na levý okraj s malou mezerou 30px */
    left: 0px; 
    
    /* === VERTIKÁLNÍ POZICE A VÝŠKA === */
    /* Začátek 150px od vrchu (100px menu + 50px mezera) */
    top: 0px; 
    /* Výška je 100% výšky okna mínus prostor nahoře (150px) a dole (50px) */
    height: calc(100vh - 100px); 

    /* Vnitřní uspořádání pomocí Flexboxu */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Kontejner pro samotný posuvník */
.scroll-bar-container {
    /* Kouzlo, které roztáhne posuvník na maximum */
    flex-grow: 1;
    
    width: 5px; /* Vaše šířka posuvníku */
    background-color: #e0e0e0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    margin: 20px 0; /* Vytvoří mezeru mezi šipkami a posuvníkem */
}

.scroll-bar {
  width: 100%;
  height: 90%;
  position: relative;
}
  
  .arrow-container {
    /* Zajistí, aby se šipky "nezmačkly", pokud by bylo málo místa */
    flex-shrink: 0;
    
    /* Vaše ostatní styly... */
    width: 100px;
    height: 100px;
    background-color: #009dfb;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center; 
}
  
  .arrow-container:hover {
    background-color: #FB7600;
  }
  
  .arrow-up {
    transform: rotate(270deg);
    width: 42px;
    fill: white;
  }
  
  .arrow-down {
    transform: rotate(90deg);
    width: 42px;
    fill: white;
  }
  
  
  
  
  
  .scroll-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: #ff9900;
    border-radius: 4px;
    transition: top 0.2s ease-out;
  }
  
  .content-slides {
    width: 100%;
    max-width: 1200px;
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .content-slide {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    display: none;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .content-slide.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
  }
  
  .schedule-title,
  .schedule-title-2,
  .schedule-title-3,
  .schedule-title-4 {
    width: 56%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0px auto;
  }

  .schedule-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
  }
  
  .schedule-title h2 {
    color: #009dfb;
    font-family: 'DM Sans';
    font-size: 80px;
    font-weight: 500;
    line-height: 1;
    margin: 0px 0px 0px 130px;
    width: 100%;
  }
  
  .performance-blog [data-target] { cursor: pointer; }
  
  .schedule-title p {
    font-size: 20px;
    width: 80%;
    font-family: 'DM Sans';
    font-weight: 300;
    margin-left: 130px;
    margin-top: 20px;
  }
  
  .schedule-icon {
    width: 18%;
    fill:#009dfb;
    margin-left: 10px;
    transform: translate(-325px, 80px);
  }
  
  .schedule-icon-2 {
    width: 20%;
    fill:#009dfb;
  }
  
  .schedule-orange {
    width: 100%;
    color: #FB7600;
    font-size: 96px;
    transform: rotate(-10deg);
    position: absolute;
    font-family: 'Just Another Hand';
    top: 0.9em;
    left: 4.6em;
  }
  
  .schedule-orange-2 {
    width: 100%;
    color: #FB7600;
    font-size: 96px;
    transform: rotate(-10deg);
    position: absolute;
    font-family: 'Just Another Hand';
    top: 0.8em;
    left: 5em;
  }
  
  .schedule-orange-3 {
    width: 100%;
    color: #FB7600;
    font-size: 96px;
    transform: rotate(-10deg);
    position: absolute;
    font-family: 'Just Another Hand';
    top: 1em;
    left: 4.4em;
  }
  
  .schedule-clocks {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    font-family: 'DM Sans';
    margin-left: 125px;
  }
  
  .schedule-clocks img {
    width: 10%;
    margin-left: 10px;
  }
  
  .schedule-clocks .clock {
    width: 40px;
    margin-right: 10px;
  }
  
  .schedule-clocks p {
    font-size: 36px;
    font-family: 'Just Another Hand';
    align-items: center;
    color: #FB7600;
    width: auto;
    margin-left: 10px;
    font-weight: 200;
  }
  
  .schedule-image-container {
    display: flex;
    flex-direction: column;
    width: 42%;
    justify-content: center;
    margin: 50px;
  }
  
  .schedule-image-double {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 230px;
  }
  
  .image-1,
  .image-2 {
    width: 45%;
    height: 200px;
    position: relative;
    overflow: hidden;
  }
  
  .image-1 img,
  .image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .image-1:hover img,
  .image-2:hover img {
    transform: scale(1.2);
  }
  
  .schedule-image-single {
    width: 100%;
    height: 200px;
    margin-top: 25px;
    position: relative; 
    overflow: hidden;
  }
  
  .schedule-image-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    object-position: 25% 25%;
  }
  
  .schedule-image-single:hover img {
    transform: scale(1.2);
  }
  
  /* Styly, které jsou společné pro všechny bloky */
  
  
  .programme-main {
    /* Klíčová oprava: Přidá horní odsazení o velikosti vašeho menu. */
    /* !!! Nahraďte 100px skutečnou výškou vašeho menu !!! */
    padding-top: 100px; 
  
    /* Zajišťuje, že padding je započítán DO celkové výšky a nerozbije layout. */
    box-sizing: border-box;
  
    /* Kontejner musí zabírat 100% výšky okna. */
    height: 90vh;
    
    /* Další potřebné vlastnosti */
    width: 100%;
    position: relative; 
    overflow: hidden; /* Skryje neaktivní .view a zabrání scrollu */
    display: block; /* Flexbox zde není potřeba, pozicování řeší .view */
    justify-content: center;
  }
  
  .view {
    /* Všechny 'view' jsou absolutně pozicovány uvnitř .programme-main */
    position: absolute;
  
    /* Začínají hned pod přidaným paddingem */
    top: 0px; /* !!! Tato hodnota musí být STEJNÁ jako padding-top u .programme-main !!! */
    left: 0;
    
    width: 100%;
    /* Výška je dopočítána tak, aby vyplnila zbytek místa pod menu */
    height: calc(90vh - 0px); /* !!! Zde musí být také STEJNÁ hodnota jako padding-top !!! */
    
    /* Nastavení vnitřního layoutu pro každý program */
    display: flex;
    flex-direction: row; /* Obsah uvnitř .view (text a obrázky) je vedle sebe */
    align-items: center;
    justify-content: space-between;
    
    /* Sjednocená animace: vysunutí zespodu a zprůhlednění */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    
    /* Důležité: Neaktivní pohledy jsou "neviditelné" pro myš */
    pointer-events: none;
  }
  
  .view.active {
    opacity: 1;
    z-index: 2; /* Aktivní pohled je vždy navrchu */
    pointer-events: auto; /* Aktivní pohled je klikatelný */
  }
  
  
  .programme-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 640px;
    text-align: center;
    align-items: center;
    z-index: 2;
    margin-right: 0;
    box-sizing: border-box;
    max-width: none;
    margin: 0 auto;
  }
  
  .programme-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 100000;
  }
  
  .programme-but {
    background-color: white;
    border: 1px solid;
    border-radius: 25px;
    color: #009dfb;
    width: auto;
    padding: 5px 20px;
    margin: 0px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    z-index: 99999;
  }
  
  
  .programme-but:hover {
    background-color: #FB7600;
    color: white;
    border: 1px solid #009dfb;
    z-index: 99999;
  }
  
  
  .programme-main-container h1 {
    margin-top: 40px;
    color: #009dfb;
    font-size: 120px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
  }
  
  .programme-main-text {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .programme-main-text .ikona-sipka {
    width: 20px;
    fill:#FB7600;
  }
  
  .programme-main-text h2 {
    color: #009dfb;
    font-family: 'Just Another Hand';
    font-size: 48px;
    font-weight: 400;
    transform: rotate(-1deg);
    border-bottom: 3px solid orange;
  }
  
  .floating-image {
    position: absolute;
    width: 175px;
    height: auto;
    user-select: none;
    will-change: transform;
    filter: drop-shadow(0px 0px 8px rgba(0,0,0,0.2));
    transition: transform 0.2s ease-out;
    pointer-events: auto; /* Ponechte, aby se detekoval pohyb myši na obrázcích */
  }
  
  .floating-images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999; 
    /* KLÍČOVÁ ZMĚNA: Umožní proklik na prvky pod tímto kontejnerem */
    pointer-events: none; 
  }

  /* footer.html*/

  .main-contact {
    width: 100%;
    height: 630px;
    background-image: none;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    position: relative;
  }
  
  .contact-title {
    position: relative;
    width: 30%;
    display: flex;
    justify-content: center;
  }

  .contact-name {
    writing-mode: vertical-rl;
    font-family: 'DM Sans';
    font-size: 170px;
    font-weight: 400;
    color: #009dfb;
    align-items: center;
    transform: rotate(180deg);
    line-height: 0.8;
    margin: 0;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
  }
  
  .contact-challenge {
    position: absolute;
    top: 170px;
    left: 100px;
    transform: rotate(-10deg);
    font-family: 'Just Another Hand', cursive;
    font-size: 84px;
    color: #FB7600;
    font-weight: 400;
    z-index: 2;
  }
  
  .contact-data {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .contact-data-image {
    width: 80%;
    height: 350px;
    margin: 50px 0px;
  }

  .contact-data-image img {
    width: 100%;
  }
  
  .contact-data-text {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .contact-data-text a {
    text-align: left;
    margin-top: 0px;
    font-family: 'DM Sans';
    font-weight: 400;
    font-size: 38px;
    margin-right: 80px;
    line-height: 1.1;
    list-style-type: none;
    text-decoration: none;
    color: black;
  }
  
  .contact-small {
    font-size: 22px;
    font-weight: 300;
  }


  /* aboutus.html */
  .aboutus-main {
    width: 100%;
    background-image: none;
    height: 660px;
    position: relative; 
    overflow: hidden; 
  }
  
  .aboutus-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    text-align: center;
    align-items: center;
    margin: 0px auto;
  }
  
  .aboutus-main-container h1 {
    margin-top: 50px;
    color: #009dfb;
    font-size: 120px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
    line-height: 0.9;
    position: relative;
  }
  
  .aboutus-main-text {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  

  
  .pan-kravata-img {
    position: absolute;
    bottom: -83px; 
    left: 850px; 
    width: 47%;
    z-index: 9999;
    margin: 0;
    padding: 0;
  }
  
  .aboutus-main-text h2 {
    color: #009dfb;
    font-family: 'Just Another Hand';
    font-size: 48px;
    font-weight: 400;
    transform: rotate(-1deg);
    border-bottom: 3px solid orange;
  }

.aboutus {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;
  }
  
  .aboutus-info {
    width: 100%;
    display: flex;
    justify-content: start;
    text-align: left;
    align-items: left;
  }
  
  .aboutus-info-2 {
    width: 100%;
    display: flex;
    justify-content: start;
    text-align: left;
    align-items: left;
  }
  
  .orange-line {
    border-bottom: 3px solid orange;
  }
  
  .aboutus-info p {
    font-family: 'DM Sans';
    font-weight: 300;
    font-size: 40px;
    width: 75%;
    margin-left: 50px;
    line-height: 1.2;
  }
  
  .aboutus-info-2 p {
    font-family: 'DM Sans';
    font-weight: 300;
    font-size: 40px;
    width: 100%;
    padding: 0px 50px;
    line-height: 1.2;
  }
  
  .aboutus-info-image {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    
  }
  
  .aboutus-info-image img {
    width: 94%;
    border-radius: 100px;
    height: 950px;
  }
  /*.foto-kouzelnik-pan-kravata_show {*/
  /*    border-radius: 50px;*/
  /*}*/
  
  .aboutus-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 100px 0px;
  }

  .aboutus-container-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: 100px auto;
  }
  
  .aboutus-container-text {
    display: flex;
    flex-direction: column;
    width: 50%;
    text-align: left;
    margin: 0px 50px;
  }

  .aboutus-container-text-2 {
    display: flex;
    flex-direction: column;
    width: 50%;
    text-align: left;
    margin: 0px 50px;
    padding-left: 50px;
  }
  
  .aboutus-container-text p {
    font-family: 'DM Sans';
    font-weight: 300;
    font-size: 42px;
    width: 95%;
    line-height: 1.2;
  }

  .aboutus-container-text-2 p {
    font-family: 'DM Sans';
    font-weight: 300;
    font-size: 42px;
    width: 100%;
    line-height: 1.2;
    
  }
  
  .aboutus-container-text a {
    width: 180px;
    margin-top: 25px;
  }
  
  .aboutus-container-text button {
    margin-top: 20px;
    width: 225px;
    font-size: 12px;
    text-align: left;
  }
  
  .aboutus-container-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
  }
  
  .aboutus-container-image img {
    width: 100%;
    border-radius: 50px;
    height: 800px;
    object-fit: cover;
  }

  .aboutus-container-image-2 {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
  }
  
  .aboutus-container-image-2 img {
    width: 100%;
    border-radius: 50px;
    height: 800px;
    object-fit: cover;
    margin-left: 50px;
  }

  /* .aboutus */

.aboutus-main {
    width: 100%;
    background-image: none;
    height: 660px;
    position: relative; 
    overflow: hidden; 
  }
  
  .aboutus-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    text-align: center;
    align-items: center;
    margin: 0px auto;
  }
  
  .aboutus-main-container h1 {
    margin-top: 50px;
    color: #009dfb;
    font-size: 120px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
    line-height: 0.9;
    position: relative;
  }
  
  .aboutus-main-text {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  /* Třída pro obrázek, který je nyní mimo hlavní kontejner */
  .pan-kravata-img {
    position: absolute; /* Měníme zpět na absolute */
    bottom: -83px; 
    left: 850px; 
    width: 47%;
    z-index: 9999; /* Zůstává vysoký pro zobrazení nad navigací */
    margin: 0;
    padding: 0;
  }
  
  .aboutus-main-text h2 {
    color: #009dfb;
    font-family: 'Just Another Hand';
    font-size: 48px;
    font-weight: 400;
    transform: rotate(-1deg);
    border-bottom: 3px solid orange;
  }

/*  .cookie-banner {*/
/*    display: none; !* Ve výchozím stavu je skrytá *!*/
/*    position: fixed;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    background-color: #333;*/
/*    color: white;*/
/*    padding: 15px;*/
/*    box-sizing: border-box;*/
/*    z-index: 10000;*/
/*    align-items: center;*/
/*    gap: 20px;*/
/*}*/



.cookie-banner {
    display: none; /* Ve výchozím stavu je skrytá */
    position: fixed;
    bottom: 0;
    right: 0;
    /*display: flex;*/
    flex-direction: column;
    justify-content: flex-end;
    background-color: white;
    box-shadow: 15px 0 30px -5px rgba(0, 0, 0, 0.15), 0 -15px 30px 0px rgba(0, 0, 0, 0.15);
    border-radius: 75px 75px 0px 0px;
    width: 50%;
    z-index: 10000;
    padding-bottom: 25px;
}
.cookie-banner-show {
    display: flex!important; /* Třída .show ji zviditelní */
}

.cookie-banner h2 {
    color: #009dfb;
    font-size: 72px;
    font-family: 'Luckiest Guy';
    font-weight: 400;
    margin: 50px 50px -25px 50px;
}

.cookie-banner p {
    font-size: 20px;
    font-weight: 300;
    padding: 25px 50px;
    width: 90%;
}

.cookies-button {
    position: relative;
    overflow: hidden;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    background-color: white;
    border: 2px solid #FB7600;
    color: black;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
    margin-left: 50px;
    cursor: pointer;
    transition: color 0.4s;
    width: 27%;
}

.cookies-button span {
    position: relative;
    z-index: 2;
}

.cookies-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FB7600;
    z-index: 1;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

.cookies-button:hover {
    color: black;
}

.cookies-button:hover::before {
    transform: translateY(0);
}

