* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background-color: #000000;
  color: #ffffff;
  scroll-behavior: smooth;
}

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-content {
  display: flex;
  align-items: stretch; /* důležité! */
  gap: 2rem;
  height: 100%; /* důležité pro výšku */
}

.home-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.logo-img {
  max-width: 400px;      /* zmenšeno z 450px */
  max-height: 150px;     /* zmenšeno z 180px */
  width: auto;
  height: auto;
  display: block;
  margin: 0 0 40px 0;    /* větší mezera pod logem */
  vertical-align: top;
  align-self: flex-start;
}

.spacer {
  flex: 1 1 auto; /* mezera mezi logem a textem, roztáhne se dle výšky fotky */
}

.home-text {
  margin-top: 0; /* zruší mezeru nad textem */
  max-width: 600px;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-photo-wrapper {
  min-width: 620px;
  max-width: 620px;
  height: 430px;
  display: inline-block;
  position: relative;
}

.home-photo {
  max-width: auto;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: 4px solid #00ffe0;
  border-radius: 1px;
  box-shadow: 0 0 15px #00ffe0;
}

.stare-logo-overlay {
  position: absolute;
  right: -75px;    /* více mimo fotku */
  bottom: -75px;   /* více mimo fotku */
  width: 350px;     /* výrazně větší než nadpis */
  height: auto;
  pointer-events: none;
  z-index: 2;
}

.home-text {
  margin-top: auto; /* zarovná text dolů pod fotku */
  text-align: left;
}

.home-text {
  max-width: 600px;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-header-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.home-header-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.logo-img {
  max-width: 320px;      /* zmenšeno z 450px */
  max-height: 120px;     /* zmenšeno z 180px */
  width: auto;
  height: auto;
  display: block;
  margin: 0 0 40px 0;    /* větší mezera pod logem */
  vertical-align: top;
  align-self: flex-start;
}

.home-image {
  max-width: 700px;
  align-self: flex-start;
}

.home-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1px;
}

.home-text h1 {
  font-family: 'Inter', Arial, sans-serif !important;
  font-weight: 800 !important; /* Inter Extra Bold */
  font-size: 4rem !important;
  margin-top: -20px !important;
  margin-bottom: 20px !important;
  color: #00ffe0 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

.home-text p {
  font-size: 1.5rem;
}

.home-text p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* VIDEO sekce */
.home-video {
  margin-top: 80px;     /* větší mezera nad sekcí s videem */
  margin-bottom: 60px;
  padding: 40px;
  background-color: #000000;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: left;      /* zarovná obsah na střed */
  color: #fff;
  position: relative;
  align-self: flex-start;
  margin-left: 0;
  margin-right: 0;
}

.home-video {
  padding-top: 160px;
  padding-bottom: 160px;
}

.home-video h2 {
  margin-bottom: 40px !important;
  font-size: 4rem !important;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00ffe0;
}

.home-video iframe {
  height: 430px;              
  aspect-ratio: 16 / 9;       
  width: 734px;               /* přesně 430 * 16 / 9 */
  border: 4px solid #00ffe0;
  border-radius: 1px;
  box-shadow: 0 0 15px #00ffe0;
  display: block;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  max-height: 100%;
}

/* Příklad: Pokud má video v sekci show tyto rozměry */
.show .video iframe {
    width: 734px;
    height: 430px;
}

.home-video .video-desc {
  margin-top: 0 !important;
  margin-bottom: 70px; /* nebo podle potřeby */
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #bff;
}

.home-video .video-desc strong {
  display: block;
  margin-bottom: 18px; /* zvětší mezeru pod tučnou větou */
}

/* Přidejte tento styl pro stejnou mezeru mezi videem a koncerty */
.home-video {
  margin-bottom: 60px; /* stejná mezera jako mezi ostatními sekcemi */
}

/* Nadpisy sekcí */
.section h2 {
  color: #00ffe0;
  margin-bottom: 60px;
}

/* Slider Styles */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  overflow: hidden; /* Prevent images from overflowing */
  margin: 0 auto; /* Center the slider */
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: calc(100% * 3); /* Adjust width based on the number of images */
}

.slider-image {
  width: 100%; /* Each image takes up the full width of the container */
  flex-shrink: 0;
}


/* FOOTER */
footer {
  background: #00ffe0;
  text-align: center;
  padding: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
    background-color: #00ffe0;
    padding: 20px;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .section-home .home-content {
    flex-direction: column;
    padding: 0 10vw;
    gap: 100px;
  }

  .home-text,
  .home-image {
    max-width: 200%;
    text-align: center;
  }

  .home-text {
    text-align: center;
  }

  .logo-img {
    margin: 0 auto 25px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    max-width: 250px;
  }

  .home-text h1 {
    font-size: 2.2rem;
  }

  .home-text p {
    font-size: 1.1rem;
  }
}

/* Přidejte nebo upravte tyto styly */
.section-home .home-header-image {
  margin-bottom: 0px; /* původně 60px, nyní menší mezera */
}

.section-home .home-content {
  margin-bottom: 100px; /* větší mezera pod úvodní sekcí (text + obrázek) */
}

/* VŠECHNY HLAVNÍ SEKCE NA HOME STRÁNCE - STEJNÁ MEZERA MEZI SEKCEMI */
.section-home .home-header-image,
.section-home .home-content,
.section-home .home-video,
.section-home .koncerty-heading,
.section-home .koncerty-table,
.section-home .hudba-heading,
.section-home .hudba-table {
  margin-bottom: 120px;
}

.section-home,
.section-show,
.section-hudba,
.section-koncerty {
  margin-bottom: 160px; /* stejná mezera mezi sekcemi */
}

/* Volitelné: poslední sekce bez spodní mezery */
.section-koncerty {
  margin-bottom: 0;
}

/* Zrušte margin-top u .koncerty-table, pokud je nastaven */
.koncerty-table {
  margin-top: 0;      /* zruší velkou mezeru nad tabulkou */
  margin-bottom: 40px;
  text-align: center;
}

.koncerty-table h2 {
  margin-top: 10px;   /* menší mezera nad nadpisem */
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #00ffe0;
  letter-spacing: 1px;
}

.koncerty-table table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #111;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 0 15px #00ffe044;
}

.koncerty-table th, .koncerty-table td {
  padding: 18px 10px;
}

.koncerty-table th {
  border-bottom: 3px solid #00ffe0;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.koncerty-table tr {
  border-bottom: 1px solid #444;
}

.koncerty-table tr:last-child {
  border-bottom: 3px solid #00ffe0;
}

.koncerty-table a {
  color: #00ffe0;
  text-decoration: underline;
  transition: color 0.2s;
}

.koncerty-table a:hover {
  color: #fff;
  background: #00ffe0;
  padding: 2px 8px;
  border-radius: 4px;
}

    .nav-tile {
      padding: 0.5em 1.2em;
      border: 2px solid transparent;
      border-radius: 0;
      color: #fff;
      font-size: 1.1em;
      text-decoration: none;
      transition: all 0.3s ease;
      background: transparent;
      box-shadow: none;
    }
    .nav-links .nav-tile {
      font-size: 1.3em;      /* větší písmo v navigaci */
      border-radius: 0;
      padding: 0.5em 1.2em;
    }
    .home-bio-tile {
  display: inline-block;
  padding: 0.5em 1.2em;
  border: 2px solid transparent;
  border-radius: 0;
  color: #fff;
  font-size: 1.3em; /* stejně jako v menu */
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
  width: auto;
  min-width: unset;
  max-width: unset;
  align-self: flex-start;
  margin-top: 50px;
}
.nav-show-img {
  height: 0.8em;           /* stejná výška jako font-size v .nav-tile */
  width: auto;
  display: inline-block;
  vertical-align: -0em; /* posune obrázek výš, uprav hodnotu dle potřeby */
  filter: none;
  transition: filter 0.3s, box-shadow 0.3s;
}
.video-show-overlay {
  position: absolute;
  right: -15%;        /* posune obrázek doprava, půlkou mimo video */
  bottom: -10%;       /* posune obrázek dolů, půlkou mimo video */
  width: 30%;         /* šířka obrázku relativně k videu */
  max-width: 180px;   /* maximální šířka na velkých obrazovkách */
  height: auto;
  z-index: 3;
  pointer-events: none;
  opacity: 0.95;
}
.home-video .video-with-image {
  text-align: left;
}

.home-video iframe {
  display: block;
  margin-left: 0;
  margin-right: auto;
}

.home-bio-tile {
  margin-top: 50px; /* stejná mezera jako mezi nadpisem a textem */
  display: inline-block;
  width: auto;
  min-width: unset;
  max-width: unset;
  padding: 0.5em 1.2em;
  border: 2px solid transparent;
  border-radius: 0;
  color: #fff;
  font-size: 1.3em;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.home-bio-tile:hover,
.home-bio-tile:active,
.home-bio-tile:focus {
  border-color: #00ffe0;
  background: rgba(0,255,224,0.1);
  color: #00ffe0;
}

.home-bio-tile,
.home-bio-tile:hover,
.home-bio-tile:active,
.home-bio-tile:visited,
.home-bio-tile.nav-tile.active {
  border: 4px solid #00ffe0 !important;
  box-shadow: 0 0 15px #00ffe0 !important;
}

.show-mesic-img {
  height: 1em;           /* výška obrázku podle velikosti textu */
  vertical-align: middle; /* zarovná s textovou linkou */
  margin-left: 10px;      /* mezera mezi nápisem a obrázkem */
}

.show-napis-img {
  height: 0.77em;         /* výška obrázku podle velikosti textu */
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.inter-custom {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400; /* nebo jiná váha, např. 700 */
  font-style: normal;
}

.header-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  width: 80px;      /* upravte dle potřeby */
  max-width: 10%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.home-header-image {
  position: relative;
}

.home-header-image .section-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
}

.video-with-image {
  display: flex;
  justify-content: center;   /* zarovná video na střed */
  align-items: center;
  max-width: 764px;
  width: 100%;
  padding-left: 0;           /* zruší odsazení vlevo */
  gap: 60px;
  margin-left: auto;         /* středí kontejner */
  margin-right: auto;
}

.show-tv-img {
  max-width: 220px;
  height: auto;
  border-radius: 8px;
  box-shadow: none;
  margin-left: 0;
}

.home-text h1,
.home-video h2,
.koncerty-table h2,
.section h2 {
  font-size: 4rem !important;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00ffe0;
  margin-bottom: 20px;
}

.home-text p,
.home-video .video-desc,
.koncerty-table,
.koncerty-table td,
.koncerty-table th {
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 1200px) {
  .video-with-image {
    padding-left: 5vw;
  }
}

.nav-tile,
.nav-links .nav-tile {
  font-family: "Inter", sans-serif !important;
  font-weight: 700 !important;      /* stejný řez jako nadpisy */
  font-style: normal !important;
}

.home-image,
.home-photo-wrapper {
  margin-top: 20px; /* posune fotografii o trochu níž, hodnotu uprav dle potřeby */
}

.nav-show-img {
  height: 0.77em;
  width: auto;
  display: inline-block;
  vertical-align: -0em; /* posune obrázek výš, uprav hodnotu dle potřeby */
  filter: none;
  transition: filter 0.3s, box-shadow 0.3s;
}

.nav-tile:hover .nav-show-img,
.nav-tile:focus .nav-show-img,
.nav-tile.active .nav-show-img {
  filter: drop-shadow(0 0 8px #00ffe0);
}

.home-video {
  position: relative;
}

.video-show-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height:
  z-index: 3;
  pointer-events: none;
  opacity: 0.95;
  filter: none;
  transition: none;
}

.section-home {
  zoom: 0.90;
}

.turquoise-text {
  color: #00ffe0;
}

.midnight-show-tile-center {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  margin-top: -40px;
  margin-bottom: 40px;
  position: relative;
}

.midnight-show-tile-center .home-bio-tile {
  justify-self: center;
  display: inline-block;
  margin: 0;
  position: relative;
  z-index: 11;
}

.arrow-img.arrow-left {
  justify-self: end;
  height: 9em;
  top: -5.5em;
  position: relative;
  margin-right: 70px;
}

.arrow-img.arrow-right {
  justify-self: start;
  height: 9em;
  top: 1em;
  position: relative;
  margin-left: 70px;
}

.home-video .video-with-image {
  margin-top: -40px; /* posune video výš, uprav dle potřeby */
}

.section-divider {
  width: 100%;
  border: none;
  border-top: 4px solid #00ffe0;    /* tyrkysová čára */
  margin: 70px 0;                   /* stejná mezera nad i pod čárou */
  box-shadow: 0 0 15px #00ffe0;     /* tyrkysový zářící efekt */
  opacity: 1;
}

.hudba-iframe {
  border: 4px solid #00ffe0;
  border-radius: 1px;
  box-shadow: 0 0 15px #00ffe0;
  background: #000;
  width: 700px !important;
  height: 394px !important;
  display: block;
}

.hudba-iframe,
.hudba-videa .video iframe {
    width: 820px !important;
    height: 461px !important;
    display: block;
    max-width: 100%;
}

.home-header-image img:first-child {
  display: block;
  width: 100%;
  border: 4px solid #00ffe0;
  border-radius: 1px;
  box-shadow: 0 0 15px #00ffe0;
  margin: 0;
  padding: 0;
}

.home-video .video-with-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding-left: 80px;   /* použij pevný pixelový padding místo 5vw */
  padding-right: 0;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 80px /* mezera mezi videem a textem */;
}

.home-video .video-with-image {
  flex: 0 0 764px;
  max-width: 764px;
  width: 74px;
  display: flex;
  align-items: center;
  margin-left: 40px;  /* zde nastav požadovaný posun videa doleva/doprava */
  margin-right: 0;
}

.video-margin-wrapper {
  margin-left: -100px; /* zde nastavíš posun videa doleva/doprava */
  margin-right: 0;
  display: flex;
}

.home-video .video-text-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  height: 100%;
  margin-left: 0px;   /* ← zde můžeš měnit posun doleva */
  margin-right: 0px;  /* ← zde můžeš měnit posun doprava */
}

.tv-show-napis-overlay {
  position: absolute;
  right: -30px;   /* místo left: -30px; */
  bottom: -40px;
  width: 120px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* Zarovnání a velikost obrázku vedle nadpisu */
.video-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: -120px;
  margin-bottom: 40px;
  margin-left: -30px;   /* ← zde můžeš měnit posun doleva */
  margin-right: 0px;  /* ← zde můžeš měnit posun doprava */
  font-size: 4rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00ffe0;
}

.video-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;    /* zarovná nadpis i text pod něj na střed */
}

.video-desc-wrapper {
  margin-left: -40px;     /* uprav hodnotu pro větší posun doleva */
  text-align: center;
}

.koncerty-heading {
  text-align: center;
  margin-top: 120px;
  margin-bottom: 60px;
}

.koncerty-heading h2 {
  font-size: 2.5rem;
  color: #00ffe0;
  letter-spacing: 1px;
  margin: 0;
}

.hudba {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    left: -250px; /* posune sekci více doleva */
}

.hudba-nadpis {

    font-size: 2.2rem;
    color: #ff4081;
    margin-left: -545px;
    width: 800px; /* stejná šířka jako video */
}

.hudba {
    max-width: 1200px;
    margin: 40px auto;
    background: #232323;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    overflow: visible; /* důležité pro záporný margin */
}

.hudba-flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.hudba-videa {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: -180px; /* skutečný posun celé svislé řady videí doleva */
}

/* Sekce hudba vystředěná na stránce */
.hudba {
    display: flex;
    justify-content: center;
    margin: 0 auto 40px auto;
    max-width: 1100px;
    background: #000000;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Flexbox pro videa a obrázky */
.hudba-flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    justify-content: flex-start;
}

/* Videa pod sebou */
.hudba-videa {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start; /* DŮLEŽITÉ pro zarovnání videí doleva */
}

/* Styl videí */
.hudba-videa .video iframe {
    width: 800px !important;
    height: 450px !important;
    display: block;
}

.hudba-videa .video {
  margin-left: 40px;
    margin-right: -120px;
}

/* Obrázky desek na pravé straně */
.hudba-obrazky {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.hudba-img {
    width: 320px !important;
    height: auto !important;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

h1, h2, h3, h4, h5, h6,
.video-title,
.koncerty-heading h2,
.hudba-section h2 {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 800 !important; /* Inter Extra Bold */
  font-style: normal;
}

.hudba-nadpis {
    position: relative;
    left: 50vw;
    transform: translateX(-50%);
    text-align: center !important;
    font-size: 2.2rem;
    color: #ff4081;
    margin-top: 40px;
    margin-bottom: 24px;
    width: max-content;
    display: block;
}

.video {
    width: 800px;
    max-width: 100%;
    margin: 32px auto 0 auto;
    box-sizing: border-box;
    display: block;
}

.video iframe {
    width: 100%;
    aspect-ratio: 16/9; /* menší výška než 16/9 */
    min-height: 200px;  /* případně uprav podle potřeby */
    max-height: 430px;  /* případně uprav podle potřeby */
    border: 4px solid #00ffe0;
    border-radius: 0;
    box-shadow: 0 0 24px 0 #00ffe0, 0 2px 8px rgba(0,0,0,0.2);
    display: block;
    background: #000;
    box-sizing: border-box;
}

.video-row {
    position: relative;
    margin-bottom: 10px;
    min-height: 1px
}

.hudba-deska-abs {
    position: absolute;
    left: calc(100% + 160px); /* mezera mezi videem a obrázkem */
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: block;
    pointer-events: none;
}

.table-title {
    margin-top: 0 !important;
    margin-bottom: -40px !important; /* malá mezera pod nadpisem */
}

.kontakt {
    width: 100%;
    max-width: 600px;
    margin: 48px auto 0 auto;
    background: #000000;
    border-radius: 12px;
    box-shadow: 0 0 24px 0 #00ffe0, 0 2px 8px rgba(0,0,0,0.2);
    padding: 32px 24px;
    color: #fff;
    box-sizing: border-box;
}

.kontakt-nadpis {
text-align: center;
  font-size: 1.4rem;
    margin-bottom: 2000px;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    font-family: inherit;
    font-size: 1.2rem; /* stejná velikost jako na zbytku stránky */
}

.kontakt-item {
    font-size: 1.2rem;
}

.kontakt-label {
    color: #00ffe0;
    font-weight: bold;
    margin-right: 8px;
}

.kontakt-value {
    color: #fff;
    text-decoration: none;
}

.kontakt,
.kontakt-info,
.kontakt-item,
.kontakt-label,
.kontakt-value {
    font-family: inherit;
    font-size: 1.6rem; /* nastav stejnou hodnotu jako na zbytku stránky */
}

.koncerty {
    margin-top: 0 !important;
    padding-bottom: 0 !important;
}

.kontakt {
    margin-top: 270px !important;
    padding-top: 0 !important;
}

.concert-table {
    width: 95%;
    max-width: 1050px;
    margin: 0 auto 32px auto;
    font-size: 1.7rem; /* o trochu větší než běžný text */
    /* ostatní designové vlastnosti zůstávají */
}

.concert-table th, .concert-table td {
    padding: 20px 16px;
    border-bottom: 1px solid #444;
    text-align: center; /* zarovnání na střed */
}

.concert-table th {
    background: #2e2e2e;
    color: #00ffe0;
    font-weight: bold;
}

.concert-table tr:last-child td {
    border-bottom: none;
}

.concert-table tr:hover {
    background: #292929;
}

/* Zarovnání videí v sekci Hudba na střed */
.hudba-videa {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}

/* Pokud existoval nějaký styl pro PNG desky, smažte ho nebo nastavte display: none; */
.png-deska, .hudba-deska, .hudba-vinyl, .hudba-vinyl-img {
  display: none !important;
}

/* Volitelně: zarovnejte iframe na střed a nastavte rozumnou šířku na mobilu */
.video iframe,
.hudba-videa iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 560px;
  height: 315px;
  border: 4px solid #00ffe0;
  border-radius: 1px;
  box-shadow: 0 0 15px #00ffe0;
  background: #000;
}

@media (max-width: 700px) {
  html, body {
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
  }

  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  main, .section, .section-home, .spacing, .hudba-section, .hudba, .home-content, .home-side, .home-photo-wrapper, .home-video, .video-with-content, .video-margin-wrapper, .video-title-block, .video-desc-wrapper, .koncerty-heading, .koncerty, .kontakt, .kontakt-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Obrázky a videa na střed a na šířku mobilu */
  img, .home-photo, .home-header-image img, .show-napis-img {
    display: block;
    margin: 0 auto !important;
    max-width: 100vw !important;
    width: 100vw !important;
    height: auto !important;
    box-sizing: border-box;
  }

  .video, .video-row, .hudba-videa .video {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .video iframe,
  .hudba-videa iframe {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
    min-height: 180px !important;
    display: block !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  /* Nadpisy na střed */
  h1, h2, h3, h4, h5, h6,
  .video-title,
  .table-title,
  .hudba-section h2,
  .kontakt-nadpis {
    text-align: center !important;
    width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Tabulka koncertů na střed a na šířku */
  .concert-table {
    width: 100vw !important;
    max-width: 100vw !important;
    font-size: 1.1rem !important;
    margin: 0 auto 24px auto !important;
    box-sizing: border-box !important;
  }
  .concert-table th, .concert-table td {
    padding: 10px 4px !important;
    font-size: 1rem !important;
  }

  /* Kontakt sekce */
  .kontakt, .kontakt-info, .kontakt-item {
    width: 100vw !important;
    max-width: 100vw !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    padding: 0 8px !important;
    box-sizing: border-box !important;
  }

  /* Odstraň všechny posuny, záporné marginy a šířky */
  .hudba, .hudba-videa, .hudba-nadpis, .home-side, .home-text-wrapper, .home-text, .spacer {
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
  }

  /* Skryj případné zbytečné obrázky desek */
  .hudba-obrazky, .hudba-img, .hudba-deska-abs, .png-deska, .hudba-deska, .hudba-vinyl, .hudba-vinyl-img {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .home-bio-tile {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 28px !important;
    text-align: center !important;
    align-self: center !important;
    width: fit-content !important;
    max-width: 90vw !important;
  }
}

@media (max-width: 700px) {
  .home-text {
    font-size: 1rem !important;
    max-width: 90vw !important;
    width: 90vw !important;
    margin: 18px auto 0 auto !important;
    padding: 10px !important;
    text-align: center !important;
    align-items: center !important;
    line-height: 1.5 !important;
  }
  .home-text p {
    font-size: 1.2rem !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 700px) {
  .home-header-image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100vw !important;
  }
  .home-header-image img {
    width: 150vw !important;
    max-width: 150vw !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 700px) {
  .home-video {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
  }
  .home-video iframe {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    height: 56.25vw !important;
    display: block !important;
    margin-left: -12vw !important;   /* posune video ještě více doleva */
    margin-right: 0 !important;
    border-radius: 0 !important;
    left: 0 !important;
    right: auto !important;
    position: relative !important;
  }
}

@media (max-width: 700px) {
  .show-napis-img {
    display: block !important;
    margin: 24px auto 0 auto !important;
    max-width: 80vw !important;
    height: auto !important;
  }
}

@media (max-width: 700px) {
  .video-title {
    font-size: 2rem !important;
  }
  .video-title .show-napis-img {
    max-height: 3rem !important;
    width: auto !important;
    margin: 0 0 0 14px !important;
    display: inline-block !important;
    vertical-align: middle !important;
  }
}

@media (max-width: 700px) {
  .video-title {
    margin-top: 0 !important;
    margin-bottom: 10px !important; /* menší mezera pod nadpisem/show png */
  }
  .show-napis-img {
    margin-top: 0 !important;
    margin-bottom: 10px !important; /* menší mezera pod show png */
  }
  .home-bio-tile {
    margin-top: 8px !important; /* dlaždice blíž k nadpisu/show png */
  }
  .home-text {
    margin-top: 8px !important; /* text blíž k nadpisu/show png */
    margin-bottom: 8px !important;
  }
}

@media (max-width: 700px) {
  .section-hudba {
    margin-bottom: 40px !important; /* mezera pod sekcí hudba */
  }
  .section-show {
    margin-top: 40px !important;    /* mezera nad sekcí show */
  }
}

@media (max-width: 700px) {
  .section-home,
  .section-hudba,
  .section-show,
  .section-koncerty,
  .section-kontakt {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  /* Pokud máš sekce bez těchto tříd, přidej je do HTML, nebo použij obecněji: */
  section {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}

@media (max-width: 700px) {
  .section-kontakt,
  .kontakt,
  .kontakt-info,
  .kontakt-item {
    font-size: 0.8rem !important;
  }
  .kontakt-nadpis {
    font-size: 1.2rem !important;
    margin-bottom: 24px