<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * VzorovĂ˝ memoriĂˇl - Stopy v srdci
 * S JEDNODUCHĂťM POZICOVĂNĂŤM IKON
 */

/* NaÄŤtenĂ­ fontu Patrick Hand pro tooltipovĂ© bubliny */
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&amp;display=swap');

/* Reset pro sprĂˇvnĂ© zobrazenĂ­ */
body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Panel s vysvÄ›tlenĂ­m - stejnĂˇ ĹˇĂ­Ĺ™ka jako memoriĂˇl */
.guide-panel-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 55px;
    margin-bottom: 20px;
}

.guide-panel {
    width: 38vw; /* StejnĂˇ ĹˇĂ­Ĺ™ka jako memoriĂˇl */
    background-color: #f5f5f5;
    border: 2px solid #c8a14f;
    border-radius: 33px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-family: 'Patrick Hand', cursive;
}

.guide-panel h1 {
    font-family: 'Patrick Hand', cursive;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

.guide-panel p {
    font-family: 'Patrick Hand', cursive;
    color: #555;
    max-width: 800px;
    margin: 15px auto;
    line-height: 1.5;
    font-size: 1.1rem;
}

/* Ikona pĹ™Ă­mo v textu */
.inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #b08968;
    border: 2px solid #00bcd4; /* ZelenĂˇ linka */
    border-radius: 6px;
    color: white;
    font-weight: bold;
    vertical-align: middle;
    margin: 0 3px;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3); /* ZelenĂˇ zĂˇĹ™e */
    position: relative;
    top: -2px;
}

/* INFORMAÄŚNĂŤ IKONY - zĂˇkladnĂ­ styl */
.info-icon {
    position: absolute;
    width: 35px;
    height: 35px;
    background-color: #b08968; /* PrimĂˇrnĂ­ barva webu */
    border: 2px solid #00bcd4; /* ZelenĂˇ linka pro zvĂ˝raznÄ›nĂ­ */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3); /* ZelenĂˇ zĂˇĹ™e */
    font-family: Arial, sans-serif;
    font-size: 20px;
}

/* PulsujĂ­cĂ­ efekt pro ikony */
.info-icon::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 12px;
    border: 2px solid #00bcd4; /* ZelenĂˇ linka pro pulsovĂˇnĂ­ */
    opacity: 0.4;
    z-index: -1;
    animation: simple-pulse 2s infinite ease-in-out;
}

@keyframes simple-pulse {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.4; }
}

/* Hover efekt pro ikony */
.info-icon:hover {
    transform: scale(1.1);
}

/* ================================================================= */
/* DESKTOP POZICE JEDNOTLIVĂťCH IKON - jednoduchĂ© pĹ™Ă­mĂ© pozicovĂˇnĂ­    */
/* ================================================================= */

/* IKONA HLAVNĂŤ FOTOGRAFIE */
.main-photo-icon {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 9999 !important;
}

/* IKONA PROFILOVĂťCH KOLEÄŚEK */
.profiles-icon {
    top: -40px !important;
    right: 60 !important;
}

/* IKONA NAVIGAÄŚNĂŤCH Ĺ&nbsp;IPEK */
.navigation-icon {
    top: 0px !important;
    left: 60px !important;
    right: auto !important;
}

/* IKONA JMĂ‰NA */
.name-icon {
    top: 5px !important;
    right: 5px !important;
}

/* IKONA DAT NAROZENĂŤ A ĂšMRTĂŤ */
.dates-icon {
    top: -10px !important;
    right: 5px !important;
}

/* IKONA Ĺ˝IVOTOPISU */
.bio-icon {
    top: 5px !important;
    right: -50px !important;
}

/* IKONA GALERIE */
.gallery-icon {
    top: 0px !important;
    right: -50px !important;
}

/* IKONA VIDEA */
.video-icon {
    top: 0px !important;
    right: -50px !important;
}

/* IKONA AUDIA */
.audio-icon {
    top: 5px !important;
    right: -50px !important;
}

/* IKONA UMĂŤSTÄšNĂŤ HROBU */
.grave-icon {
    top: 0px !important;
    right: -50px !important;
}

/* IKONA INFORMACĂŤ O POHĹEBIĹ&nbsp;TI */
.cemetery-icon {
    top: -5px !important;
    right: -50px !important;
}

/* IKONA TLAÄŚĂŤTKA MAPY */
.map-button-icon {
    top: 25px !important;
    left: 160px !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

/* IKONA TLAÄŚĂŤTKA STOPY V SRDCI */
.heart-button-icon {
    top: 25px !important;
    left: 160px !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

/* IKONA TLAÄŚĂŤTKA MYHERITAGE */
.heritage-button-icon {
    top: 25px !important;
    left: 170px !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

/* Hover efekty pro tlaÄŤĂ­tka */
.map-button-icon:hover,
.heart-button-icon:hover,
.heritage-button-icon:hover {
    transform: translateX(-50%) scale(1.1) !important;
}

/* TOOLTIP STYLY */
.info-tooltip {
    position: fixed;
    width: 350px;
    background-color: rgba(51, 51, 51, 0.95);
    border: 2px solid #c8a14f; /* PĹŻvodnĂ­ hnÄ›dĂˇ barva */
    border-radius: 10px;
    padding: 20px;
    color: white;
    z-index: 9999; /* Velmi vysokĂˇ hodnota pro pĹ™ekrytĂ­ vĹˇeho */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.9);
    transform-origin: top center;
    transition: transform 0.3s, opacity 0.3s;
    font-family: 'Patrick Hand', cursive;
}

.info-tooltip.active {
    opacity: 1;
    transform: scale(1);
}

.info-tooltip-title {
    font-family: 'Patrick Hand', cursive;
    font-size: 24px;
    color: #c8a14f; /* PĹŻvodnĂ­ hnÄ›dĂˇ barva */
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(200, 161, 79, 0.5);
}

.info-tooltip-content {
    font-family: 'Patrick Hand', cursive;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-tooltip-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-align: center;
    line-height: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.info-tooltip-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ============================================================================= */
/* MOBILNĂŤ VERZE POZICOVĂNĂŤ IKON - stejnĂ© jednoduchĂ© nastavenĂ­ pro mobilnĂ­ verzi */
/* ============================================================================= */

@media (max-width: 768px) {
    /* ZĂˇkladnĂ­ styly pro mobilnĂ­ verzi */
    .guide-panel-container {
        margin-top: 60px;
    }
    
    .guide-panel {
        width: 90vw;
        padding: 15px;
        border-radius: 20px;
    }
    
    .guide-panel h1 {
        font-size: 24px;
    }
    
    .info-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .info-tooltip {
        width: 280px;
        padding: 15px;
    }
    
    .info-tooltip-title {
        font-size: 20px;
    }
    
    .info-tooltip-content {
        font-size: 16px;
    }
    
    /* MOBILNĂŤ POZICE IKON */
    
    /* IKONA HLAVNĂŤ FOTOGRAFIE - MOBILNĂŤ */
    .main-photo-icon {
        top: 10px !important;
        right: 10px !important;
    }
    
    /* IKONA PROFILOVĂťCH KOLEÄŚEK - MOBILNĂŤ */
    .profiles-icon {
        top: -20px !important;
        right: 0 !important;
    }
    
    /* IKONA NAVIGAÄŚNĂŤCH Ĺ&nbsp;IPEK - MOBILNĂŤ */
    .navigation-icon {
        top: 0px !important;
        left: 20 !important;
    }
    
    /* IKONA JMĂ‰NA - MOBILNĂŤ */
    .name-icon {
        top: 5px !important;
        right: 5px !important;
    }
    
    /* IKONA DAT NAROZENĂŤ A ĂšMRTĂŤ - MOBILNĂŤ */
    .dates-icon {
        top: 5px !important;
        right: 5px !important;
    }
    
    /* IKONA Ĺ˝IVOTOPISU - MOBILNĂŤ */
    .bio-icon {
        top: 5px !important;
        right: -14px !important;
    }
    
    /* IKONA GALERIE - MOBILNĂŤ */
    .gallery-icon {
        top: 5px !important;
        right: 5px !important;
    }
    
    /* IKONA VIDEA - MOBILNĂŤ */
    .video-icon {
        top: 5px !important;
        right: 5px !important;
    }
    
    /* IKONA AUDIA - MOBILNĂŤ */
    .audio-icon {
        top: 0px !important;
        right: 5px !important;
    }
    
    /* IKONA UMĂŤSTÄšNĂŤ HROBU - MOBILNĂŤ */
    .grave-icon {
        top: 5px !important;
        right: 5px !important;
    }
    
    /* IKONA INFORMACĂŤ O POHĹEBIĹ&nbsp;TI - MOBILNĂŤ */
    .cemetery-icon {
        top: -5px !important;
        right: -14px !important;
    }
    
    /* IKONA TLAÄŚĂŤTKA MAPY - MOBILNĂŤ */
    .map-button-icon {
        top: -20px !important;
        left: 50% !important;
    }
    
    /* IKONA TLAÄŚĂŤTKA STOPY V SRDCI - MOBILNĂŤ */
    .heart-button-icon {
        top: -20px !important;
        left: 50% !important;
    }
    
    /* IKONA TLAÄŚĂŤTKA MYHERITAGE - MOBILNĂŤ */
    .heritage-button-icon {
        top: -20px !important;
        left: 50% !important;
    }
}

/* MenĹˇĂ­ mobilnĂ­ zaĹ™Ă­zenĂ­ */
@media (max-width: 480px) {
    .guide-panel-container {
        margin-top: 50px;
    }
    
    .guide-panel {
        padding: 10px;
        border-radius: 15px;
    }
    
    .guide-panel h1 {
        font-size: 22px;
    }
    
    .guide-panel p {
        font-size: 16px;
    }
    
    .info-icon {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .info-tooltip {
        width: 250px;
        padding: 12px;
        max-width: 90vw;
    }
    
    .info-tooltip-title {
        font-size: 18px;
    }
    
    .info-tooltip-content {
        font-size: 14px;
    }
    
    /* MĹŻĹľete zde pĹ™idat dalĹˇĂ­ specifickĂ© pozice pro velmi malĂ© displeje */
}

/* SpeciĂˇlnĂ­ tĹ™Ă­dy pro fixnĂ­ ikonu hlavnĂ­ fotky */
.main-fixed-photo-icon {
    position: fixed !important;
    width: 35px !important;
    height: 35px !important;
    background-color: #b08968 !important;
    border: 2px solid #00bcd4 !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-weight: bold !important;
    cursor: pointer !important;
    z-index: 99999 !important;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3) !important;
    font-family: Arial, sans-serif !important;
    font-size: 20px !important;
}

.main-fixed-photo-icon::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 12px;
    border: 2px solid #00bcd4;
    opacity: 0.4;
    z-index: -1;
    animation: photo-icon-pulse 2s infinite ease-in-out;
}

@keyframes photo-icon-pulse {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.4; }
}

.main-fixed-photo-icon:hover {
    transform: scale(1.1) !important;
}

/* NovĂ© navigaÄŤnĂ­ Ĺˇipky pro vzorovĂ˝ memoriĂˇl */
.nav-arrow {
    width: 90px;
    height: 24px;
    background: rgba(200, 161, 79, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative; /* DĹŻleĹľitĂ© pro pseudo-elementy */
}

/* Text uvnitĹ™ tlaÄŤĂ­tek skryjeme */
.nav-arrow {
    font-size: 0;
}

/* SpecifickĂ© vlastnosti pro levou Ĺˇipku */
.nav-arrow.prev {
    border-radius: 0 12px 12px 0;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 10% 100%, 0% 50%);
}

/* SpecifickĂ© vlastnosti pro pravou Ĺˇipku */
.nav-arrow.next {
    border-radius: 12px 0 0 12px;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

/* ZmÄ›na obsahu Ĺˇipek */
.nav-arrow.prev::before {
    content: "&lt;&lt;&lt;&lt;";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
}

.nav-arrow.next::before {
    content: "&gt;&gt;&gt;&gt;";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
}

/* Animace pro Ĺˇipky */
@keyframes chevronAnimation {
    0%, 100% { content: "&lt;&lt;&lt;&lt;"; }
    50% { content: "&lt;&lt;&lt;"; }
}

.nav-arrow.prev::before {
    animation: chevronAnimation 1.5s infinite;
}

@keyframes chevronAnimationRight {
    0%, 100% { content: "&gt;&gt;&gt;&gt;"; }
    50% { content: "&gt;&gt;&gt;"; }
}

.nav-arrow.next::before {
    animation: chevronAnimationRight 1.5s infinite;
}

/* Efekty pro navigaÄŤnĂ­ Ĺˇipky */
.nav-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Stav deaktivovanĂ©ho tlaÄŤĂ­tka */
.nav-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    animation: none;
}

/* ResponsivnĂ­ design pro mobilnĂ­ zaĹ™Ă­zenĂ­ */
@media (max-width: 768px) {
    .nav-arrow {
        width: 75px;
        height: 22px;
    }
    
    .nav-arrow.prev::before,
    .nav-arrow.next::before {
        font-size: 12px;
    }
}

/* Pro velmi malĂ© obrazovky */
@media (max-width: 480px) {
    .nav-arrow {
        width: 60px;
        height: 20px;
    }
    
    .nav-arrow.prev::before,
    .nav-arrow.next::before {
        font-size: 10px;
    }
    
    .nav-arrow.prev::before {
        content: "&lt;&lt;&lt;";
        animation: none;
    }
    
    .nav-arrow.next::before {
        content: "&gt;&gt;&gt;";
        animation: none;
    }
}

/* NastavenĂ­ okrajĹŻ pro samotnĂ© Ĺˇipky */
.profile-card .nav-arrow.prev {
    margin-left: -20px !important;
}

.profile-card .nav-arrow.next {
    margin-right: -20px !important;
}</pre></body></html>