.path-frontpage .layout-content {
  height: 100vh; /* zajistí, že obsah bude mít minimální výšku celé obrazovky */
  padding: 3rem 1rem;
}
.path-frontpage picture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* umístí obrázek pod obsah */
}

.path-frontpage picture img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* zachová poměr stran a zajistí, že obrázek pokryje celou plochu */
  object-position: center; /* vycentruje obrázek */
  border: none;
}

.path-frontpage .header {
  /*height: 50px;*/
  margin: 0 auto;
}

.path-frontpage h1 {
  text-align: center;
  margin-bottom: 4rem;
}

.front-page-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.front-page-block {
  background-color: var(--color-neutral-100);
  padding: 2rem;
}

@media screen and (min-width: 576px) {
}

@media screen and (min-width: 768px) {
  .path-frontpage header {
    background-color: transparent;
  }

  .path-frontpage .header {
    height: 250px;
  }

  .front-page-blocks {
    justify-content: space-around;
    gap: 20px;
  }

  .front-page-block {
    flex: 0 1 45%;
  }

  .front-page-block h2 {
    text-align: center;
  }

}

@media screen and (min-width: 992px) {
}

@media screen and (min-width: 1200px) {
}

@media screen and (min-width: 1400px) {
}
