/* style/cockfighting-faq.css */

/* Base styles for the page content */
.page-cockfighting-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background, ensures contrast */
  background-color: #0A2342; /* Main dark background color */
  padding-bottom: 50px; /* Space for footer */
}

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

/* Hero Section */
.page-cockfighting-faq__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-cockfighting-faq__hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
  padding: 20px;
}

.page-cockfighting-faq__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-cockfighting-faq__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

.page-cockfighting-faq__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
  pointer-events: none;
}

.page-cockfighting-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

/* General Section Styles */
.page-cockfighting-faq__section {
  padding: 60px 0;
  background-color: #0A2342;
  color: #E0E0E0;
}

.page-cockfighting-faq__section:nth-of-type(even) {
  background-color: #1A3F6C; /* Slightly lighter dark blue for contrast */
}

.page-cockfighting-faq__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-cockfighting-faq__subsection-title {
  font-size: 1.8em;
  color: #FFFACD; /* Light gold for sub-titles, ensures WCAG AA contrast on dark blue */
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-cockfighting-faq__paragraph {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-cockfighting-faq__list,
.page-cockfighting-faq__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-cockfighting-faq__ordered-list {
  list-style-type: decimal;
}

.page-cockfighting-faq__list-item {
  margin-bottom: 8px;
  font-size: 1.05em;
}

/* Text highlight and links */
.page-cockfighting-faq .text-highlight {
  color: #FFFACD; /* Light gold for emphasis, ensures WCAG AA contrast on dark blue */
}

.page-cockfighting-faq .link-primary {
  color: #FFFACD; /* Light gold for links on dark background, ensures WCAG AA contrast */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting-faq .link-primary:hover {
  color: #FFFFFF; /* White on hover for better visibility */
  text-decoration: underline;
}

.page-cockfighting-faq .link-highlight {
  color: #FFFFFF; /* White for highly prominent links on dark background, ensures WCAG AA contrast */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-cockfighting-faq .link-highlight:hover {
  color: #FFFACD; /* Light gold on hover */
  text-decoration: underline;
}

/* Buttons */
.page-cockfighting-faq__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-cockfighting-faq__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #0A2342; /* Dark blue text, ensures WCAG AA contrast */
}

.page-cockfighting-faq__btn--primary:hover {
  background-color: #E0B500; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-cockfighting-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-cockfighting-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342; /* Dark blue text, ensures WCAG AA contrast */
  transform: translateY(-2px);
}

.page-cockfighting-faq__cta-buttons {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between buttons */
  flex-wrap: wrap;
}

/* Content with Image Layout */
.page-cockfighting-faq__content-with-image {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-cockfighting-faq__content-with-image--reverse {
  flex-direction: row-reverse;
}

.page-cockfighting-faq__text-content {
  flex: 1;
  min-width: 300px;
}

.page-cockfighting-faq__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-cockfighting-faq__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Call to Action Section */
.page-cockfighting-faq__call-to-action {
  background-color: #1A3F6C; /* Slightly lighter dark blue */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-cockfighting-faq__call-to-action .page-cockfighting-faq__section-title {
  color: #FFFFFF;
}

.page-cockfighting-faq__call-to-action .page-cockfighting-faq__paragraph {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #F0F0F0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting-faq__hero-title {
    font-size: 2.8em;
  }

  .page-cockfighting-faq__hero-description {
    font-size: 1.1em;
  }

  .page-cockfighting-faq__section-title {
    font-size: 2em;
  }

  .page-cockfighting-faq__subsection-title {
    font-size: 1.5em;
  }

  .page-cockfighting-faq__content-with-image,
  .page-cockfighting-faq__content-with-image--reverse {
    flex-direction: column;
    gap: 30px;
  }

  .page-cockfighting-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting-faq__btn--secondary {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-faq__hero {
    padding: 60px 0;
  }

  .page-cockfighting-faq__hero-title {
    font-size: 2.2em;
  }

  .page-cockfighting-faq__hero-description {
    font-size: 1em;
  }

  .page-cockfighting-faq__section {
    padding: 40px 0;
  }

  .page-cockfighting-faq__section-title {
    font-size: 1.8em;
  }

  .page-cockfighting-faq__subsection-title {
    font-size: 1.3em;
  }

  .page-cockfighting-faq__paragraph,
  .page-cockfighting-faq__list-item {
    font-size: 0.95em;
  }

  .page-cockfighting-faq__btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-faq__hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting-faq__hero-description {
    font-size: 0.9em;
  }
  .page-cockfighting-faq__section-title {
    font-size: 1.5em;
  }
  .page-cockfighting-faq__subsection-title {
    font-size: 1.2em;
  }
  .page-cockfighting-faq__container {
    padding: 0 15px;
  }
}