.banner-link {
    position: relative;
    display: block;
    height: 100%;
    text-decoration: none;
}

    .banner-link img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        z-index: 1;
    }

    .banner-link:hover img {
        transform: scale(1.05);
    }

.banner-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
    color: white;
}

    /* ===== TOTO SÚ NOVÉ RIADKY PRE OPRAVU VEĽKOSTI PÍSMA ===== */
    .banner-content h3 {
        font-size: 28px; /* Nastaví veľkosť hlavného nadpisu */
        line-height: 1.2;
    }

    .banner-content span {
        font-size: 16px; /* Nastaví veľkosť menšieho textu pod ním */
    }



.hero-parallax-section {
    position: relative;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Dôležité pre správne zobrazenie obrázku */
    z-index: 1;
}

.hero-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Stmavenie ako v pôvodnom kóde */
    z-index: 2;
}

.hero-parallax-content {
    position: relative;
    z-index: 3; /* Zabezpečí, že obsah je navrchu */
}

.hero-section {
    position: relative;
    width: 100%;
    height: 80vh; /* Výška 80% obrazovky, môžete zmeniť na 100vh pre celú obrazovku */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Stmavenie ako v pôvodnom slideri */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* Tieň pre lepšiu čitateľnosť */
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Vytvorí medzery medzi tlačidlami */
    flex-wrap: wrap; /* Ak by sa nezmestili, zalomia sa na ďalší riadok */
}


.hero-promo-badge {
    display: inline-block;
    padding: 10px 25px; /* Zväčšené odsadenie pre viac priestoru */
    background-color: var(--primary-color, #007bff);
    color: white;
    border-radius: 30px; /* Väčší rádius pre zaoblenejší vzhľad */
    font-weight: 700; /* Mierne tučnejšie písmo */
    margin-bottom: 25px;
    font-size: 22px; /* << ZVÄČŠENÉ PÍSMO */
    text-transform: uppercase; /* Pre lepší vizuálny dôraz */
    letter-spacing: 1px; /* Väčší rozostup medzi písmenami */
}

.banner-link-large {
    min-height: 400px; /* Zaistí minimálnu výšku pre hlavný banner */
}

.banner-content .h3 {
    font-size: 22px; /* Zmenšíme nadpis na menších banneroch */
}

.banner-content .g-font-size-14 {
    font-size: 14px !important; /* Zaistí menšiu veľkosť podnadpisu */
}








