/* PROJEKT STRÁNKA OBECNÁ */
/* Obal sekce */
.pr-page {
  background-color: transparent;
  color: #000; /* všechen text černě */
  font-family: Arial, sans-serif;
  padding: 20px 10%;
}

/* Titulek */
.pr-title {
  color: #000;
  margin: 0 0 10px 0;
}

/* Hlavní fotka */
.pr-header-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
}

/* Statistiky */
.pr-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
  color: #000; /* text černě */
}

.pr-stat-left,
.pr-stat-right {
  font-size: 36px;
  font-weight: bold;
}

/* Obsahová sekce o kapele */
.pr-introduction {
  margin: 40px 0;
}

.pr-intro-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.pr-intro-left,
.pr-intro-right {
  width: 50%;
}

.pr-photo {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Logo a text */
.pr-logo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px auto;
  display: block;
}

.pr-text {
  font-size: 20px;
  line-height: 1.8;
  color: #000; /* text černě */
  text-align: center;
}

/* Galerie (pokud budeš přidávat) */
.pr-gallery {
  margin: 40px 0;
}

.pr-gallery h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: #000; /* text černě */
}

.pr-gallery .pr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.pr-gallery .pr-gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pr-gallery .pr-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;
}
.pr-gallery .pr-gallery-item img:hover {
  transform: scale(1.05);
}

.pr-gallery .pr-member-name {
  margin-top: 8px;
  font-size: 20px;
  color: #000; /* text černě */
}

/* Mobilní verze */
@media (max-width: 768px) {
  .pr-page {
    padding: 0 5%;
  }

  h2 {
    font-size: 26px !important;
  }

  .pr-stats {
    flex-direction: column;
    text-align: center;
  }

  .pr-stat-left,
  .pr-stat-right {
    font-size: 24px;
  }

  .pr-intro-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pr-intro-left,
  .pr-intro-right {
    width: 100%;
  }

  .pr-logo {
    width: 80%;
    max-width: 250px;
    margin-bottom: 20px;
  }

  .pr-photo {
    width: 100%;
    margin-bottom: 20px;
  }

  .pr-gallery .pr-gallery-grid {
    grid-template-columns: 1fr;
  }
}