@charset "utf-8";
/* CSS Document */


/* =========================
   MAPA
========================= */

#map {
    width: 100%;
    height: 600px;
}


/* =========================
   POPUP
========================= */

.maplibregl-popup {
    border-radius: 12px !important;
    overflow: hidden !important;
}

.maplibregl-popup-content {
    padding: 0;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
    pointer-events: auto;
}

.maplibregl-popup-tip {
    display: none;
}


/* =========================
   OBSAH POPUPU
========================= */

.ke-popup {
    width: 260px;
    background: #ffffff;
    font-family: Arial, sans-serif;
    pointer-events: auto;
    overflow: hidden;
}

.ke-popup-image {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 9px 9px 0 0;
}

.ke-popup-body {
    padding: 16px 20px 20px;
}

.ke-popup-title {
    font-size: 19px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
    padding-left: 10px;
    border-left: 5px solid #111111;
}

.ke-popup-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
}

.ke-popup-number {
    font-size: 12px;
    font-weight: 700;
    color: #777777;
}

.ke-popup-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #111111 !important;
}

.ke-popup-text {
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
}


/* =========================
   REEL TLAČÍTKO
========================= */

.ke-popup-link {
    display: inline-block;
    margin-top: 14px;
    padding: 9px 15px;

    border: 2px solid #111111;
    border-radius: 18px;

    background: #111111;
    color: #ffffff;

    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
    touch-action: manipulation;

    transition: all 0.2s ease;
}

.ke-popup-link:hover {
    background: #ffffff;
    color: #111111;
}


/* =========================
   JAZYK
========================= */

#language-switcher {
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
}

#language-switcher button {
    border: none;
    background: none;
    padding: 3px 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

#language-switcher button.lang-active {
    text-decoration: underline;
}

#language-switcher span {
    color: #999999;
}


/* =========================
   KATEGORIE
========================= */

#category-filter {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin: 10px auto 12px;
}

.category-button {
    border: 2px solid #dddddd;
    background: #ffffff;
    color: #444444;

    padding: 7px 12px;
    border-radius: 18px;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}

.category-button:hover {
    transform: translateY(-1px);
}

.category-button.active {
    color: #ffffff;
    border-color: #222222;
    background: #222222;
}


/* =========================
   PINY S IKONAMI
========================= */

.ke-marker {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border: 1px solid #111111;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);

    cursor: pointer;

    transition: transform 0.15s ease;
}

.ke-marker:hover {
    transform: scale(1.12);
}

.ke-marker svg {
    display: block;
}


/* =========================
   MOBIL
========================= */

@media (max-width: 600px) {

    #map {
        width: 100%;
        height: 80vh;
    }


    /* POPUP */

    .ke-popup {
        width: 280px;
    }

    .ke-popup-image {
        height: 155px;
    }

    .ke-popup-body {
        padding: 15px 18px 18px;
    }

    .ke-popup-title {
        font-size: 20px;
    }

    .ke-popup-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .ke-popup-link {
        padding: 11px 15px;
        font-size: 14px;
    }


    /* PINY */

    .ke-marker {
        width: 44px;
        height: 44px;
    }


    /* JAZYK */

    #language-switcher {
        font-size: 15px;
    }

    #language-switcher button {
        font-size: 15px;
        padding: 5px 7px;
    }


    /* KATEGORIE */

    #category-filter {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 6px;

        margin: 4px 0 6px;
        padding: 0 8px;

        white-space: nowrap;
        scrollbar-width: none;
    }

    #category-filter::-webkit-scrollbar {
        display: none;
    }

    .category-button {
        flex: 0 0 auto;
        padding: 9px 13px;
        font-size: 14px;
        border-radius: 20px;
    }


    /* HLAVIČKA */

    h1 {
        margin: 0;
        padding: 14px 16px 10px;

        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        font-weight: 800;

        line-height: 1;
        text-align: left;

        color: #111111;
        background: #ffffff;
    }

}