/* Styly pro stránku o kapele */
.band-info {
  max-width: 800px;
  margin: 0 auto 0;
}

.booking {
  margin-top: 0;
  padding-top: 0;
}

.band-description {
  line-height: 1.6;
}

.band-description p {
  margin-bottom: 0;
}

/* Členové kapely */
.band-members {
  max-width: 800px;
  margin: 0 auto 32px;
}



.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.member {
  display: flex;
  flex-direction: column;
  padding-bottom: 32px;
}

.member-photo {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 4px;
}

.member-photo img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.member:hover .member-photo img {
  transform: scale(1.05);
}

.member-info {
  flex: 1;
}

.member-info h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.member-role {
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 8px;
  text-align: center;
}

.member-bio {
  line-height: 1.5;
}

.download-item h3 {
  text-align: left;
}


/* Responsivní úpravy */
@media (max-width: 768px) {
  .members-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {

  .member-photo {
    width: 60%; /* Šířka fotografie 75% rodičovského prvku */
    margin-left: auto; /* Vycentrování */
    margin-right: auto; /* Vycentrování */
    margin-bottom: 16px; /* Menší mezera pod fotografií */
  }

  /* Zvětšení mezery mezi popisem kapely a nadpisem Členové kapely */
  .band-members h2 {
    margin-top: 32px; /* Posunout nadpis níže */
  }
  
  /* Úprava mřížky členů kapely */
  .members-grid {
    margin-top: 64px; /* Menší mezera mezi nadpisem a mřížkou */
  }
}

@media (max-width: 576px) {
  /* Zmenšení velikosti fotografií na mobilních zařízeních */
  .member-photo {
    width: 60%; /* Šířka fotografie 75% rodičovského prvku */
    margin-left: auto; /* Vycentrování */
    margin-right: auto; /* Vycentrování */
    margin-bottom: 16px; /* Menší mezera pod fotografií */
  }
  
  /* Vycentrování informací o členu kapely */
  .member-info h3 {
    text-align: center; /* Vycentrování jména */
    margin-top: 16px;
  }
  
  .member-bio {
    text-align: center; /* Vycentrování biografie */
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
  
  /* Další úpravy pro lepší vizuální vzhled */
  .member {
    padding-bottom: 24px; /* Menší padding ve spodní části */
    margin-bottom: 16px; /* Menší mezera mezi členy */
  }
  
  /* Posun nadpisu Členové kapely */
  .band-members h2 {
    margin-top: 32px; /* Posunout nadpis níže */
  }

  .member-role {
    margin-top: 0;
  }
}