 body {
      margin: 0;
      font-family: cursive, Arial, sans-serif;
      line-height: 1.6;
      font-size: 1.3em;
      color: #333;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 98%;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      z-index: 1000;
      transition: background 0.3s;
    }

    header.scrolled {
      background: #600; /* tmavě červená při scrollování */
    }

    nav a {
      color: white;
      text-decoration: none;
      margin: 0 10px;
      font-weight: bold;
    }

    nav a:hover {
      text-decoration: underline;
    }

    section {
      padding: 80px 20px;
      min-height: 100vh;
    }

    .hero {
    /*  background: url('https://6d1bb0e74c.cbaul-cdnwnd.com/c9b3063b998d6be81a462e62d55b0424/200000023-5cc595dbd7/50000000.jpg?ph=6d1bb0e74c') no-repeat center/cover;*/
    /*  background: url('logo.gif') no-repeat center/cover; */
    background: url('klacek.jpg') no-repeat center/cover;
      color: white;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .hero h1 {
      font-size: 3em;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px #000;
    }

    .btn {
      background: #a00;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      font-size: 1.1em;
      transition: background 0.3s;
    }

    .btn:hover {
      background: #800;
    }

    footer {
      background: #111;
      color: white;
      text-align: center;
      padding: 20px;
    }
    
    #repertoar {
     background-color: yellow;
}

 	.video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }
    
    .video-container {
      position: relative;
      width: 100%;
      max-width: 560px;
      margin: 20px auto;
      cursor: pointer;
    }

    .video-container img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      display: block;
    }

    .video-container .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-container .play-button::before {
      content: '';
      border-style: solid;
      border-width: 15px 0 15px 25px;
      border-color: transparent transparent transparent white;
      margin-left: 5px;
    }
    
    .logo {
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;   /* odstraní podtržení odkazu */
  color: white;            /* nastaví barvu textu */
  display: inline-block;   /* aby se chovalo podobně jako div */
  margin: 1px;
}




#clenove {
  padding: 80px 20px;
  background: #f9f9f9;
  background-color: #d1e7f7;
}

#clenove h2 {
  text-align: center;
  margin-bottom: 30px;
}

.clenove-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.clen {
  display: flex;
  align-items: center;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.clen img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 15px;
}

.clen-foto {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #ddd; /* svislá čára */
}

.clen-foto img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 25%;
}

.clen-text h3 {
  margin: 0 0 5px;
}

.clen-text p {
  margin: 0;
  font-size: 0.9em;
  color: #555;
}

/* 📱 Mobilní verze */
@media (max-width: 768px) {
  .clenove-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱📱 Malý mobil */
@media (max-width: 500px) {
  .clenove-grid {
    grid-template-columns: 1fr;
  }

  .clen {
    flex-direction: column;
    text-align: center;
  }

  .clen img {
    margin: 0 0 10px 0;
  }
}



#odkazy {
  padding: 80px 20px;
  background: #fff;
  background-color: #dce7f7;
}

#odkazy h2 {
  text-align: center;
  margin-bottom: 20px;
}

.odkazy-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.odkazy-list li {
  margin: 10px 0;
  text-align: center;
}

.odkazy-list a {
  text-decoration: none;
  color: #0066cc;
  font-size: 1.1em;
  transition: color 0.2s ease;
}

.odkazy-list a:hover {
  color: #cc0000;
}