* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 

body {
  font-family: Arial, sans-serif;
  background-color: #000000;
  color: #ffffff;
  scroll-behavior: smooth;
    zoom: 0.95;
}
 
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
 
/* HOME sekce */
.section-home .home-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 120px 5vw;
  gap: 150px;
}
 
.home-text {
  max-width: 600px;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.7;
}
 
/* Layout video + text */
.video-text-block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 5vw;
  gap: 40px;
  flex-wrap: wrap;
}
 
.video-text-block .video,
.video-text-block .text {
  flex: 1 1 45%;
  max-width: 45%;
}
 
.video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 4px solid #00ffe0;
  border-radius: 4px;
  box-shadow: 0 0 15px #00ffe0;
}
 
.text {
  text-align: center;
}
 
.text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00ffe0;
  text-transform: uppercase;
}
 
.text p {
  font-size: 1.1rem;
}
 
/* Reverse order (text left, video right) */
.video-text-block.reverse .video {
  order: 2;
}
.video-text-block.reverse .text {
  order: 1;
}
 
/* Responsivita */
@media (max-width: 768px) {
  .video-text-block {
    flex-direction: column;
  }
 
  .video-text-block .video,
  .video-text-block .text {
    max-width: 100%;
  }
}

.show-page .video iframe {
    max-width: 200px;
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    display: block;
    margin: 0 auto;
}
