@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*{
  margin: 0;
  padding: 0;
}

body{
  font-family: "Bebas Neue", sans-serif;
  background-color: #bfbabb;
  overflow-x: hidden !important;
}

/* MENU */

ul {
  width: 100vw;
  list-style-type: none;
  display: flex;
  justify-content: center; /* zarovnání na střed */
  align-items: center;
  background-color: #1D1B1B;
}

li {
  float: right;
}

li a {
  display: block;
  font-size: 30px;
  color: white;
  text-align: center;
  padding: 1vw 3vw 1vw 3vw;
  text-decoration: none;
}

li img{
  width: 100px;
  padding: 0;
  display: flex;
  color: white;
  text-align: center;
  padding: 1vw 3vw 1vw 3vw;
  text-decoration: none;
}

li a:hover {
  background-color: #3f3b3c;
}

.menu {
  display: flex;
  list-style: none;
  padding: 0;
}

.menu li{
  position: relative;
  z-index: 99;
}

.submenu {
  background-color: #242223;
  display: none;
  position: absolute;
}

.menu li:hover .submenu {
  display: block;
}

.hamburger {
  background-color: #1D1B1B;
  padding: 40px;
  display: none;
  font-size: 40px;  
  background: none;
  border: none;
  cursor: pointer;
}


@media (max-width: 768px) {
  .menu {
      display: none;
      flex-direction: column;
      background-color: #1D1B1B;
      position: absolute;
      width: 100vw;
      top: 0px;
      left: 0;
      padding-bottom: 10px;
      z-index: 99;
  }

  .hamburger {
      display: block;
  }

  .menu.active {
      display: flex;
  }

  #hamburger span{
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #1D1B1B;
    border-radius: 3px;
    z-index: 99;
  }

  .parentinformace{
    display: flex !important;
    width: 100vw;
    flex-direction: column;
    align-items: center;
    grid-column-gap: 0px !important;
    grid-row-gap: 1px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .parentvysledky{
    display: flex !important;
    width: 100vw;
    flex-direction: column;
    align-items: center;
    grid-column-gap: 0px !important;
    grid-row-gap: 1px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 150px !important;
    margin-top: 100px !important;
  }

  .parentkontakty{
    display: flex !important;
    width: 100vw;
    flex-direction: column;
    align-items: center;
    grid-column-gap: 0px !important;
    grid-row-gap: 1px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .parentregistrace {
    grid-column-gap: 50px !important;
  }

  .telefonkontakty, .fcbkontakty, .emailkontakty, .instakontakty{
    margin-left: 0px !important;
    margin-right: 0px !important;
    width: 350px;
  }

  input{
    width: 200px !important;
    font-size: 12px !important;
  }

  #telefon, #formularemail{
    width: 200px !important;
  }

  .instakontakty{
    margin-bottom: 200px !important;
  }

  .r2023, .r2024, .r2025{
    width: 250px;
  }

  .div4, .div5, .div6, .div7, .div8, .div9, .div10, .div11{
    display: flex;
    justify-content: center; /* Zarovnání vodorovně */
    align-items: center; /* Zarovnání svisle */
    width: 100vw !important;
    overflow: hidden;
  }

  .parent {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(3, auto) !important;
  } 

  .div1, .div2, .div3{
    height: 35vh !important;
  }

  .sponzori {
    display: flex;
    flex-wrap: wrap; /* Obrázky se automaticky přizpůsobí a přeskládají pod sebe */
    justify-content: center;
  }

  .mainponzori, .otsponzori{
    width: 100vw;
    color: #e9d526;
    padding-top: 40px;
    margin-top: 30px;
    font-size: 32px !important;
    text-align: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
  }

  .sponzorinadpis{
    font-size: 40px !important;
  }

  .logo-top img{
    height: 50px !important;
    margin-top: 60px;
  }

  .logo-row img {
    width: 150px !important;
  }

  .logo-row {
    text-align: center;
    gap: 0 !important;
  } 

}

/* MAIN WEB */

.logomain{
  display: flex;
  width: 100vw;
  justify-content: center;
  align-items: center;
}

img{
  width: 20vw;
  height: auto;
}

.mainnadpis{
  color: #1d1b1b;
  margin-top: 60px;
  font-size: 120px;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.maintext{
  opacity: 0;
  display: block;
  font-size: 26px;
  text-align: center;
  color: #3f3b3c;
  animation: fadeInDiv 1s ease-out forwards;
  animation-delay: 400ms;
}

.registracebutton{
  opacity: 0;
  margin-top: 60px;
  display: block;
  text-align: center;
  animation: fadeInDiv 1s ease-out forwards;
  animation-delay: 600ms;
  
}

.registracebutton a{
  font-size: 40px;
  padding: 15px 30px 15px 30px;
  border-radius: 5px;
  background-color: #001D7C;  
  color: white;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

.registracebutton a:hover{
  color: #1D1B1B;
  background-color: #DFC701;
  transition: background-color 0.4s ease;
}

.parent {
  padding: 10vh 5vw 0 5vw;
  display: grid;
  position: relative;  
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 0px;
  }

.parent h1{
  font-size: 40px;
  color: #1D1B1B;
}

  @keyframes fadeInDiv {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }

  h2{
    font-size: 40px;
    text-align: center;
    align-items: center;
    display: flex;
  }

  .div1, .div2, .div3{
    position: relative;
    z-index: -1;
    opacity: 0;
    padding-top: 50px;
    padding-bottom: 60px;
    height: 500px;
    /* border: 3px solid #DFC701; */
    border-radius: 10px;
    color:#3f3b3c;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 10%, rgba(191, 186, 187, 1) 80%);
    /* background-color: #dddada; */
    text-align: center;
    animation: fadeInDiv 2s ease-out forwards;
    
  }
  
  
  .div1 {  
    grid-area: 1 / 1 / 2 / 2;   
    animation-delay: 750ms;
  }

  .atext{
    font-size: 24px;
    display: block;
    padding: 5vh 30px 0 30px;
  }


  /* .parent::after{
      content: "";
      position: absolute;
      top: 30%;
      left: 0;
      width: 100%;
      height: 5px;
      background-color: #bfbabb;
      z-index: 10;
  } */

  .div2 { 
    grid-area: 1 / 2 / 2 / 3; 
    animation-delay: 1050ms;
  }
  .div3 { 
    grid-area: 1 / 3 / 2 / 4; 
    animation-delay: 1350ms;
  }

  .sponzori{
    width: 100vw;
    max-width: 100vw;
    height: auto;
    overflow: hidden;
    background-color: #1D1B1B;
    color: white;
    text-align: center;
    white-space: nowrap;
  }

  .sponzorinadpis{
    color: white;
    padding-top: 40px;
    margin-top: 30px;
    font-size: 5vw;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
  }

  .mainponzori, .otsponzori{
    width: 100vw;
    color: #e9d526;
    padding-top: 40px;
    margin-top: 30px;
    font-size: 3vw;
    text-align: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
  }

  .sponzori img {
    max-width: 100%;
    height: 200px;
    width: auto;
    position: relative;
    overflow: hidden;
    display: flexbox;    
    padding: 30px;
  }

  .logo-top {
    text-align: center;
  }
  
  .logo-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }  

  .logo-row img,
  .logo-top img {
    object-fit: contain;
}

.logo-top img{
  height: 100px;
  margin-top: 10px;
  margin-bottom: 50px;
}

  .custom-shape-divider-bottom-1749386975 {
    position: absolute;
    margin-top: -70px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1749386975 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-shape-divider-bottom-1749386975 .shape-fill {
    fill: #1D1B1B;
}

/* INFORMACE */  

.parentinformace {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 1px;
  margin-left: 90px;
  margin-right: 90px;
  }
  
  .div4 { grid-area: 1 / 1 / 2 / 2; }
  .div5 { grid-area: 1 / 2 / 2 / 3; }
  .div6 { grid-area: 1 / 3 / 2 / 4; }
  .div7 { grid-area: 2 / 1 / 3 / 2; }
  .div8 { grid-area: 2 / 2 / 3 / 3; }
  .div9 { grid-area: 2 / 3 / 3 / 4; }
  .div10 { grid-area: 3 / 1 / 4 / 2; }
  .div11 { grid-area: 3 / 2 / 4 / 3; }

  .div4, .div5, .div6, .div7, .div8, .div9, .div10, .div11{
    position: relative;
    font-size: 24px;
    margin-top: 100px;
    padding: 30px 50px 0 50px;
    height: 350px;
    width: auto;
    justify-content: center;
    z-index: -1;
    opacity: 0;
    border-radius: 15px;
    color: #3f3b3c;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.3);
    white-space: normal; /* Umožní běžné zalomení textu */
    text-align: center;
    animation: fadeInDiv 1s ease-out forwards;
  }

  .itext h2{
    color: #001D7C;   
  }
  .itext{
    color: #1d1b1b;
  }
/* KONTAKTY */
.parentkontakty {
  max-width: 100vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 1px;
  grid-row-gap: 0px;
  height: 0;
  }
  
  .nadpiskontakty { grid-area: 1 / 1 / 2 / 3; }
  .telefonkontakty { grid-area: 2 / 1 / 3 / 2; }
  .emailkontakty { grid-area: 2 / 2 / 3 / 3; }
  .socialkontakty { grid-area: 3 / 1 / 4 / 3;}
  .imageskontakty { grid-area: 4 / 1 / 5 / 3; }

  .nadpiskontakty h1{
    margin-top: 60px;
    font-size: 100px;
    text-align: center;
    color: #1d1b1b;
    animation: fadeIn 1s ease-out forwards;
  }

  .telefonkontakty, .emailkontakty, .fcbkontakty, .instakontakty{
    opacity: 0;
    font-size: 32px;
    color: white;
    background-color: #001D7C;
    padding: 20px 40px 20px 40px;
    text-align: center;
    margin-top: 20px;
    margin-left: 180px;
    margin-right: 180px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInDiv 1s ease-out forwards;
    animation-delay: 400ms;
  }

  .telefonkontakty, .fcbkontakty{
    margin-left: 400px;
    float: right;
  }
  .emailkontakty, .instakontakty{
    margin-right: 400px;
    float: left;
  }

  .telefonkontakty:hover, .emailkontakty:hover, .fcbkontakty:hover, .instakontakty:hover{
    color: #1D1B1B;
    background-color: #DFC701;
    transition: background-color 0.4s ease;
  }

  .fcbkontakty a, .instakontakty a{
    color: white;
    text-decoration: none;
  }

  .socialkontakty h1{
    opacity: 0;
    margin-top: 60px;
    font-size: 100px;
    text-align: center;
    color: #1d1b1b;
    animation: fadeInDiv 1s ease-out forwards;
    animation-delay: 600ms;
  }

  .imageskontakty{
    opacity: 0;
    margin-top: 40px;
    text-align: center;
    justify-content: center;
    font-size: 32px;
    animation: fadeInDiv 1s ease-out forwards;
    animation-delay: 800ms;
  }

/* VYSLEDKY */

.parentvysledky {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: -40px;
  grid-row-gap: 0px;
  margin-top: 200px;
  }
  
.r2023 { grid-area: 1 / 1 / 2 / 2; }
.r2024 { grid-area: 1 / 2 / 2 / 3; }
.r2025 { grid-area: 1 / 3 / 2 / 4; }

.r2023, .r2024, .r2025{  
  opacity: 0;
  font-size: 32px;
  color: white;
  background-color: #001D7C;
  padding: 40px 40px 40px 40px;
  text-align: center;
  margin-top: 20px;
  margin-left: 180px;
  margin-right: 180px;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
  animation: fadeInDiv 1s ease-out forwards;
}

.r2023:hover, .r2024:hover {
  color: #1D1B1B;
  background-color: #DFC701;
  transition: background-color 0.4s ease;
}

.r2025:hover {
  color: #1D1B1B;
  background-color: red;
  transition: background-color 0.4s ease;
}

.parentvysledky a{
  text-decoration: none;
  color: white;
}

/* REGISTRACE*/
.parentregistrace {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #3f3b3c25;
  padding: 50px 0px 50px 0px;
}
  
.divnamesur { 
  grid-area: 1 / 1 / 2 / 3; 
  text-align: center;  
  display: flex;
  flex-direction: column; 
  align-items: center; 
}
.divemail { 
  position: relative;
  grid-area: 2 / 1 / 3 / 2;
  display: flex;
  flex-direction: column; 
  align-items: center; 
  width: 30vw;
  left: 40%;   
}

.divtelefon { 
  grid-area: 2 / 2 / 3 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;  
  width: 30vw;
 }

.divsend { 
  grid-area: 3 / 1 / 4 / 3;
  text-align: center;
  flex-direction: column;
}

.divsend a{
  font-size: 24px;
}

.divnamesur, .divtelefon, .divemail{
  font-size: 32px;
  color: #1D1B1B;
}

input{
  width: 20vw;
  height: 30px;
  font-size: 18px;
  margin: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border: 1px solid #1D1B1B;
  background-color: white;
}

.parentregistrace button{
  margin-top: 30px;
  font-size: 32px;
  padding: 15px;
  width: 150px;
  border-radius: 5px;
  background-color: #001D7C;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
  font-family: "Bebas Neue", sans-serif;
  color: white;
  border: none;

}

.parentregistrace button:hover{
  color: #1D1B1B;
  background-color: #DFC701;
  transition: background-color 0.2s ease;
}

.registracetext{
  position: relative;
  display: flex;
  font-size: 24px;
  margin-top: 20px;
}

.registracetext a{
  text-align: center;
  width: 100vw;
}

/* FOOTER */

.footer {
  position: fixed; 
  bottom: 0; 
  width: 100%; 
  text-align: center; 
  padding: 5px 0; 
  font-size: 15px;
  color: white;
  opacity: 50%;
  font-family: Arial, Helvetica, sans-serif;
} 