/* Obal sekce s kapelou */
.band-page {
  background-color: transparent;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 20px 10%;
}

/* Hlavní fotka */
.band-header-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
}

/* Statistiky */
.stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
  color: #fff;
}

.stat-left,
.stat-right {
  font-size: 36px;
  font-weight: bold;
}

/* Obsahová sekce o kapele */
.band-introduction {
  margin: 40px 0;
}

.band-intro-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.band-intro-left,
.band-intro-right {
  width: 50%;
}

.band-photo {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Logo a text */
.band-logo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px auto;
  display: block;
}

.band-text {
  font-size: 20px;
  line-height: 1.8;
  color: #fff;
  text-align: center;
}

/* Galerie členů */
.band-gallery {
  margin: 40px 0;
}

.band-gallery h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
}

.band-gallery .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.band-gallery .gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.band-gallery .gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
   transition: transform 0.5s ease;
}
.band-gallery .gallery img:hover {
  transform: scale(1.05);
}

.band-gallery .member-name {
  margin-top: 8px;
  font-size: 20px;
  color: #fff;
}

/* Mobilní verze */
@media (max-width: 768px) {
  .band-page {
    padding: 0 5%;
  }

  h2 {
    font-size: 26px !important;
  }

  .stats {
    flex-direction: column;
    text-align: center;
  }

  .stat-left,
  .stat-right {
    font-size: 24px;
  }

  .band-intro-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .band-intro-left,
  .band-intro-right {
    width: 100%;
  }

  .band-logo {
    width: 80%;
    max-width: 250px;
    margin-bottom: 20px;
  }

  .band-photo {
    width: 100%;
    margin-bottom: 20px;
  }

  .band-gallery .gallery {
    grid-template-columns: 1fr;
  }
}
