img.custom_img_desktop {
    padding-left: 20px;
}
.banner-wrapper a.custom_kategorie_box5 img, .banner-wrapper a.custom_kategorie_box6 img {
    height: 80%;
    width: 90%;
    object-fit: contain !important;
    bottom: -35px !important;
}

.banner-wrapper a.custom_kategorie_box1 img {

height: 60% !important;
bottom: -10px !important;
}
.homepage-box.welcome-wrapper {
    margin-bottom: 38px;
     margin-top: 0px; 
     padding: 0px;
}
.kontejner {
    width: 100%;
    max-width: 1418px;
    height: 550px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.baner {
    position: relative; /* Nutné pro overlay */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.baner-velky {
    grid-row: span 2;
    background-image: url('https://www.bike-centrum.cz/user/documents/upload/gallery/sane.png'); /* Velký baner */
}

.baner-maly-1 {
    background-image: url('https://www.bike-centrum.cz/user/documents/upload/gallery/idealnikolo.png'); /* Malý baner 1 */
}

.baner-maly-2 {
    background-image: url('https://www.bike-centrum.cz/user/documents/upload/gallery/prilba.png'); /* Malý baner 2 */
}

/* Overlay styl */
.prekryv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Černá s 50% průhledností */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.prekryv h2 {
    font-size: 36px;
    color: white;
    margin: 0;
}

.prekryv p {
    margin: 10px 0;
    font-size: 16px;
}

.prekryv a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #DA1719;
    color: #fff;
    border-radius: 16px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.prekryv a:hover {
    background-color: #B51515;
}
h2.mensi {
    font-size: 26px;
}

/* Responzivní pravidla */
@media (max-width: 768px) {
    .kontejner {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 10px;
    }

    .baner-velky {
        grid-row: span 1;
        height: 300px;
    }

    .prekryv h2 {
        font-size: 22px;
        color: white;
        }

    .prekryv p {
        font-size: 14px;
    }
    .banner-wrapper a.custom_kategorie_box1 img {
        height: 100% !important;
        bottom: -1px !important;
    }
}

@media (max-width: 480px) {
    .kontejner {
        gap: 10px;
    }

    .baner {
        width: 100%;
        height: 200px; /* Zvýšení výšky pro mobil */
    }

    .baner-velky {
        height: 300px; /* Zvýšení velikosti velkého baneru */
    }

    .prekryv h2 {
        font-size: 22px;
        color: white;    }

    .prekryv p {
        font-size: 14px;
    }

    .prekryv a {
        font-size: 14px;
        padding: 10px 24px;
    }
}

