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

  header {
    background: linear-gradient(to bottom, #c4a4ff, #a371ff);
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: rgb(27, 0, 70);
    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í */
  }



  #our-team {
    background-color: #f0ccff; /* Barva pozadí sekce */
    padding: 40px 0; /* Vnitřní odsazení nahoře a dole */
  }
  
  .team-heading {
    background-color: #f0ccff; /* Barva pozadí nadpisu */
    display: inline-block; /* Aby pozadí odpovídalo šířce textu */
    padding: 10px 10px; /* Prostor kolem textu nadpisu */
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #1b0046; /* Barva textu */
    border-radius: 8px; /* Lehce zaoblené rohy */
  }
  



  .team-section {
    background-color: #f0ccff;
    padding: 50px 0;
  }
  
  .team-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #1b0046;
    padding: 10px;
    background-color: #e8b8ff;
    display: inline-block;
    border-radius: 5px;
  }
  
  .team-member {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    display: block; /* Důležité pro to, aby odkaz zabíral celou kartu */
  }
  
  .team-member img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .team-member .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .team-member:hover .overlay {
    opacity: 1;
  }
  
  .overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .team-member:hover .overlay-content h3 {
    color: #ffffff;
  }
  
  



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