/* style/cockfighting-breeds-pedigree-intro.css */
.page-cockfighting-breeds-pedigree-intro {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-cockfighting-breeds-pedigree-intro__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting-breeds-pedigree-intro__section {
  padding: 60px 0;
}

.page-cockfighting-breeds-pedigree-intro__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-cockfighting-breeds-pedigree-intro__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary brand color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-cockfighting-breeds-pedigree-intro__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Secondary brand color */
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-cockfighting-breeds-pedigree-intro__sub-title {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-cockfighting-breeds-pedigree-intro__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #495057; /* Ensure high contrast */
}

.page-cockfighting-breeds-pedigree-intro__link-inline {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting-breeds-pedigree-intro__link-inline:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-cockfighting-breeds-pedigree-intro__keyword {
  color: #ffc107; /* Highlight keywords with secondary color */
  font-weight: bold;
}

/* Hero Section */
.page-cockfighting-breeds-pedigree-intro__hero {
  position: relative;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 500px; /* Minimum height for hero */
}

.page-cockfighting-breeds-pedigree-intro__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-cockfighting-breeds-pedigree-intro__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-cockfighting-breeds-pedigree-intro__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.page-cockfighting-breeds-pedigree-intro__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-cockfighting-breeds-pedigree-intro__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-cockfighting-breeds-pedigree-intro__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-cockfighting-breeds-pedigree-intro__btn--primary {
  background-color: #ffc107; /* Secondary color */
  color: #212529;
  border-color: #ffc107;
}

.page-cockfighting-breeds-pedigree-intro__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-cockfighting-breeds-pedigree-intro__btn--secondary {
  background-color: transparent;
  color: #ffc107;
  border-color: #ffc107;
}

.page-cockfighting-breeds-pedigree-intro__btn--secondary:hover {
  background-color: #ffc107;
  color: #212529;
  transform: translateY(-2px);
}

/* Breed Grid Section */
.page-cockfighting-breeds-pedigree-intro__breed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-breeds-pedigree-intro__breed-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-breeds-pedigree-intro__breed-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting-breeds-pedigree-intro__breed-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-cockfighting-breeds-pedigree-intro__breed-name {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-cockfighting-breeds-pedigree-intro__breed-description {
  font-size: 1em;
  color: #6c757d;
  padding: 0 20px;
  text-align: justify;
}

/* Image Full Width */
.page-cockfighting-breeds-pedigree-intro__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* List Styles */
.page-cockfighting-breeds-pedigree-intro__list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-cockfighting-breeds-pedigree-intro__list li {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  color: #495057;
}

.page-cockfighting-breeds-pedigree-intro__list li strong {
  color: #007bff;
  margin-right: 8px;
}

.page-cockfighting-breeds-pedigree-intro__list li::before {
  content: '✔';
  color: #ffc107;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
}

/* Call to Action */
.page-cockfighting-breeds-pedigree-intro__call-to-action {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #f1f1f1;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-cockfighting-breeds-pedigree-intro__text-small {
  font-size: 0.9em;
  color: #6c757d;
  margin-top: 15px;
}

/* FAQ Section */
.page-cockfighting-breeds-pedigree-intro__faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-cockfighting-breeds-pedigree-intro__faq-question {
  font-size: 1.3em;
  color: #007bff;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  background-color: #fefefe;
  border-bottom: 1px solid #eee;
  position: relative;
}

.page-cockfighting-breeds-pedigree-intro__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-cockfighting-breeds-pedigree-intro__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-cockfighting-breeds-pedigree-intro__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #495057;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-cockfighting-breeds-pedigree-intro__faq-answer.open {
  max-height: 500px; /* Adjust as needed */
  padding: 20px;
}

/* Contact CTA Section */
.page-cockfighting-breeds-pedigree-intro__section--contact-cta {
  text-align: center;
  background-color: #007bff;
  color: #fff;
  padding: 80px 0;
}

.page-cockfighting-breeds-pedigree-intro__section--contact-cta .page-cockfighting-breeds-pedigree-intro__section-title {
  color: #fff;
}

.page-cockfighting-breeds-pedigree-intro__section--contact-cta .page-cockfighting-breeds-pedigree-intro__section-title::after {
  background-color: #ffc107;
}

.page-cockfighting-breeds-pedigree-intro__section--contact-cta .page-cockfighting-breeds-pedigree-intro__text-block {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-cockfighting-breeds-pedigree-intro__section--contact-cta .page-cockfighting-breeds-pedigree-intro__btn--primary {
  background-color: #ffc107;
  color: #212529;
  border-color: #ffc107;
}

.page-cockfighting-breeds-pedigree-intro__section--contact-cta .page-cockfighting-breeds-pedigree-intro__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting-breeds-pedigree-intro__hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting-breeds-pedigree-intro__hero-description {
    font-size: 1.1em;
  }
  .page-cockfighting-breeds-pedigree-intro__section-title {
    font-size: 2em;
  }
  .page-cockfighting-breeds-pedigree-intro__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-breeds-pedigree-intro__hero {
    padding: 80px 0;
  }
  .page-cockfighting-breeds-pedigree-intro__hero-title {
    font-size: 2.2em;
  }
  .page-cockfighting-breeds-pedigree-intro__hero-description {
    font-size: 1em;
  }
  .page-cockfighting-breeds-pedigree-intro__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting-breeds-pedigree-intro__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-cockfighting-breeds-pedigree-intro__section {
    padding: 40px 0;
  }
  .page-cockfighting-breeds-pedigree-intro__section-title {
    font-size: 1.8em;
  }
  .page-cockfighting-breeds-pedigree-intro__text-block {
    font-size: 0.95em;
  }
}

@media (max-width: 576px) {
  .page-cockfighting-breeds-pedigree-intro__hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting-breeds-pedigree-intro__hero-description {
    font-size: 0.9em;
  }
  .page-cockfighting-breeds-pedigree-intro__btn {
    width: 90%;
  }
  .page-cockfighting-breeds-pedigree-intro__breed-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting-breeds-pedigree-intro__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-cockfighting-breeds-pedigree-intro__faq-question::after {
    right: 15px;
  }
  .page-cockfighting-breeds-pedigree-intro__faq-answer {
    padding: 0 15px 15px;
  }
}