@media (max-width: 500px) {
    .titleContainer {
        background: url("../images/titlePic/imgHV1.jpg") center/cover no-repeat;
    text-align: center;
    color: #ffffff;
    max-height: 200px;
    padding: 70px 20px;
    height: 110px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    }
    .titleContainer h1 {
        position: relative;
        z-index: 2; /* Text nad tmavým overlayem */
        transform: translateY(00px); /* Posunutí textu o 20px dolů */
        text-align: center;
    }
}
.titleContainer {
    background: url("../images/titlePic/imgHV1.jpg") center/cover no-repeat;
    text-align: center;
    color: #ffffff;
    padding: 70px 20px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.titleContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Přidání tmavého overlaye */
    z-index: 1;
}
@media (min-width: 501px) {
    .titleContainer h1 {
        position: relative;
        z-index: 2; /* Text nad tmavým overlayem */
        transform: translateY(70px); /* Posunutí textu o 20px dolů */
        text-align: center;
    }
}