/* Globálne nastavenia a typografia */
:root {
    --primary-red: #ce2b37;
    --primary-green: #009246;
    --footer-bg: #121d31;
    --font-lora: 'Lora', serif;
    --font-poppins: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-poppins);
    color: #333333;
    overflow-x: hidden;
}

/* Header */
.header-logo {
    max-height: 45px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #333;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-red);
}

/* HERO SLIDER SECTION */
.hero-section {
    min-height: calc(100vh - 65px);
    background-image: url('banner.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

/* Posun riadku s kartami o 40px nižšie */
.hero-cards-row {
    margin-top: 238px;
    margin-left: 7px;
}

/* Polopriehľadný box pre mestá */
.city-box {
    background-color: rgba(255, 255, 255, 0.67);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
}

.city-title {
    font-family: var(--font-lora);
    font-size: 2.2rem;
    font-weight: 700;
}

.title-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
}

.badge-bb {
    color: var(--primary-red);
}

.badge-ke {
    color: var(--primary-green);
}

.call-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    line-height: 1.6;
}

.phone-link {
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
}

.phone-bb {
    color: var(--primary-green);
}

.phone-ke {
    color: var(--primary-red);
}

/* Tlačidlá online objednávky */
.btn-custom {
    font-family: var(--font-poppins);
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-bb {
    background-color: var(--primary-red);
    color: #ffffff;
    border-color: var(--primary-green);
}

.btn-bb:hover {
    background-color: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-red);
}

.btn-ke {
    background-color: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-red);
}

.btn-ke:hover {
    background-color: var(--primary-red);
    color: #ffffff;
    border-color: var(--primary-green);
}

/* Dekoratívna SVG vlna na spodku Hero */
.qx-shape-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 1;
}

.qx-shape-bottom svg {
    width: 100%;
    height: 50px;
}

.qx-shape-fill {
    fill: var(--footer-bg);
}

/* FOOTER STYLES */
.site-footer {
    background-color: var(--footer-bg);
    color: #ffffff;
    padding-top: 40px;
    padding-bottom: 25px;
}

/* Tabuľka otváracích hodín */
.opening-hours-table {
    color: #e2e8f0;
    font-size: 0.88rem;
    background: transparent !important;
}

.opening-hours-table th,
.opening-hours-table td {
    background: transparent !important;
    color: #e2e8f0;
    padding: 4px 6px;
}

.opening-hours-table th {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.footer-heading {
    font-family: var(--font-poppins);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--primary-red);
    display: inline-block;
    padding-bottom: 4px;
}

.company-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
}

.text-muted-custom {
    color: #94a3b8;
}

.footer-info p {
    color: #cbd5e1;
    font-size: 0.88rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.footer-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Facebook Tlačidlo */
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #3b5998;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-btn:hover {
    background-color: #4c70ba;
    color: #ffffff;
}

.copyright-text {
    color: #64748b;
    font-size: 0.85rem;
}

/* Responzívne prispôsobenie */
@media (max-width: 991px) {
    .footer-hours-wrapper {
        margin-bottom: 25px;
    }
    
    .footer-city-block {
        padding-left: 0 !important;
    }
}

@media (max-width: 767px) {


@media (max-width: 767px) {
    /* Vypnutie hlavného pozadia a reset odsadení hlavnej sekcie */
    .hero-section {
        background-image: none !important;
        background-color: transparent;
        padding: 0 !important;
        min-height: auto !important;
    }

    .hero-section > .container {
        padding: 0 !important;
        max-width: 100% !important;
    }

    .hero-cards-row {
        margin-top: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        row-gap: 0 !important;
    }

    .hero-cards-row > [class*="col-"] {
        padding: 0 !important;
    }

    /* Všeobecné nastavenie pre celoobrazovkové bloky miest */
    .mobile-city-block {
        min-height: 100vh;
        width: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        position: relative;
    }

    /* Blok pre Banskú Bystricu */
    .mobile-city-block.block-bb {
        background-image: url('bb-namestie-mobile.jpg');
    }

    /* Blok pre Košice */
    .mobile-city-block.block-ke {
        background-image: url('kosice.jpg');
    }

    /* Prispôsobenie boxu s textom vnútri celoobrazovkového bloku */
    .city-box {
        width: 100%;
        max-width: 450px;
    }

    .city-title {
        font-size: 1.6rem;
    }

    .call-text {
        font-size: 0.95rem;
    }

    .phone-link {
        font-size: 1.2rem;
    }

    .btn-custom {
        width: 100%;
    }
}