body {
    font-family: 'Poppins', sans-serif;
    background-color: black;
  }

  header {
    background: linear-gradient(to bottom, #c4a4ff, #a371ff);
    font-family: 'Poppins', sans-serif;
    color: rgb(27, 0, 70);
    font-size: 1.3rem;
    background-size: 100% 200%; /* Pozadí je větší pro posun */
    background-position: top; /* Výchozí pozice */
    animation: backgroundMove 5s infinite alternate; /* Plynulá animace */
  }
  
  @keyframes backgroundMove {
    0% {
      background-position: top; /* Pozice nahoře */
    }
    100% {
      background-position: bottom; /* Pozice dole */
    }
  }
  
  .navbar-brand img {
    max-width: 100%; /* Aby se logo přizpůsobilo velikosti */
    height: auto; /* Aby se zachoval poměr stran */
  }

/* Zajistí, že tlačítko nebude mít rámeček a pozadí */
.navbar-toggler {
    background: transparent;
    border: none;
    padding: 0;
  }
  
  /* Tlačítko s obrázkem */
  .navbar-toggler img {
    width: 30px; /* Můžeš upravit velikost podle potřeby */
    height: 30px;
  }



  .footer {
    background-color: #1b0046; /* Tmavě fialová barva */
    padding: 40px 20px; /* Vnitřní odsazení - horní/spodní 40px, ostatní 20px */
  }
  
  .footer h5 {
    color: #ffffff; /* Bílý text nadpisů */
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .footer ul {
    padding: 0;
    list-style: none;
  }
  
  .footer-link {
    color: #ffffff; /* Bílé odkazy */
    text-decoration: none; /* Bez podtržení */
    transition: color 0.3s ease; /* Přechod barvy při hover */
  }
  
  .footer-link:hover {
    color: #d4bfff; /* Světle fialová barva při hover */
  }
  
  .footer img {
    max-width: 60%; /* Obrázek loga zabere maximálně 100% šířky sloupce */
    height: auto; /* Zachování proporcí */
  }


  .gradient-section {
    height: 80px; /* Výška sekce */
    background: linear-gradient(to bottom, #f0ccff, #e096ff); /* Plynulý přechod shora dolů */
  }
  



  .contacts-section {
    background-color: #f0ccff; /* Jemné pastelové pozadí */
    color: #4a306d; /* Tmavší fialový text */
    font-family: 'Poppins', sans-serif;
  }
  
  .contacts-section h2 {
    font-weight: bold;
    color: #1b0046;
  }
  
  .contact-row {
    padding: 10px 0;
    border-bottom: 1px solid #d3a6f3; /* Jemná oddělující čára */
  }
  
  .contact-row h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .contact-row p {
    margin: 0;
  }
  
  .contact-row a {
    text-decoration: none;
    color: #6f42c1; /* Odkazy ve fialovém odstínu */
  }
  
  .contact-row a:hover {
    text-decoration: underline;
  }
  