/* style/cockfighting-stars-bloodlines-black-phoenix.css */
.page-cockfighting-stars-bloodlines-black-phoenix {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-cockfighting-stars-bloodlines-black-phoenix__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-cockfighting-stars-bloodlines-black-phoenix__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-cockfighting-stars-bloodlines-black-phoenix__text-dark {
  color: #333333;
}

.page-cockfighting-stars-bloodlines-black-phoenix__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: calc(80px + var(--header-offset, 120px)); /* Add header offset to hero section if it's the first visible content */
  position: relative;
  overflow: hidden;
}

.page-cockfighting-stars-bloodlines-black-phoenix__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-cockfighting-stars-bloodlines-black-phoenix__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-cockfighting-stars-bloodlines-black-phoenix__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-cockfighting-stars-bloodlines-black-phoenix__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-cockfighting-stars-bloodlines-black-phoenix__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-cockfighting-stars-bloodlines-black-phoenix__btn-primary,
.page-cockfighting-stars-bloodlines-black-phoenix__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting-stars-bloodlines-black-phoenix__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
  margin-right: 15px;
}

.page-cockfighting-stars-bloodlines-black-phoenix__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
}

.page-cockfighting-stars-bloodlines-black-phoenix__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-cockfighting-stars-bloodlines-black-phoenix__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.page-cockfighting-stars-bloodlines-black-phoenix__section {
  padding: 60px 20px;
}

.page-cockfighting-stars-bloodlines-black-phoenix__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-cockfighting-stars-bloodlines-black-phoenix__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #ffffff; /* Default for dark sections */
}

.page-cockfighting-stars-bloodlines-black-phoenix__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Default for dark sections */
}

.page-cockfighting-stars-bloodlines-black-phoenix__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #ffffff; /* Default for dark sections */
}

.page-cockfighting-stars-bloodlines-black-phoenix__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-cockfighting-stars-bloodlines-black-phoenix__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-cockfighting-stars-bloodlines-black-phoenix__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
}

.page-cockfighting-stars-bloodlines-black-phoenix__margin-top {
  margin-top: 40px;
}

.page-cockfighting-stars-bloodlines-black-phoenix__feature-grid,
.page-cockfighting-stars-bloodlines-black-phoenix__training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-cockfighting-stars-bloodlines-black-phoenix__card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-cockfighting-stars-bloodlines-black-phoenix__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #017439;
}

.page-cockfighting-stars-bloodlines-black-phoenix__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting-stars-bloodlines-black-phoenix__card-text {
  font-size: 1em;
  color: #555555;
}

.page-cockfighting-stars-bloodlines-black-phoenix__faq-list {
  margin-top: 40px;
}

.page-cockfighting-stars-bloodlines-black-phoenix__faq-item {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.page-cockfighting-stars-bloodlines-black-phoenix__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f9f9f9;
  color: #333333;
  user-select: none;
}

.page-cockfighting-stars-bloodlines-black-phoenix__faq-question::-webkit-details-marker {
  display: none;
}

.page-cockfighting-stars-bloodlines-black-phoenix__faq-item summary {
  list-style: none;
}

.page-cockfighting-stars-bloodlines-black-phoenix__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #017439;
}

.page-cockfighting-stars-bloodlines-black-phoenix__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.1em;
  color: #555555;
}

.page-cockfighting-stars-bloodlines-black-phoenix__cta-section {
  padding: 80px 20px;
  text-align: center;
}

.page-cockfighting-stars-bloodlines-black-phoenix__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-cockfighting-stars-bloodlines-black-phoenix__hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting-stars-bloodlines-black-phoenix__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-stars-bloodlines-black-phoenix__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for mobile */
    padding-bottom: 60px;
  }
  .page-cockfighting-stars-bloodlines-black-phoenix__hero-title {
    font-size: 2.2em;
  }
  .page-cockfighting-stars-bloodlines-black-phoenix__hero-description {
    font-size: 1em;
  }
  .page-cockfighting-stars-bloodlines-black-phoenix__btn-primary,
  .page-cockfighting-stars-bloodlines-black-phoenix__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 15px;
  }
  .page-cockfighting-stars-bloodlines-black-phoenix__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting-stars-bloodlines-black-phoenix__section {
    padding: 40px 15px;
  }
  .page-cockfighting-stars-bloodlines-black-phoenix__content-area {
    padding: 0 15px;
  }
  .page-cockfighting-stars-bloodlines-black-phoenix__section-title {
    font-size: 1.8em;
  }
  .page-cockfighting-stars-bloodlines-black-phoenix__sub-title {
    font-size: 1.5em;
  }
  .page-cockfighting-stars-bloodlines-black-phoenix p,
  .page-cockfighting-stars-bloodlines-black-phoenix li,
  .page-cockfighting-stars-bloodlines-black-phoenix__card-text {
    font-size: 15px;
  }

  /* Mobile image responsiveness */
  .page-cockfighting-stars-bloodlines-black-phoenix img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting-stars-bloodlines-black-phoenix__hero-image-wrapper,
  .page-cockfighting-stars-bloodlines-black-phoenix__section,
  .page-cockfighting-stars-bloodlines-black-phoenix__card,
  .page-cockfighting-stars-bloodlines-black-phoenix__content-area,
  .page-cockfighting-stars-bloodlines-black-phoenix__feature-grid,
  .page-cockfighting-stars-bloodlines-black-phoenix__training-grid,
  .page-cockfighting-stars-bloodlines-black-phoenix__cta-section,
  .page-cockfighting-stars-bloodlines-black-phoenix__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  .page-cockfighting-stars-bloodlines-black-phoenix__card-image {
    height: 200px; /* Adjust card image height for mobile */
  }
  .page-cockfighting-stars-bloodlines-black-phoenix__image-full-width {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Ensure content area images are not too small */
.page-cockfighting-stars-bloodlines-black-phoenix img:not(.page-cockfighting-stars-bloodlines-black-phoenix__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* FAQ toggle styling */
.page-cockfighting-stars-bloodlines-black-phoenix__faq-item[open] .page-cockfighting-stars-bloodlines-black-phoenix__faq-toggle {
  content: '−';
}