body
{
margin:0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ig
{
    width: 7%;
    filter: grayscale(1);
}




a:link
{
color:cyan;
text-decoration:none;
}
a:visited
{
color:cyan;
text-decoration:none;
}
a:hover
{
color:#00ff00;
text-decoration:underline;
}

.clanek
{
width:990px;
margin-left:auto;
margin-right:auto;
text-align:center;
display:flow-root;
}

@media screen and (max-width: 850px) {
  .clanek {
width:90%;
margin-left: auto;
margin-right: auto;
  }
}





.beznytext
{
font-size:1.5em;
text-align:justify;
}

@media screen and (max-width: 700px) {
  .beznytext {
display:inherit;
font-size:2.0em;
text-align:center;
  }
}


.zona0
{
background-color:#ffffff;
width:100%;
}

.zona1
{
background-color:#750001;
width:100%;
padding-bottom:20px;
color:#f0f0f0;
}

.zona1 a:link
{
color: #FFFFFF;
}

.zona1 a:hover
{
color: #f88440;
}


div.zona1 strong
{
  color:#ffffff;

}

.zona2
{
background-color:#ffffff;
width:100%;
padding-bottom:20px;
color:black;
}

div.zona2 i
{
color:rgb(0, 110, 253);
}

div.zona2 a:link
{
color:rgb(0, 110, 253);
text-decoration:underline;
}

div.zona2 a:link:hover
{
color:rgb(253, 0, 219);
text-decoration:underline;
}


.zona3
{
background-color:#040C1B;
width:100%;
padding-bottom:20px;
color:aliceblue;
}

div.zona3 strong
{
color:cornflowerblue;
}

.zona4
{
background-color:#000000;
width:100%;
padding-bottom:20px;
color:aliceblue;
}

div.zona4 strong
{
color:rgb(237, 19, 84);
}

.zona5
{
background-color:#000000;
width:100%;
padding-bottom:20px;
color:aliceblue;
}

div.zona5 strong
{
color:#3c80ff;
}

.zona6
{
background-color:#ffffff;
width:100%;
padding-bottom:20px;

}

.zona7
{
background-color:#06121b;
width:100%;
padding-bottom:20px;
color:aliceblue;
}

.zona8
{
background-color:#92e1f2;
width:100%;
padding-bottom:20px;

}

.zona10
{
background-color:#47c6d7;
width:100%;
padding-bottom:20px;

}

.zona11
{
background-color:#ffffff;
width:100%;
padding-bottom:20px;
}

.zona12
{
background-color:#000000;
width:100%;
padding-bottom:20px;
color:aliceblue;
}


.zona20
{
background-color:#222222;
width:100%;
padding-bottom:20px;
padding-top:20px;
color:aliceblue;
}

h1
{
font-size:4rem;
color:aliceblue;
}

@media screen and (max-width: 700px) {
  h1 {
font-size:3rem;
  }
}

h2
{
font-size:2rem;
}


h3
{
font-size:1.8rem;
}

.fade-in-section {
            opacity: 0;
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .fade-in-section.is-visible {
            opacity: 1;
        }



.zaoblene
{
border-radius: 10px;
    border: 2px dashed #222222;
    padding: 10px;
    width: 25%;
    text-align: center;
    display: inline-table;
    height: 250px;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 5px;
    margin-right: 5px;
    background-color:#f0f0f0;
}

.zaoblene:hover
{
background-color:#dddddd;
}



.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: underline dashed; 
    
}

.tooltip::after {
    content: attr(data-tooltip);
    visibility: hidden;
    width: 480px;  
    background-color: #ffe8bf;
    color: #000;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 170%;  
    left: 50%;
    transform: translateX(-50%); 
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    font-weight: normal;
    
  
}

.tooltip:hover::after {
    visibility: visible;
    opacity: 1;
}

.tooltip::before {
    content: "";
    visibility: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-width: 25px; /* Velikost zob��ku */
    border-style: solid;
    border-color: #ffe8bf transparent  transparent transparent; /* Barva zob��ku: oran�ov� */
    margin-top: -25px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 2; /* Zaji�t�n�, �e zob��ek je nad bublinou */
    

}

.tooltip:hover::before {
    visibility: visible;
    opacity: 1;
}


.sloupec
{
display:inline-block;
text-align:center;
background-color:#eeeeee;
padding:5px;
font-size:1.2rem;
}

.tabulka
{
width:80%;
margin-left:auto;
margin-right:auto;
display: grid;
  grid-template-columns: 1fr 1fr; /* dvě stejně široké sloupce */
  gap: 10px; /* mezery mezi buňkami */
}



.thumbnail {
  cursor: pointer;
  max-width: 150px;
  height: 150px;
  object-fit: cover;
  margin: 10px;
  border:2px solid #aaaaaa;
  opacity:0.7;
  transition-duration: 0.5s;
}

.thumbnail:hover
{
opacity:1.0;
border:2px solid #ffaaaa;
transition-duration: 0.5s;
}        

#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1999;
}

#lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
}

#lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  margin: 0 auto;
}

#close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}


.toggle-block {
  max-width: 400px;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.toggle-header {
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
  user-select: none;
}

.toggle-header:hover {
  filter: brightness(1.1);
}

.toggle-content {
  max-height: 0;
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.5;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.toggle-content.open {
  max-height: 700px; /* dostatečně vysoká pro většinu obsahu */
  padding: 15px 20px;
}


#main-header {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  font-weight: 600;
}

.nav-links a:hover {
  color: #007bff;
}

.publikace
{
  //width: 20%;
  display: inline-block;
  padding: 10px;
  transition-duration: 0.5s;
  object-fit: cover;
  width:150px;
  
}

.publikace:hover
{
  width:155px;
  transition-duration: 0.5s;
}


.edu-aktivita-body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.edu-aktivita-grid {
  display: grid;
  //grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}
.edu-aktivita-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background-color: #f9f9f9;
  transition: transform 0.2s;
  text-align: left;
}
.edu-aktivita-card:hover {
  transform: scale(1.02);
}
.edu-aktivita-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.edu-aktivita-card h3 {
  margin: 10px;
}
.edu-aktivita-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.edu-aktivita-modal-content {
  background-color: white;
  padding: 20px;
  max-width: 80%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
}
.edu-aktivita-close-button {
  float: right;
  font-size: 20px;
  cursor: pointer;
}
.edu-aktivita-reseni-toggle {
  margin-top: 20px;
  padding: 10px 15px;
  background-color: #e0e0e0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.edu-aktivita-reseni {
  display: none;
  margin-top: 5px;
  background-color: #a7ffb1;
  padding: 10px;
  border-radius: 5px;
  font-size:1.0rem;
}

.aktivita-zadani
{
font-size:1.3rem;
color:#000000;
text-align:left;
}

.aktivita-cile
{
  font-size:1rem;
  color:#333333;
  text-align:left;

}

.idobrazku
{
display: inline-block;
text-align: center;
font-size:1rem;
}

div.idobrazku .thumbnail
{
opacity:1.0;
}



.bt
{
    background-color: #ebebeb;
    padding: 15px 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #312e2e;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    user-select: none;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    width: 300px;
    border: 2px #444444 dashed;
}

.bt:hover
{
background-color: #dddddd;
}

.statistika
{
font-size:1.1rem;
text-align:center;
}


.podvod
{
width: 25%;
    border: 2px dashed #000000;
    padding: 10px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    margin: 10px;
    border-radius: 10px;

}

.analyzapodvodu
{
  width: 700px;
  height: 90%;
  background-color: #eeeeee;
  display: block;
  padding: 20px;
  font-size: 1.3rem;
  display: none;
  z-index: 10000;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -350px;
  border-radius: 10px;
  border: 2px solid;
  overflow:scroll;
  cursor: pointer;
}

.startovaciikona
{
    position: absolute;
    top: 10px;
    bottom: 20px;
    height: 96px;
    display: block;
    right: 10px;
    width: 96px;
    display: inline-block;
    z-index:100;
    cursor: pointer;
}


.minibutton
{
position:absolute;
font-size:2.5rem;
right:30px;
top:30px;
color:red;
cursor:pointer;
}

.hornilista
{
width:100%;
}

.upload
{
  font-size: 1.2rem;
  padding: 15px;
  background-color: #550000;
  color: white;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  outline: none;
  border: 0px;
}

.send
{
  font-size: 1.2rem;
  padding: 15px;
  background-color: #005507;
  color: white;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  outline: none;
  border: 0px;
}

.circleimg
{
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    
}

.circleimg:hover
{
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    
}

.image-preview
{
  width: 300px;
  padding-top: 10px;

}

.main {
background-image: url(../images/city.png);
  background-size: 100vw 100vh;
  background-position: center center;
  width: 100%;
  height: 100vh;
  margin: 0;

  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  align-items: flex-end;

  isolation: isolate; /* aby vrstvy držely pořadí */
}

.main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1); /* průhledná černá – míru ztmavení si nastavíš */
  z-index: 0;
}

.main > * {
  position: relative;
  z-index: 1; /* postavičky nad ztmavením */
}




.prokouk
{
    display: inline-block;
    width: 15%; /* každá postava zabere 20 % šířky rodiče */
    text-align: center;
    margin-bottom: 200px;
    transition-duration: 0.1s;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.prokouk:hover
{
    display: inline-block;
    margin-bottom: 205px;
    transition-duration: 0.1s;
    position: relative;;
}

.prokouk img {
  width: 100%;   /* obrázek zabere 100 % šířky .prokouk, tj. 20 % obrazovky */
  height: auto;  /* výška se přizpůsobí šířce, aby obrázek nebyl deformovaný */
}  

#babka
{
width:13%;
}

#syn
{
width:12%;
}

#dcera
{
width:13%;
}

.bubble-wrapper {
  position: relative; /* umožní pozicovat bublinu relativně k obrázku */
  display: inline-block;
}

.bubble-tip {
position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #000000;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    width:130%;
    border: 2px solid;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.bubble-wrapper:hover .bubble-tip {
  opacity: 0.90;
}

.prokouklova
{
    position: fixed;
    top: 30%;
    left: -5%;
    width: 10%;
    display: inline-block;
    transition-duration: 0.5s;
    z-index: 10;
  }

.prokouklova:hover
{

 left: -3%; 
 transition-duration: 0.5s;
}

.prokouklova img {
  width: 100%;   /* obrázek zabere 100 % šířky .prokouk, tj. 20 % obrazovky */
  height: auto;  /* výška se přizpůsobí šířce, aby obrázek nebyl deformovaný */
}  

.infobox
{
position: absolute;
    top: -750px;
    width: 660px;
    height: 680px;
    background-color: #410000;
    left: 50%;
    margin-left: -340px;
/*border-radius: 25px;*/
    padding: 10px;
    font-size: 1.5rem;
    color: white;
    text-align: left;
}

.infoboy
{
  height:320px;

}

.info
{
font-size:1.3rem;

}


.logolinka
{
display: flex
;
    align-content: flex-start;
    justify-content: center;
    padding:20px;
}

.logo
{
display:inline-block;
width:15%;
}

.cudlik
{
width:300px;
margin-right:auto;
margin-left:auto;
cursor: pointer;
}

.cudlik:hover
{
width:302px;
}

.cudliky
{
position: absolute;
bottom: 53px;
width: 100%;
}



.megabox
{
position: absolute;
    top: 50%;
    width: 660px;
    height: 680px;
    background-color: #410000;
    left: 50%;
    margin-top:-340px;
    margin-left: -340px;
/*border-radius: 25px;*/
    padding: 10px;
    font-size: 1.5rem;
    color: white;
    text-align: left;
    display: none;
    z-index:9999;
}


.prokouknito
{
  position: absolute;
  width: 100%;
  top:-300px;
}

.p2
{
width:50%;
margin-left:auto;
margin-right:auto;

}




.bubble {
    position: fixed;
    bottom: 120px;
    right: 20px;
    max-width: 250px;
    padding: 12px 16px;
    background: #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-family: sans-serif;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    }

    /* šipka bubliny */
    .bubble::after {
      content: "";
      position: absolute;
      bottom: -10px;      /* posun pod samotnou bublinu */
      right: 16px;        /* posun z pravého okraje bubliny */
      border-width: 10px 10px 0 0;
      border-style: solid;
      border-color: #f0f0f0 transparent transparent transparent;
    }


.analyzaip
{
    background-color: #225577;
    padding: 5px;
    width: 200px;
    color: #EEEEEE;
    TEXT-ALIGN: CENTER;
    padding: 10px;
    font-size: 1.5rem;
    margin-top: 15px;
    font-weight: 700;
}

.ip
{
padding:10px;
font-size:1.4rem;
}

.aktualnipodvody
{
 width: 100%;
}

.startovaciikona2
{
    position: absolute;
    /* top: 10px; */
    bottom: 48%;
    left: 4%;
    height: 96px;
    display: block;
    /* right: 10px; */
    width: 13%;
    display: inline-block;
    z-index: 200;
    cursor: pointer;
}






.rating-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.rating-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 320px;
  text-align: center;
  position: relative;
}

.rating-close-button {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

.rating-scale {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  font-size: 18px;
}

.rating-scale input[type="radio"] {
  transform: scale(1.5);
  margin-right: 5px;
}

.show-rating:hover
{
transform: scale(1.2);
transition-duration: 0.5s;
}

.show-rating
{
transform: scale(1.00);
transition-duration: 0.5s;
}

#ratingForm button {
  padding: 10px 20px;
  font-size: 16px;
  background: #007ACC;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#ratingForm button:hover {
  background: #005fa3;
}



.flaska
{
    position: absolute;
    top: 85%;
    left: 25%;
    width: 8%;
    display: inline-block;
    transition-duration: 0.5s;
    z-index: 10;
    cursor: pointer;
}

.flaska img:hover
{
 transition-duration: 0.5s;
 transform: rotate(-10deg);
}

.flaska img {
  transition-duration: 0.5s;
  width: 100%;   /* obrázek zabere 100 % šířky .prokouk, tj. 20 % obrazovky */
  height: auto;  /* výška se přizpůsobí šířce, aby obrázek nebyl deformovaný */
}  


.auto
{
    position: absolute;
    top: 63%;
    left: 16%;
    width: 8%;
    display: inline-block;
    transition-duration: 0.5s;
    z-index: 205;
    cursor: pointer;
}

.auto img {
  transition-duration: 0.5s;
  width: 100%;   /* obrázek zabere 100 % šířky .prokouk, tj. 20 % obrazovky */
  height: auto;  /* výška se přizpůsobí šířce, aby obrázek nebyl deformovaný */
}  







.megafon
{
    position: absolute;
    top: -500px;
    right: 13%;
    width: 8%;
    display: inline-block;
    transition-duration: 0.5s;
    z-index: 10;
    transition-duration: 0.5s;
    cursor: pointer;

}

.megafon img:hover
{
 transition-duration: 0.5s;
 transform: scale(1.1);
}



.megafon img {
  width: 100%;   /* obrázek zabere 100 % šířky .prokouk, tj. 20 % obrazovky */
  height: auto;  /* výška se přizpůsobí šířce, aby obrázek nebyl deformovaný */
  transition-duration: 0.5s;
}  



.babicka1
{
background-color:#5f1569;
width:100%;
padding-bottom:20px;
color:#f0f0f0;
}

.babicka2
{
background-color:#ffffff;
width:100%;
padding-bottom:20px;
color:black;
}

.babicka2 h1
{
color:black;
}

.babicka h2
{
font-size:2.5rem;

}

.tlacitko
{
    background-color: black;
    width: 60%;
    padding: 10px;
    font-size: 1.8rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-align: center;
    color: white;
    border-radius: 10px;
    transition-duration: 0.5s;
}

.tlacitko:hover
{
  transition-duration: 0.5s;
  background-color: rgb(105, 0, 0);
}

.podvody
{
display: flex;
flex-wrap: wrap;

}

.bpodvod
{
width: 47%;
    border: 2px dashed #000000;
    padding: 10px;
    display: block;
    text-align: center;
    font-weight: bold;
    margin: 8px;
    margin-left: auto;
    border-radius: 10px;
    margin-right: auto;
    font-size: 2.2rem;
    transition-duration: 0.5s;
}

.bpodvod:hover
{
color:#aa0000;
border: 2px dashed #aa0000;
transition-duration: 0.5s;
}


.bpodvody
{
text-align: center;
    font-weight: 700;
    padding: 10px;
    border: 1px solid;
    border-radius: 20px;
    background-color: #000000;
    margin: 10px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;

}

.bpodvod1
{
text-align: center;
    font-weight: 400;
    padding: 10px;
    border: 1px dashed;
    border-radius: 20px;
    
    margin: 10px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    

}

.centrobrazek
{
width:40%;
margin-left:auto;
margin-right:auto;

}

.zona2 h1
{
color:black;

}

div.zona2 .beznytext strong
{
color:black;

}

.region
{
width: 40%;
    border: 2px dashed #000000;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    background-color: #f0f0f0;
    transition-duration: 0.5s;
    transform: scale(1.0);
}

.region:hover
{
  background-color: #fafafa;
  border: 2px solid #ff0000;
  transition-duration: 0.5s;
  transform: scale(1.1);
}

.regiony
{
display: flex;
  flex-wrap: wrap;
  gap: 20px;               /* mezery mezi boxy */
  justify-content: center; /* zarovnání na střed */

}


.olda1
{
background-color:#d5c302;
width:100%;
padding-bottom:20px;
color:#000000;
}

.olda1 h1
{
  color:#000;
}

.rady
{
    background-color: black;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    display:none;
}

.rady strong
{
font-weight: 600;

}

.olda2
{
background-color:#ffffff;
width:100%;
padding-bottom:20px;
color:black;
}

.olda2 h1
{
  color:black;
}

.oldapicture
{
height: 160px;
    float: right;

}

.rizikaher
{
display: flex;
  flex-wrap: wrap;
  gap: 20px;               /* mezery mezi boxy */
  justify-content: center; /* zarovnání na střed */

}

.riziko
{
width: 25%;
    border: 2px dashed #000000;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition-duration: 0.5s;
    transform: scale(1.0);

}

.blackbox
{
    background-color: black;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width:70%;
    margin-left:auto;
    margin-right:auto;
    text-align: center;
    

}

.olda1 a:link
{
color:black;
text-decoration: underline;
font-weight: 400;
}

.olda2 a:link, a:visited
{
color:black;
text-decoration: underline;
font-weight: 400;
}




.tynka1
{
background-color:#ff8fcd;
width:100%;
padding-bottom:20px;
color:#000000;
}

.tynka1 h1
{
  color:#000;
}


.tynka2
{
background-color:#ffffff;
width:100%;
padding-bottom:20px;
color:black;
}

.tynka2 h1
{
  color:black;
}

.radatynky
{
      border: 2px dashed black;
    padding: 10px;
    background-color: #f35cb0;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
     transition-duration: 0.5s;
}

.radatynky:hover
{
 transition-duration: 0.5s;
 background-color: #cc3d8c;

}

.tynka2 a:link, a:visited
{
color:#cc3d8c;
text-decoration: underline;
font-weight: 400;
}

.tynka1 a:link, a:visited
{
color:#000000;
text-decoration: underline;
font-weight: 400;
}






.prokouklova1
{
background-color:#348bc9;
width:100%;
padding-bottom:20px;
color:#ffffff;
}

.prokouklova1 h1
{
  color:#ffffff;
}


.prokouklova2
{
background-color:#ffffff;
width:100%;
padding-bottom:20px;
color:black;
}

.prokouklova2 h1
{
  color:black;
}


.tlacitko2
{
    background-color: #00243d;
    width: 60%;
    padding: 10px;
    font-size: 1.8rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-align: center;
    color: white;
    border-radius: 10px;
    transition-duration: 0.5s;
}

.tlacitko2:hover
{
  transition-duration: 0.5s;
  background-color: rgb(0, 0, 0);
}


.rady2
{
    background-color: #00243d;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    display:none;
}

.rady2 strong
{
font-weight: 600;

}



.besedy
{
position: absolute;
    top: 50%;
    width: 660px;
    height: 680px;
    background-color: #ffffff;
    left: 50%;
    margin-top:-340px;
    margin-left: -340px;
/*border-radius: 25px;*/
    padding: 10px;
    font-size: 1.0rem;
    color: black;
    text-align: left;
    display: none;
    border: 4px solid #000000;
    z-index: 20;
}

.besedy2
{
overflow: scroll;
    height: 95%;

}

.beseda
{
    background-color: #ededed;
    padding: 10px;
    border: 2px dashed #000000;
    margin-bottom: 10px;
    transition-duration: 0.5s;
    border-radius: 10px;
    
}

.beseda:hover
{
 border: 2px solid #000000;
 background-color: #ffeaea;
transition-duration: 0.5s;
}


.beseda a:link, a:visited
{
color:#000000;
text-decoration: underline;
font-weight: 400;
}

@keyframes shake {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 0); }
  40% { transform: translate(2px, 0); }
  60% { transform: translate(-2px, 0); }
  80% { transform: translate(2px, 0); }
  100% { transform: translate(0, 0); }
}

.prokoukextra
{
    display: inline-block;
    width: 15%; /* každá postava zabere 20 % šířky rodiče */
    text-align: center;
    margin-bottom: 200px;
    transition-duration: 0.1s;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.prokoukextra:hover
{
    display: inline-block;
    margin-bottom: 205px;
    transition-duration: 0.1s;
    position: relative;;
        animation: shake 0.5s;
}

.prokoukextra img {
  width: 100%;   /* obrázek zabere 100 % šířky .prokouk, tj. 20 % obrazovky */
  height: auto;  /* výška se přizpůsobí šířce, aby obrázek nebyl deformovaný */
} 




.cihla
{
    position: absolute;
    top: 84%;
    right: 25%;
    width: 6%;
    display: inline-block;
    transition-duration: 0.5s;
    z-index: 10;
    cursor: pointer;
}

.cihla img:hover
{
 transition-duration: 0.5s;
 transform: scale(1.1);
}

.cihla img {
  width: 100%;   /* obrázek zabere 100 % šířky .prokouk, tj. 20 % obrazovky */
  height: auto;  /* výška se přizpůsobí šířce, aby obrázek nebyl deformovaný */
}  

.shiny-wrapper {
  position: relative;
  display: inline-block;
}


/* Styl pro "hvězdičky" */
.sparkle {
  position: absolute;
  color: rgb(255, 230, 6);
  font-size: 1.5rem;
  opacity: 0;
  animation: sparkle 2s infinite ease-in-out;
}

/* Různé pozice hvězdiček */
.sparkle1 { top: -10px; left: 10px; animation-delay: 0s; }
.sparkle2 { top: 20px; right: -10px; animation-delay: 1s; }
.sparkle3 { bottom: -10px; left: 50%; animation-delay: 0.5s; }
.sparkle4 { bottom: -5px; left: -10px; animation-delay: 0.25s; }
.sparkle5 { top: 15px; right: 15px; animation-delay: 0.7s; }

/* Animace */
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.5) rotate(180deg); }
}


.goldrady
{
position: absolute;
    top: 50%;
    width: 660px;
    height: 680px;
    background-color: #ffffff;
    left: 50%;
    margin-top:-340px;
    margin-left: -340px;
/*border-radius: 25px;*/
    padding: 10px;
    font-size: 1.0rem;
    color: black;
    text-align: left;
    display: none;
    border: 4px solid #000000;
    z-index: 20;
}

.goldrady2
{
overflow: scroll;
height: 95%;

}


  .coffee-read-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    transition: all 0.3s ease;
  }

  .coffee-read-box {
    flex: 1 1 calc(33.33% - 20px);
    min-width: 250px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .coffee-read-box h3 {
margin-top: 0;
    font-size: 1.6rem;
    text-align: left;
    color:#670099;
  }

    .coffee-read-box h3:hover {
    color:#af0089;
  }

  .coffee-read-box .preview {
    overflow: hidden;
    color:#000;
    text-overflow: ellipsis;
  }

  .coffee-read-box .more {
    display: none;
    margin-top: 10px;
    color: #555;
  }

  .coffee-read-box.expanded {
    flex: 1 1 100%;
    max-width: 100%;
    z-index: 10;
  }

  .coffee-read-box.expanded .preview {
    display: none;
  }

  .coffee-read-box.expanded .more {
    display: block;
  }

  .coffee-read-box::after {
    content: "▶";
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
  }

  .coffee-read-box.expanded::after {
    transform: rotate(90deg);
  }

  /* Skrytí ostatních boxů */
  .coffee-read-box.hidden {
    display: none;
  }


    .timeshake {
    animation: timeshake 0.5s;
  }

  @keyframes timeshake {
    0% { transform: translate(0, 0); }
    20% { transform: translate(0, -5px); }
    40% { transform: translate(0, 5px); }
    60% { transform: translate(0, -5px); }
    80% { transform: translate(0, 5px); }
    100% { transform: translate(0, 0); }
  }


  @media screen and (max-width: 850px) {
  .bubble {
bottom: 24%;
    right: 2%;
    font-size: 0.9rem;

  }
}


  @media screen and (max-width: 850px) {
  .cudlik {
width: 25%;

  }
}

  @media screen and (max-width: 850px) {
  .cudliky {
bottom: 1%;

  }
}


  @media screen and (max-width: 850px) {
  .statovaciikona2 {
bottom: 34%;

  }
}

  @media screen and (max-width: 850px) {
  .prokouk {
margin-bottom:12%;

  }
}

  @media screen and (max-width: 850px) {
  .prokoukextra {
margin-bottom:15%;
top: 7%;

  }
}


  @media screen and (max-width: 850px) {
  .megabox {
top:10%;
margin-top:0px;
z-index:1000;
  }
}

  @media screen and (max-width: 850px) {
  .besedy {
top:10%;
margin-top:0px;
z-index:1000;

  }
}

  @media screen and (max-width: 850px) {
  .infobox {
top:10%;
margin-top:0px;
z-index:1000;
display:none;

  }
}

  @media screen and (max-width: 850px) {
  .goldrady {
top:10%;
margin-top:0px;
z-index:1000;

  }
}



@media screen and (max-width: 850px) {
  h1 {
font-size: 2.5rem;
  }
}

@media screen and (max-width: 850px) {
  .beznytext {
font-size: 1.6em;
  }
}


@media screen and (max-width: 850px) {
  .rizikaher {
display: inline-block;
  }
}


@media screen and (max-width: 850px) {
  .riziko {
width:90%;
  }
}

@media screen and (max-width: 850px) {
  .bpodvod {
width:90%;
  }
}

@media screen and (max-width: 850px) {
  .detail {
width:62%;
  }
}



/* základní vzhled mobilní navigace */
.mobile_navbar {
  display: none; /* defaultně vypnuté, zobrazí se jen v portrait */
  position: relative;
  background-color: #ffffff;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 99999;
}

.mobile_hamburger {
  font-size: 2rem;
  cursor: pointer;
}

/* seznam odkazů */
.mobile_nav-links {
  display: none;
  flex-direction: column;
  background-color: #fff;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid #ddd;
}

.mobile_nav-links li {
  margin: 10px 0;
  text-align: center;
}

.mobile_nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.mobile_nav-links a:hover {
  color: #007bff;
}

.mobile_nav-links.mobile_active {
  display: flex;
  z-index:99999;
}

/* ZOBRAZÍ SE JEN NA MOBIL NA VÝŠKU */
@media screen and (max-width: 700px) and (orientation: portrait) {
  .mobile_navbar {
    display: block;
  }
}

/* ZOBRAZÍ SE JEN NA MOBIL NA VÝŠKU */
@media screen and (max-width: 700px) and (orientation: portrait) {
  .tooltip-box {
   left: 0%;
   transform: translateX(0%);

  }
}

/* ZOBRAZÍ SE JEN NA MOBIL NA VÝŠKU */
@media screen and (max-width: 700px) and (orientation: portrait) {
  .cudliky {
   top:23%;
   height:10%;
  }
.cudlik {
   width:70%;
  }

}


/* ZOBRAZÍ SE JEN NA MOBIL NA VÝŠKU */
@media screen and (max-width: 700px) and (orientation: portrait) {
  .megafon {
   right: 7%;
   width:20%;
z-index: 1000;
top:2%;
  }
}


/* ZOBRAZÍ SE JEN NA MOBIL NA VÝŠKU */
@media screen and (max-width: 700px) and (orientation: portrait) {
  .prokouknito {
    top: 9%;
    
  }

.p2 
{
  width:100%;
}

.bubble-tip
{
  display:none;
}

.bubble
{
  display:none;
}


#syn {
  width:24%;
}

#babka {
  width:24%;
}

#dcera {
  width:24%;
}

.prokoukextra {
  width:24%;
}

.prokouk
{
margin-bottom: 35%;;

}


.megabox
{
        top: 10%;
        margin-top: 0px;
        z-index: 1000;
        width: 95%;
        left: 0px;
        margin-left: 0;

}

.prokoukextra
{
margin-bottom: 65%;;
}

.startovaciikona2
{
    position: absolute;
    /* top: 10px; */
    bottom: 10%;
    left: 30%;
    height: 96px;
    
    /* right: 10px; */
    width: 30%;
    display: inline-block;
    z-index: 200;
    cursor: pointer;
    display:none;
}

.show-rating
{
display:none;
}

.prokouklova
{
width:23%;
top:45%;
position:absolute;
left:-8%;
}


.auto
{
display:none;
}

.flashka
{
display:none;
}

.main
{
background-size:auto;
background-position:top;
background-image: url(../images/city2.png);
}

.cihla
{
display:none;
  position: absolute;
    bottom: 5%;
    left: 5%;
    width: 20%;
    
    transition-duration: 0.5s;
    z-index: 10;
    cursor: pointer;

}


.analyzapodvodu
{
width: 88%;
    margin-left: 0px;
    left: 0px;
    top: 10%;
    font-size: 1.1rem;

}

.goldrady
{
    width: 92%;
    left: 0px;
    margin-left: 0px;

}



.besedy
{
    width: 92%;
    left: 0px;
    margin-left: 0px;

}



.infobox
{
    top: 10px;
    width: 100%;
    height: 100%;
    left: 0;
    margin-left: 0;

}

.flaska
{
display:none;
}


.ig
{
    width: 20%;
    filter: grayscale(1);
}




}






