* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    overflow-x: hidden;
}


/*** BLU  ***/
.btn.btn-primary, a.btn.btn-primary {
    border-radius: 5px;
    margin-bottom: 0px !important; 
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
   
}


/*** BLU END ***/

.custom-banner {
    position: relative;
    width: 100%;
    height: 70vh; /* Výška % obrazovky */
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center; /* Centrovanie obsahu */
}

.custom-banner video {

    position: absolute;
    top: 0;
    left: 0;
    min-height: 60%;
    object-fit: fill !important;
    z-index: -1;
    height: 100%;
    width: 100%;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #ffffff; /* Biela farba textu */
    text-align: center;
    max-width: 80%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
    padding: 40px;
    background-color: rgba(0, 0, 0, 0); /* Jemné pozadie pre lepšiu čitateľnosť */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 300;
    color: #f0f0f0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #000000 !important;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
}

.btn:hover {
    background-color: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    z-index: 1;
}

/* Responzívny dizajn */
@media screen and (max-width: 992px) {


    .custom-banner video {
        background-color: white;
        object-fit: fill !important;
        z-index: -1;
        height: 100%;
        width: 100%;
    }



    .banner-content h2 {
        font-size: 2.5rem;
    }

    .banner-content p {
        font-size: 1.3rem;
    }



}

@media screen and (max-width: 768px) {

    .custom-banner {
        min-height: 100px !important;
        max-height: 150px !important;
    }

    /*.custom-banner {
        min-height: 350px;
        height: 40vh;
    }*/

    .banner-content {
        padding: 30px 20px;
        max-width: 90%;
        /*padding-bottom: 10% !important;*/
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .btn {
        /*padding: 12px 25px ;*/
    }
}

@media screen and (max-width: 480px) {
    .banner-content h2 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

.next-to-carousel-banners {
    margin-top: 11px;
}

