/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 25 2026 | 21:50:46 */
/* --- VŠEOBECNÉ ŠTÝLY A BOXY --- */
.wh_bg, .wh_bg2 {
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.wh_bg:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5); /* Zvýrazní tieň pre lepší efekt */
}

@media (max-width: 768px) {
    .wh_bg, .wh_bg2 {
        height: auto; /* Zruší umelé natiahnutie */
        min-height: auto; /* Pre istotu */
    }
}

p.dobloku, .uagb-faq-content p {
    text-align: justify;
}

/* --- HLAVIČKA (HEADER) --- */
.header-contact {
    text-align: center;
    line-height: 1.5;
}

@media (min-width: 1024px) {
    p.kontaktujtenas {
        text-align: center; /* Na velkej obrazovke to bude v strede, nech nevznika divna medzera */
    }
}

.header-contact .firma {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header-contact .call {
    font-size: 16px;
    color: #666;
}

.header-contact .phone {
    font-size: 20px;
    font-weight: 700;
    color: #2d80be;
}

.header-contact .phone a {
    text-decoration: none;
}

.header-contact .phone a:hover {
    text-decoration: none;
    color: #2d80be;
}

.site-top-header-wrap {
    border-bottom: 15px solid #3483bf; /* hrúbka a farba podľa potreby */
}

/* --- SKORŠIE PREPNUTIE MENU NA BURGER --- */
@media (max-width: 1260px) {
    /* skryje desktop header */
    #main-header {
        display: none !important;
    }

    /* zobrazí mobilný header a nastav pozadie na biele */
    #mobile-header,
    #mobile-header .site-header-row-container,
    #mobile-header .site-header-row-container-inner,
    .site-top-header-wrap {
        display: block !important;
        background: #ffffff !important;
    }
}

/* --- NAVIGÁCIA A LOGÁ --- */
.btm_navigation a {
    display: inline-block;
    text-decoration: none;
    padding: 10px;
    line-height: 1.4;
}

.btm_navigation a:hover {
    background-color: white;
    padding: 10px;
}

.wh_shadow {
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
}

.cb_logo {
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.cb_logo:hover {
    filter: grayscale(0%);
    transform: scale(1.3); /* 30% zoom */
}