* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

/*
  user-select: none; 
  -webkit-user-select: none; 
  -moz-user-select: none; 
  -ms-user-select: none; 

  někdy do budoucna by se mohlo hodit
*/
}
body {
  margin: 0;
  padding: 0;
}



html {
  scroll-behavior: smooth;
}










.header {

  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;

  
}

.logo img {
  height: 80px;
  width: auto;
}

.menu-open-btn {
  background: none;
  border: none;
}

.menu-open-img {
  height: 70px;
  width: auto;
  cursor: pointer;
  
}


.menu {
  display: flex;
  align-items: center;   /* Vertikální zarovnání všech položek na střed */
  gap: 15px;             /* Mezera mezi položkami */
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 30px;             /* Mezera mezi odkazy */
  margin: 0;
}

.menu ul li a {
  color: white;
  text-decoration: none;
  font-family: Rubik, sans-serif;
  font-weight: bold;
  font-size: 20px;
}




/* Skrytí položek menu, dokud nezačne animace */
.menu ul li {
  opacity: 0;  /* Skryté při načtení */
  transform: translateX(100px);  /* Posunuto mimo obrazovku (vpravo) */
  transition: opacity 0s, transform 0s;  /* Zajištění, že položky jsou skryté před animací */
  padding: 8px 0;
}

/* Definice animace pro přijíždění z pravé strany */
@keyframes menuslide {
  0% {
    opacity: 0;
    transform: translateX(100px); /* Skryté a posunuté mimo obrazovku */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* Posun na normální pozici */
  }
}

/* Aplikace animace na položky menu při otevření */
.header.menu-open .menu ul li:nth-child(1) {
  animation: menuslide 0.4s ease-out forwards;
  animation-delay: 0s;  /* Zpoždění pro první položku */
}

.header.menu-open .menu ul li:nth-child(2) {
  animation: menuslide 0.4s ease-out forwards;
  animation-delay: 0.1s;  /* Zpoždění pro druhou položku */
}

.header.menu-open .menu ul li:nth-child(3) {
  animation: menuslide 0.4s ease-out forwards;
  animation-delay: 0.2s;  /* Zpoždění pro třetí položku */
}

.header.menu-open .menu ul li:nth-child(4) {
  animation: menuslide 0.4s ease-out forwards;
  animation-delay: 0.3s;  /* Zpoždění pro čtvrtou položku */
}

.header.menu-open .menu ul li:nth-child(5) {
  animation: menuslide 0.4s ease-out forwards;
  animation-delay: 0.4s;  /* Zpoždění pro pátou položku */
}

.header.menu-open .menu ul li:nth-child(6) {
  animation: menuslide 0.4s ease-out forwards;
  animation-delay: 0.5s;  /* Zpoždění pro šestou položku */
  background: linear-gradient(135deg, #176b87 60%,#053b50);
  padding: 8px 12px;
  border-radius: 10px;
}

.header.menu-open .menu ul li:nth-child(6) a {
font-weight: 800;
color: #fff;

}






.notactive {
  display: none !important; 
}

.menu-close-btn {
  background: none;
  border: none;
  cursor: pointer;        /* Pro lepší interaktivitu */
  padding: 0;             /* Odstranění výchozího odsazení tlačítka */
}

.menu-close-btn img {      /* Oprava selektoru pro správné cílení na obrázek */
  height: 50px;
  width: auto;
  vertical-align: middle;

}

.header.menu-open {

  backdrop-filter: blur(10px);
  transition: backdrop-filter 0.3s ease-in-out;
}

.jvsoftlogo{
  display: none;
}

@media (max-width: 1020px) {

  body.menu-open {
    overflow: hidden;
  }
  
  
  .header.menu-open ~ .contentuvod2 {
    display: none;
  }
  

  header.menu-open {
    position: fixed; /* Fixní pozice, aby bylo přes celou obrazovku */
    width: 100vw;
    height: 100dvh; /* Celá výška obrazovky */
    display: block;
    z-index: 10000; /* Zvýšení z-indexu */ 
    
    background: linear-gradient(135deg, #64ccc5, #176b87);


  }

  .menu-open .menu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    vertical-align: middle;


    margin-top: 20%;

  }
  header.menu-open .jvsoftlogo img{
    background-color: #fff;
    border-radius: 8px;
    padding: 4px 6px;
    height: 32px;
    margin-left: 8px;          

  }
  header.menu-open .jvsoftlogo{
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    vertical-align: middle;

    position: absolute;
    margin-top: 5px;
    bottom: 20px;

    animation: jvsoftlogo 0.6s ease-out forwards;
  }

  @keyframes jvsoftlogo {
    0% {
      transform: translateY(100px); /* Skryté a posunuté mimo obrazovku */
    }
    100% {
      transform: translateY(0); /* Posun na normální pozici */
    }
  }

  
  .menu ul {
    flex-direction: column;
    gap: 20px;
    margin: auto;
    

    justify-content: center;
    align-items: center;
    vertical-align: middle;

  }

  .menu ul li a {
    font-size: 24px;
  }

  .menu-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  /* Oprava: Když se menu otevře, zajistí, že překryje obsah */
  .menu.menu-open {
    display: flex !important;
  }

  .notactive {
    display: none !important; 
  }





  .header.menu-open .menu ul li:nth-child(6) {
    background: #fff !important;
    padding: 8px 12px;
    border-radius: 10px;
  }
  
  .header.menu-open .menu ul li:nth-child(6) a {
  font-weight: 800;
  background: linear-gradient(to right, #176b87 50%,#053b50);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  
  }

  .menu ul li {
    padding: 0px 12px;
  }
}











.background {
  position: relative;
  background-image: url("uvodfoto.webp");
  background-size: cover;       /* Zajistí ořezávání bez deformace */
  background-position: center;  /* Udrží obrázek vycentrovaný */
  background-repeat: no-repeat;
  overflow: hidden;
  height: 600px;
}

/* Přidání tmavé vrstvy přes obrázek */
.background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0) 45%,rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.2) 95%) ;

  pointer-events: none; 
  z-index: 1;  /* Zajistí, že vrstva bude před obsahem, ale za obrázkem */
}


.background > * {
  position: relative;
  z-index: 2; /* Zajištění, že obsah je nad tmavou vrstvou */
}



.contentuvod2 {
  position: relative;
  z-index: 2;         /* Nad překryvem */
  color: white;
  text-align: center;
  margin-left: 50px;
}


.nadpissekceuvod1 {
  z-index: 2;
  display: flex;

  margin-top: 30px;
  margin-bottom: 20px;
}
.nadpissekceuvod2 {
  font-family: Rubik;
  font-weight: 900;
  font-size: 36px;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;

  text-align: left;

}

.uvodpodnadpis{
  font-family: Rubik;
  font-weight: 900;
  font-size: 32px;
  color: #fff;
  text-align: left;
  max-width: 450px;

  margin-left:20px ;
  margin-bottom: 25px;
}

.registracebtn1 {
 text-align: left;
 
 margin-left:20px ;
}

.registracebtn2 {
  text-decoration: none;
  color: inherit;
}

.registracebtn3 {
  font-family: Rubik;
  font-weight: bold;
  font-size: 22px;
  padding: 10px 20px 8px 20px;
  background: linear-gradient(135deg, #176b87 30%,#053b50);
  color: #ffffff;
  display: inline-block;
  transition: transform 0.3s ease-in-out;  
  transition: box-shadow 0.15s ease-in-out;  
}

.registracebtn3:hover {
  transform: scale(1.05); 
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}



.dbox {
  display: flex;
  justify-content: flex-end;  /* Zarovná doprava */
}

.dbox2 {
  background: #fff;
  display: flex;
  align-items: center;     
  gap: 10px;            
  padding: 12px 20px;             

    border-radius:30px 0 0 0;
    background: linear-gradient(170deg, rgba(255,255,255, 1) 0%, rgba(255,255,255, 1) 55%) ;

      
}

.datumtext {
  font-family: Rubik, sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #303133;
  margin: 0;                  /* Odstraní defaultní mezery h3 */
}
.datum{
  position: absolute;
  z-index: 100;
  right: 0;
  bottom: 0;
}


.menu-open .datum{
  display: none;
}










/* Animace pro příjezd zleva */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-left {
  animation: slideInLeft 0.7s ease-out forwards;
}

/* Animace pro příjezd zprava */
@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-right {
  animation: slideInRight 1s ease-out forwards;
}


@media (max-width: 1320px) {
  .background {
    height: 540px;
  }


}


@media (max-width: 980px) {
  .background::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 55%) ;
  
  }

  .background {
    height: 600px;
  }
  
  
  .contentuvod2 {
    margin-left: 20px;

  }  


  .registracebtn3{
    font-size: 26px;
  }



}



@media (max-width: 800px) {
  
  .nadpissekceuvod2 {
    font-size: 30px;  
  }
  
    


  

}


@media (max-width: 668px) {
  .contentuvod2 {
    margin-left: 0px;

  }  
  .nadpissekceuvod2 {
    font-size: 30px;  
    margin-left: 5px;
  }
  
  .nadpissekceuvod1 {
    width: 90%;
  }


   .uvodpodnadpis{
    font-size: 26px;
    max-width: 350px;
    margin-bottom: 40px;
  }
  
  .registracebtn1{
    text-align: center;
    width: 100%;
    margin-left: 0px;
  }

}




@media (max-width: 500px) {
  .nadpissekceuvod1 {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .uvodpodnadpis{
    font-size: 22px;
    max-width: 350px;
    margin-bottom: 60px;
  }


  

  .dbox2 {
    background: linear-gradient(170deg, rgba(255,255,255, 0.4) 0%, rgba(255,255,255, 1) 55%) ;    
  }
  
  .background {
    height: 540px;
  }
  
  /* Přidání tmavé vrstvy přes obrázek */
  .background::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 55%) ;
  }
  
  

}






@media (max-width: 400px) {
 

  .nadpissekceuvod2 {
    font-size: 24px;  
    margin-left: 5px;
  }
  
  
  .uvodpodnadpis{
    font-size: 22px;
    max-width: 300px;
    margin-bottom: 55px;
  }
  
  .registracebtn1{
    text-align: center;
    width: 100%;
  }

   

}

@media (max-width: 330px) {
 

  .nadpissekceuvod2 {
    font-size: 22px;  
    margin-left: 5px;
  }
  
  
  .uvodpodnadpis{
    font-size: 18px;
    max-width: 250px;
    margin-bottom: 55px;
  }
  
  .registracebtn1{
    text-align: center;
    width: 100%;
  }

   

}




.galerie{
    max-width: 1600px;
    margin: auto;
}







.nadpissekceaktuality1 {
  max-width: 1380px;
  margin: 0 auto;
  padding-left: 20px;
}
.nadpissekceaktuality2 {
  font-family: Rubik;
  font-weight: 900;
  font-size: 26px;
  padding: 10px 20px;
  background-color: #ecf0f6;
  color: #053b50;
  display: inline-block;
  margin-top: 20px;
}


.aktualitycards {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(280px, 1fr)
  ); 
  gap: 20px;
  width: 90%; 
  max-width: 1220px;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 10px;
}

.akt-odkaz {
  text-decoration: none; 
  color: inherit; 
}

.card {
  background: #fbfbfb;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  margin-top: 10px;
  margin: auto; 
}
.card4 {
  display: none;
}

.card:hover {
  transform: translateY(-5px);
}

  .card .thumbnail {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  overflow: hidden;
  }


.card .thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-content {
  padding: 15px;
}

.popis-text {
    font-family: Rubik;
    font-weight: 300;
    text-align: justify;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  font-family: Rubik;
/*  text-align: justify;*/
}

.card p {
  font-family: Rubik;
  font-weight: 300;
  text-align: justify;
}

.u-a-t {
  align-items: center;
}

.user-and-time {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.u-a-t p {
  font-size: 14px;
  color: #666;
  font-family: Rubik;
  font-weight: 400;
}

.user-and-time .user {
  margin-right: 5px;
}

.user-and-time .time {
  margin-right: 5px;
  margin-left: 20px;
}

.aktualitystopa {
  background-image: url("stopa.svg");
  background-size: cover;
  background-position: center 5px;
  background-size: 105%;
  background-repeat: no-repeat, no-repeat;
  overflow: hidden;
}
.dalsiaktuality1 {
  max-width: 1380px;
  margin: 0 auto;
  padding-right: 20px;
  text-align: right;
}

.dalsiaktuality2 {
  text-decoration: none;
  color: inherit;
}

.dalsiaktuality3 {
  font-family: Rubik;
  font-weight: bold;
  font-size: 18px;
  padding: 10px 20px 8px 20px;
  background-color: #053b50;
  color: #ffffff;
  display: inline-block;
  transition: transform 0.3s ease-in-out; 
  transition: box-shadow 0.15s ease-in-out;  
}

.dalsiaktuality3:hover {
  transform: scale(1.05); 
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}


@media (max-width: 1024px) {
  .aktualitycards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    max-width: 820px;

    margin: auto;
  }
  .card4 {
    display: flex !important;
  }
  .aktualitystopa {
    background: none !important;
  }
  .nadpissekceaktuality1 {
    text-align: center;
    padding: 0;
  }
  .nadpissekceaktuality2 {
    margin-top: 20px;
  }
}


@media (max-width: 720px) {
  .aktualitycards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); 

    max-width: 480px;

    margin: auto;
  }
  .card4 {
    display: none !important;
  }
  .nadpissekceaktuality1 {
    text-align: center;
  }
  .nadpissekceaktuality2 {
    margin-top: 20px;
  }
}

.nadpissekceonas1 {
  max-width: 1380px;
  margin: 0 auto;
  padding-left: 20px;
  margin-bottom: 20px;
}
.nadpissekceonas2 {
  font-family: Rubik;
  font-weight: 900;
  font-size: 26px;
  padding: 10px 20px;
  background-color: #ecf0f6;
  color: #053b50;
  display: inline-block;
  margin-top: 20px;
}



.onas-obsah {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1220px; 
  width: 90%;
  margin: auto;
  gap: 40px;
}

.onas-text {
  flex: 1;
  max-width: 580px;
  margin: auto;
}

.onas-text h2 {
  color: #053b50;
  font-family: Rubik;
  font-weight: 700;
  text-align: block;
  padding-bottom: 20px;
  font-size: 32px;
}

.onas-text p {
  color: #000000;
  font-family: Rubik;
  font-weight: 400;
  font-size: 18px;
}


.image-section {
  flex: 1;
  max-width: 580px;
  text-align: center;
}

.image-section img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .nadpissekceonas1 {
    text-align: center;
    margin-top: 10px;
    padding: 0;
  }

  .onas-obsah {
    flex-direction: column;
    gap: 20px;
  }

  .onas-text {
    max-width: 80%;
  }
  .image-section {
    display: none;
  }
  .onas-text h2 {
    text-align: center;
    font-size: 32px;
  }
  .onas-text p {
    font-size: 24px;
  }

  .onasregistrace1 {
    margin-top: 5px;
  }
  .onasregistrace1 {
    display: none;
  }
  .onas{
    background-image: url("stopa.svg");
    background-size: cover;
    background-position: center 5px;
    background-size: 250%;
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
}
}
@media (max-width: 720px) {
  .onas-text h2 {
    font-size: 22px;
  }

  .image-section {
    display: none;
  }
  .onas-text {
    max-width: 100%;
  }
  .onas-text h2 {
    text-align: left;
    font-size: 24px;
  }
  .onas-text p {
    font-size: 16px;
  }
  .onasregistrace1 {
    margin-top: 5px;
  }
  .onas{
    background-image: url("stopa.svg");
    background-size: cover;
    background-position: center 5px;
    background-size: 200%;
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
}
}

@media (max-width: 400px) {
  .onas{
    background-image: url("stopa.svg");
    background-size: cover;
    background-position: center 5px;
    background-size: 550%;
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
}
}

@media (max-width: 500px) {
  .onas{
    background-image: url("stopa.svg");
    background-size: cover;
    background-position: center 5px;
    background-size: 450%;
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
}
}

.nadpisphotogalerie1 {
  margin-bottom: 20px;
  text-align: center;
}

.nadpisphotogalerie2 {
  font-family: Rubik;
  font-weight: 900;
  font-size: 26px;
  padding: 10px 20px;
  background-color: #ecf0f6;
  color: #053b50;
  display: inline-block;
  margin-top: 40px;
  text-align: center;
}

.fotky {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1600px;
  margin: auto;
}

.photogalerie-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photogalerie-wrapper {
  overflow: hidden;
  width: 100%;
}

.photogalerie-item {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section {
  display: none;
}

.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 100%;
  gap: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.arrowsection {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 5px;
  gap: 10px;
  margin-right: 15px;
}

.arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  opacity: 1;
  transition: opacity 0.3s ease; 
}

.arrow img {
  width: 40px; 
  height: auto;
}

.fpc2,
.ftab,
.fmob {
  display: none;
}

@media (max-width: 1350px) {
  .active {
    grid-template-columns: repeat(3, 1fr);
  }
  .fpc1,
  .ftab,
  .fmob {
    display: none;
  }

  .fpc2 {
    display: flex;
  }
  .arrow img {
    width: 40px;
  }
}

@media (max-width: 1125px) {
  .active {
    grid-template-columns: repeat(2, 1fr);
  }
  .fpc1,
  .fpc2,
  .fmob {
    display: none;
  }
  .ftab {
    display: flex;
  }

  .arrow img {
    width: 50px;
  }
}

@media (max-width: 760px) {
  .active {
    grid-template-columns: repeat(1, 1fr);
  }
  .fpc1,
  .fpc2,
  .ftab {
    display: none;
  }
  .fmob {
    display: flex;
  }

  .arrowsection {
    justify-content: center;
    margin-right: 0;
  }
}


.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-wrapper {
  position: relative;
  display: inline-block; 
  padding: 0; 
  margin: 0;
}

.lightbox-content {
  position: relative;
  padding: 0;
  margin: auto; 
  display: inline-block;
  box-sizing: border-box;
  max-width: 65vw;
  max-height: 100vh;
}

.lightbox-img {
  max-width: 100%;
  height: auto;
  display: block;
  position: relative; 
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0; 
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10; 
  border-radius: 0 0 0 8px;
  margin: 0; 
  font-size: 32px;
}

/* Tlačítka */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  font-size: 22px;
  transition: 0.3s;
  z-index: 1001;
  border-radius: 50%; 
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.lightbox-prev {
  left: 10px; 
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 10px; 
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 1);
}

/* 📱 Responzivita */
@media (max-width: 1300px) {
  .lightbox-content {
    max-width: 80vw; 
    max-height: 1000vh; 
  }
}
@media (max-width: 1125px) {
  .lightbox-content {
    max-width: 100vw; 
    max-height: 100vh; 
  }
  .lightbox.active {
    padding: 0;
  }

  .lightbox-img {
    max-width: 100% !important;
    max-height: 100%;
  }

  .lightbox-close {
    display: none; 
  }

  .lightbox-next {
    background: none;
    padding-left: 40%;
    padding-right: 5px;
    border-radius: 0px;
    font-size: 56px;

    height: 100%;

    color: #053b50;
  }

  .lightbox-prev {
    background: none;
    padding-left: 5px;
    padding-right: 40%;
    font-size: 56px;

    height: 100%;

    color: #053b50;
  }

  .lightbox-next:hover,
  .lightbox-prev:hover {
    background: none;
  }
}

@media (max-width: 768px) {
  .lightbox-content {
    max-width: 100vw;
    max-height: 100vh; 
  }
  .lightbox.active {
    padding: 0;
  }

  .lightbox-img {
    max-width: 100% !important;
    max-height: 100%;
  }

  .lightbox-next,
  .lightbox-prev {
    font-size: 36px;
  }
}














.nadpispropozice1 {
  margin-bottom: 5px;
  text-align: center;
}

.nadpispropozice2 {
  font-family: Rubik;
  font-weight: 900;
  font-size: 26px;
  padding: 10px 20px;
  background-color: #ecf0f6;
  color: #053b50;
  display: inline-block;
  margin-top: 0px;
  text-align: center;
}



.propozice {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1220px;
  width: 90%;
  margin: auto;
}

.propozice-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #929292;
  padding: 10px 0;
  width: 100%;
}
.last{
  border-bottom: none;
}

.propozice-content {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.propozice-item h4 {
  background-color: #0d3b66;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-family: Belanosima;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}

.propozice-title {
  font-weight: bold;
  text-transform: uppercase;
  font-family: Rubik;
  color: #000;
  font-size: 22px;
}

.propozice-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
  margin-right: 10px;
}

.propozice-links a {
  text-decoration: none;
  color: #000000;
  text-decoration: underline;
  font-family: Rubik;
  font-size: 14px;
}

.propozicemobil{
  display: none;
}

/* Responzivita */
@media (max-width: 760px) {
.propozice{
  display: none;
}

.propozicemobil {
  max-width: 1220px;
  width: 90%;
  margin: auto;
  display: block;
}

.propozice-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #929292;
  padding: 10px 0;
}
.last{
  border-bottom: none;
}
.propozice-content {
  display: flex;
  width: 100%;
  align-items: center; 
  margin-left: 10px;

}

.number-circle {
  background-color: #0d3b66;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Belanosima;
  font-weight: bold;
  width: 40px;
  height: 40px;
  font-size: 20px;
  margin-right: 10px;
  flex-shrink: 0; 
}

.text-block {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  margin-left: 5px;
}

.propozice-title {
  font-weight: bold;
  text-transform: uppercase;
  font-family: Rubik;
  color: #000;
  font-size: 20px;
  margin: 0;
}

.propozice-link,
.text-block a {
  text-decoration: underline;
  color: #000;
  font-family: Rubik;
  font-size: 14px;
  margin-top: 5px;
}

.text-block .link-wrapper {
  display: flex;
  gap: 15px; 
}


}



























.nadpispartneri1 {
  margin-bottom: 5px;
  text-align: center;
  margin-top: 20px;
}

.nadpispartneri2 {
  font-family: Rubik;
  font-weight: 900;
  font-size: 26px;
  padding: 10px 20px;
  background-color: #ecf0f6;
  color: #053b50;
  display: inline-block;
  margin-top: 0px;
  text-align: center;
}
.partnericontent{
  max-width: 1220px;
  width: 90%;
  margin: auto;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 40px;
}
.partneri p{
  font-family: Rubik;
  text-align: center;
  margin: 0 10px;
}

.partneri h3{
  font-family: Rubik;
  text-align: left;
  margin-top: 10px;
}

.partnericontent img {
  width: 100%;
  height: auto;
  max-width: 400px; 
  max-height: 200px; 
  object-fit: contain; 
  
}
.gp {
  display: flex;
  justify-content: center; 
  align-items: center;    
  margin-bottom: 20px;     
}

.gp img {
  max-width: 400px;  
  width: 100%;      
  height: auto;    
  object-fit: contain;
}

.hp{
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
}


.p{
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-items: center;
}

.d{
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr);
    align-items: center;
    justify-items: center;
}




/* Responzivita */
@media (max-width: 760px) {
  .hp{
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .p{
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .d{
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
  
  
  }


















footer{
  background: linear-gradient(to right, #64ccc5, #176b87); 
  padding-top: 20px;
  z-index: 10;
}

.socialcontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  width: 90%;
  margin: auto;
  position: relative;
  border: solid 1px #ddd;
  
}

.ss{

    background: linear-gradient(to bottom, white 50%, transparent 50%),
                linear-gradient(to right, #64ccc5, #176b87);
    background-repeat: no-repeat;
    margin: 0;
  

}
.follow-section {
  max-width: 460px;
  text-align: left;
  margin-bottom: 20px;
}
.follow-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: Rubik;
}
.follow-section p {
  color: #666;
  margin-bottom: 15px;
  font-family: Rubik;
  font-weight: 300;
  font-size: 14px;
}
.social-buttons{
  text-align: center;
  margin-top: 20px;
}
.social-buttons a,.social-buttons2 a  {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: background 0.3s;
  font-family: Rubik;
}

.social-buttons2{
  display: none;
}
.social-buttons a:hover {
  background-color: #e0e0e0;
}
.post-card {
  background-color: #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 500px;
  text-decoration: none;
  color: inherit;
}
.post-header {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  font-family: Rubik;
}
.avatar {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.post-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px;
  gap: 5px;
}
.post-images img {
  width: 100%;
  height: auto;
  object-fit: cover;

}


/* Responzivita */
@media (max-width: 1120px) {
  .socialcontainer{
  max-width: 500px;
  width: 90%;
  }


    }


@media (max-width: 760px) {
.social-buttons{
  display: none;
}
.social-buttons2{
  display: block;
  text-align: center;
}

.onlypc{
  display: none;
}
.post-images {
  display: flex;
  
  }

  

      }
  




.odkazyft {
  display: flex;
  justify-content: center; 
  list-style-type: none;    
  padding: 0;              
  margin: 0;              
  gap: 20px;  
  padding-bottom: 20px;           
}

.odkazyft li a {
  text-decoration: underline;
  margin: 0 10px;
  color: #fff;              
  font-family: Rubik, sans-serif;  
  font-weight: bold; 
}

.copyright {
  display: flex;       
  flex-direction: column;     
  justify-content: center;      
  align-items: center;    
  text-align: center;           
  color: #fff;
  font-family: Rubik, sans-serif;
  font-weight: bold;
  padding: 20px;             
 
}

.copyright a {
  text-decoration: none;
  color: #fff;
  font-family: Rubik, sans-serif;
  font-weight: bold;
  margin-bottom: 8px;          
}

.copyright p {
  margin: 0;               
  display: flex;          
  align-items: center;        
}

.jvsoft {
  background-color: #fff;
  border-radius: 8px;
  padding: 4px 6px;
  height: 28px;
  margin-left: 8px;          
  margin-top: 5px;
}

@media (max-width: 760px) {
  .odkazyft {
    display: block;    
    text-align: left;    
    width: 90%;
    margin: auto ;
      
  }
  .odkazyft li {
    margin: 10px 0;
  }
  
  }