
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: #fff !important;
  }
     /* Formát stránky */
  .container {
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
  }


  /* Transparentní header */
  header {
    background-color: transparent; 
    padding: 20px 0;
  }
  
  .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .main-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  .main-nav li {
    margin-left: 20px;
  }
  
  .main-nav li:first-child {
    margin-left: 0;
  }
  
  .main-nav li a {
    text-decoration: none;
    color:  #fff;
    padding: 10px 20px;
    transition: color 0.3s, border-bottom-color 0.3s, padding-bottom 0.3s ease;
  }
  
  .main-nav li a:hover {
    color: #FF8D24;
    border-bottom: 2px solid #FF8D24;
    padding-bottom: 14px;
  }
  
  .mobile-menu {
    display: none;
  }


  .branding {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 20px; 
}

.logo img {
    max-width: 100px;
}


.nav-links {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
}

   /* Mobilní velikost */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav li {
        margin: 10px 0;
    }
    
    .mobile-menu {
        display: block;
        cursor: pointer;
    }
    
    .hamburger {
        width: 30px;
        height: 2px;
        background-color: #fff;
        margin: 6px 0;
    }
    
    .logo {
        display: none; 
    }
}
/* Video na pozadí webu */
.wallp {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10%;
  }
  
  .wallp video {
    animation: fade 1s;
    max-width: 100%; 
    height: auto;
    filter: blur(4px);
  }
  
  @keyframes fade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
    /* Nadpis nad videem*/
  h1 {
    padding-top: 20%;
    z-index: 6 !important;
  }
      /* Nadpis nad "Kdo */
  h2{
    text-align: center;
  }
    /* Nadpis nad "Koho hledáme*/
  h4{
    text-align: center;
    margin-top: 7%;
    font-size: 50px;
  }
  .nazev{
    position: absolute;
    top: 42.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 1));
    animation: fade 1.8s;
    font-family: "Roboto", sans-serif;
    text-align: center;
  }
  
  .axezon{
    font-size: 625%;
    font-stretch: expanded;
  }
  @media (max-width: 768px) {
   .axezon{
    font-size: 400%;
   }
    }
  /* Sekce Koho hledáme? */
  .custom{
    width: 100%;
    text-align: center;
  } 
  .hero {
    display: inline-block;
    position: relative;
    width: 400px;
    min-width: 400px;
    height: 400px;
    border-radius: 30px;
    overflow:hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
    margin: 30px;
  }
  
  .hero-profile-img {
    height: 70%;
  }
  
  .hero-description-bk {
    background-color: #FF8D24;
    border-radius: 30px;
    position: absolute;
    top: 55%;
    left: -5px;
    height: 65%;
    width: 108%;
    transform: skew(19deg, -9deg);
  }
  
  .second .hero-description-bk {
    background-color: #FF8D24;
  }
  
  .hero-logo {
    height: 80px;
    width: 80px;
    border-radius: 20px;
    background-color: #fff;
    position: absolute;
    bottom: 30%;
    left: 30px;
    overflow:hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.7);
  }
  
  .hero-logo img {
    height: 100%;
  }
  
  .hero-description {
    position: absolute;
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    left: 150px;
    bottom: 26%;
  }


 /* Border kolem textu */
.text {
    border: 2px solid #FF8C24; 
    background-color: black; 
    width: 50%; 
    margin: auto; 
    padding: 20px;
    box-shadow: 0.5rem 7px #FF8C24;
    padding-bottom: 10px;
    margin-bottom: 7%;
    margin-top: 7%;
  }
  
  .image {
    flex: 1;
    text-align: center;
    margin-left: 20px; 
  }


  .podtrzitko{
    border: 2.5px solid #FF8C24;
    opacity: 100%;
  }
     /* Mobilní velikost*/
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
  
    .text, .image {
      flex: none;
      width: 80%;
      margin: 0; 
      margin-top: 10%;
    }
  }

  /* Slider vedle horního textu*/
  .slider {
    width: 550px;
    height: 400px;
    overflow: hidden;
    border-radius: 5px;
    margin-left: 10%;
    margin-top: 5%;
  }
  
  .slides {
    display: flex;
    flex-direction: row;
    width: 400%;
    height: 400px;
    animation: slide 20s ease-in infinite;
  }
  
  .slide img {
    width: 100%;
    height: auto;
  }
  
  @keyframes slide {
    0% { margin-left: 0;}
    21% {margin-left: 0;}
    25% {margin-left: -100%;}
    46% {margin-left: -100%;}
    50% {margin-left: -200%;}
    71% {margin-left: -200%;}
    75% {margin-left: -300%;}
    95% {margin-left: -300%;}
    100% {margin-left: 0;}
  }

  /* Co nabízímě */
  .cards{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
  }
  .cards h2.header{
    font-size: 40px;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .services{
    display: flex;
    align-items: center;
  }
  .content{
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    margin: 20px;
    padding: 20px;
    border-radius: 4px;
    transition: all .3s ease;
  }
  .content .fab{
    font-size: 70px;
    margin: 16px 0;
  }
  .content > *{
    flex: 1 1 100%;
  }
  .content:hover{
    color: white;
  }
  .content:hover a{
    border-color: white;
    background: white;
  }
  .content-1:hover{
    border-color: #FF8D24;
    background: #FF8D24;
  }
  
  .content h2{
    font-size: 30px;
    margin: 16px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .content p{
    font-size: 17px;
    font-family: 'Poppins',sans-serif;
  }
     /* Mobilní velikost */
  @media (max-width: 900px) {
    .services{
      display: flex;
      flex-direction: column;
    }
  }
   /* Formulář */ 
   .wrapper {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
  }
  
  h2 {
    text-align: center;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-bottom: 5px;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  textarea {
    height: 150px;
  }
  
  input[type="submit"] {
    background-color: #FF8D24;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  input[type="submit"]:hover {
    background-color: #c5650b;
  }
  
  @media screen and (max-width: 600px) {
    .wrapper {
      width: 90%;
      margin: 20px auto;
    }
  }

  /* Footer */
.footer{
    background:#000;
    padding:30px 0px;
    margin-top: 10%;
    text-align: center;
    }
    
    .footer .row{
    width:100%;
    margin:1% 0%;
    padding:0.6% 0%;
    color:gray;
    font-size:0.8em;
    display: block;
    }
    
    .footer .row a{
    text-decoration:none;
    color:gray;
    transition:0.5s;
    }
    
    .footer .row a:hover{
    color:#fff;
    }
    
    .footer .row ul li{
    display:inline-block;
    margin:0px 30px;
    }
    
    .footer .row a i{
    font-size:2em;
    margin:0% 1%;
    }
    
    /* Mobilní velikost  */
    
    @media (max-width:720px){
    .footer{
    padding:5%;
    }
    .footer .row ul li{
    display:block;
    margin:10px 0px;
    }
    .footer .row a i{
    margin:0% 3%;
    }
    }

    .fa-brands{
        margin-left: 1.8%;
        margin-right: 1.8%;
        margin-top: 1.8%;
      }
      
      .ikony{
        font-size: 250%;
        color: #FF8C24;
        text-decoration: none;
      }
      
      .footer a{
        color: #FF8C24;
      }
      
      .footer a:hover{
        color: #fff;
      }
      
      .spoluprace{
        color: #FF8C24;
      }
      
      .spoluprace:hover{
        color: #fff;
      }
      