/* style/player-testimonials.css */
.page-player-testimonials {
  color: #ffffff; /* Text color for dark body background #333 */
  background-color: transparent; /* Body background is #333 from shared.css */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-player-testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-player-testimonials__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 0; /* Adjust padding for hero content */
}

.page-player-testimonials__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Slightly darken background image for text readability */
}

.page-player-testimonials__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-player-testimonials__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold main color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-player-testimonials__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-player-testimonials__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-player-testimonials__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-player-testimonials__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-player-testimonials__intro-section,
.page-player-testimonials__stories-section,
.page-player-testimonials__features-section,
.page-player-testimonials__community-section,
.page-player-testimonials__cta-section {
  padding: 60px 0;
}

.page-player-testimonials__intro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-player-testimonials__story-grid,
.page-player-testimonials__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-player-testimonials__story-card,
.page-player-testimonials__feature-card {
  background-color: rgba(0, 0, 128, 0.7); /* Semi-transparent dark blue */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #000080;
  display: flex;
  flex-direction: column;
}

.page-player-testimonials__story-card:hover,
.page-player-testimonials__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-player-testimonials__story-image,
.page-player-testimonials__feature-icon {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #FFD700; /* Gold border */
}

.page-player-testimonials__story-content,
.page-player-testimonials__feature-content {
  padding: 25px;
  flex-grow: 1;
}

.page-player-testimonials__story-title,
.page-player-testimonials__feature-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-player-testimonials__story-quote,
.page-player-testimonials__feature-description {
  font-style: italic;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-player-testimonials__story-author,
.page-player-testimonials__feature-author {
  font-weight: bold;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.page-player-testimonials__story-detail,
.page-player-testimonials__feature-detail {
  font-size: 0.95em;
  color: #cccccc;
}

.page-player-testimonials__community-section {
  text-align: center;
  background-color: rgba(0, 0, 128, 0.5); /* Lighter dark blue for this section */
  padding: 80px 0;
  border-top: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
}

.page-player-testimonials__community-text {
  font-size: 1.15em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-player-testimonials__community-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000080;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-player-testimonials__community-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-player-testimonials__cta-section {
  text-align: center;
  padding: 80px 0;
}

.page-player-testimonials__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-player-testimonials__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-player-testimonials__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.page-player-testimonials__cta-button--primary {
  background-color: #FFD700;
  color: #000080;
  border: 2px solid #FFD700;
}

.page-player-testimonials__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-player-testimonials__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-player-testimonials__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-player-testimonials__hero-title {
    font-size: 3em;
  }
  .page-player-testimonials__section-title {
    font-size: 2em;
  }
  .page-player-testimonials__story-grid,
  .page-player-testimonials__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-player-testimonials__hero-section {
    padding: 60px 0;
  }
  .page-player-testimonials__hero-title {
    font-size: 2.5em;
  }
  .page-player-testimonials__hero-description {
    font-size: 1.1em;
  }
  .page-player-testimonials__section-title {
    font-size: 1.8em;
  }
  .page-player-testimonials__intro-section,
  .page-player-testimonials__stories-section,
  .page-player-testimonials__features-section,
  .page-player-testimonials__community-section,
  .page-player-testimonials__cta-section {
    padding: 40px 0;
  }
  .page-player-testimonials__story-image,
  .page-player-testimonials__feature-icon {
    height: 200px; /* Adjust height for smaller screens */
  }
  .page-player-testimonials__story-title,
  .page-player-testimonials__feature-title {
    font-size: 1.4em;
  }
  .page-player-testimonials__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-player-testimonials__cta-button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-player-testimonials__hero-title {
    font-size: 2em;
  }
  .page-player-testimonials__section-title {
    font-size: 1.5em;
  }
  .page-player-testimonials__hero-button,
  .page-player-testimonials__community-button,
  .page-player-testimonials__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-player-testimonials__story-grid,
  .page-player-testimonials__feature-grid {
    grid-template-columns: 1fr;
  }
}