/* style/cockfighting-encyclopedia.css */

/* Base styles for the page content */
.page-cockfighting-encyclopedia {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Default body background is white */
}

/* Section styling */
.page-cockfighting-encyclopedia__section {
  padding: 60px 20px;
  text-align: center;
}

.page-cockfighting-encyclopedia__dark-bg {
  background-color: #26A9E0; /* Brand primary color */
  color: #FFFFFF;
}

.page-cockfighting-encyclopedia__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

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

.page-cockfighting-encyclopedia__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from section background */
}

.page-cockfighting-encyclopedia__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: inherit;
}

/* Hero Section */
.page-cockfighting-encyclopedia__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
}

.page-cockfighting-encyclopedia__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-cockfighting-encyclopedia__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability, not changing color */
}

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

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

.page-cockfighting-encyclopedia__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

/* CTA Buttons */
.page-cockfighting-encyclopedia__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 10px;
  box-sizing: border-box;
}

.page-cockfighting-encyclopedia__cta-button--primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-cockfighting-encyclopedia__cta-button--primary:hover {
  background-color: #d46a00;
  border-color: #d46a00;
}

.page-cockfighting-encyclopedia__cta-button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-cockfighting-encyclopedia__cta-button--secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

.page-cockfighting-encyclopedia__cta-button--video-cta {
  margin-top: 30px;
  background-color: #EA7C07;
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-cockfighting-encyclopedia__cta-button--video-cta:hover {
  background-color: #d46a00;
  border-color: #d46a00;
}

/* General images */
.page-cockfighting-encyclopedia__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Video Section */
.page-cockfighting-encyclopedia__video-section {
  padding: 60px 20px;
  background-color: #F5F5F5; /* Light background for video */
  color: #333333;
  text-align: center;
}

.page-cockfighting-encyclopedia__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background-color: #000; /* Black background for video placeholder */
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-encyclopedia__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer; /* Indicate clickable video */
}

/* FAQ Section */
.page-cockfighting-encyclopedia__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-cockfighting-encyclopedia__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-cockfighting-encyclopedia__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1em;
  color: #333333;
  background-color: #F8F8F8;
  transition: background-color 0.3s ease;
}

.page-cockfighting-encyclopedia__faq-question:hover {
  background-color: #EFEFEF;
}

.page-cockfighting-encyclopedia__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-cockfighting-encyclopedia__faq-item.active .page-cockfighting-encyclopedia__faq-toggle {
  transform: rotate(45deg); /* Plus to X (minus) */
}

.page-cockfighting-encyclopedia__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
  background-color: #FFFFFF;
}

.page-cockfighting-encyclopedia__faq-item.active .page-cockfighting-encyclopedia__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px;
}

.page-cockfighting-encyclopedia__faq-answer p {
  margin-bottom: 10px;
  font-size: 0.95em;
  line-height: 1.5;
}

/* CTA Section at bottom */
.page-cockfighting-encyclopedia__cta-section {
  padding: 80px 20px;
  background-color: #26A9E0;
  color: #FFFFFF;
  text-align: center;
}

.page-cockfighting-encyclopedia__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-cockfighting-encyclopedia__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-cockfighting-encyclopedia__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-cockfighting-encyclopedia__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Copyright Section */
.page-cockfighting-encyclopedia__copyright-section {
  padding: 20px;
  background-color: #1a1a1a;
  color: #AAAAAA;
  text-align: center;
  font-size: 0.9em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting-encyclopedia__hero-title {
    font-size: 3em;
  }
  .page-cockfighting-encyclopedia__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  /* General mobile adjustments */
  .page-cockfighting-encyclopedia {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Hero Section */
  .page-cockfighting-encyclopedia__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is below header on mobile */
  }

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

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

  /* All images must be responsive on mobile */
  .page-cockfighting-encyclopedia img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All image containers must be responsive on mobile */
  .page-cockfighting-encyclopedia__image-wrapper,
  .page-cockfighting-encyclopedia__hero-image-wrapper,
  .page-cockfighting-encyclopedia__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video Section */
  .page-cockfighting-encyclopedia__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Adjust for mobile header */
    padding-left: 15px;
    padding-right: 15px;
  }

  /* All video elements must be responsive on mobile */
  .page-cockfighting-encyclopedia video,
  .page-cockfighting-encyclopedia__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All video containers must be responsive on mobile */
  .page-cockfighting-encyclopedia__video-section,
  .page-cockfighting-encyclopedia__video-container,
  .page-cockfighting-encyclopedia__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* All buttons must be responsive on mobile */
  .page-cockfighting-encyclopedia__cta-button,
  .page-cockfighting-encyclopedia__btn-primary,
  .page-cockfighting-encyclopedia__btn-secondary,
  .page-cockfighting-encyclopedia a[class*="button"],
  .page-cockfighting-encyclopedia a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 10px 0 !important; /* Stack buttons vertically */
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Button groups on mobile */
  .page-cockfighting-encyclopedia__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Section padding */
  .page-cockfighting-encyclopedia__section {
    padding: 40px 15px;
  }

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

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

  /* FAQ */
  .page-cockfighting-encyclopedia__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-cockfighting-encyclopedia__faq-answer {
    padding: 0 20px;
  }

  .page-cockfighting-encyclopedia__faq-item.active .page-cockfighting-encyclopedia__faq-answer {
    padding: 10px 20px 20px;
  }

  /* CTA at bottom */
  .page-cockfighting-encyclopedia__cta-title {
    font-size: 2em;
  }

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