/* style/resources-cockfighting-strategies-tips.css */
.page-resources-cockfighting-strategies-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#121212), so use light text */
  background-color: transparent; /* Main content background is handled by sections */
}

.page-resources-cockfighting-strategies-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-cockfighting-strategies-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 600px;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  background-color: #26A9E0; /* Brand color for hero background */
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.page-resources-cockfighting-strategies-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.2; /* Slightly transparent to let background color show */
}

.page-resources-cockfighting-strategies-tips__hero-section .page-resources-cockfighting-strategies-tips__container {
  position: relative;
  z-index: 2;
}

.page-resources-cockfighting-strategies-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-resources-cockfighting-strategies-tips__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.5;
}

.page-resources-cockfighting-strategies-tips__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-cockfighting-strategies-tips__btn-primary,
.page-resources-cockfighting-strategies-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%; /* Ensures responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-cockfighting-strategies-tips__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-cockfighting-strategies-tips__btn-primary:hover {
  background-color: #1a8ccb;
  border-color: #1a8ccb;
}

.page-resources-cockfighting-strategies-tips__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-cockfighting-strategies-tips__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-resources-cockfighting-strategies-tips__content-area {
  padding: 60px 0;
  background-color: #ffffff; /* Light background for content area */
  color: #333333; /* Dark text for light background */
}

.page-resources-cockfighting-strategies-tips__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-resources-cockfighting-strategies-tips__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-cockfighting-strategies-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-cockfighting-strategies-tips__paragraph a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-resources-cockfighting-strategies-tips__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-cockfighting-strategies-tips__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-cockfighting-strategies-tips__highlight {
  font-weight: bold;
  color: #26A9E0;
}

.page-resources-cockfighting-strategies-tips__image-container {
  margin: 30px auto;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-resources-cockfighting-strategies-tips__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-resources-cockfighting-strategies-tips__faq-list {
  margin-top: 40px;
}

.page-resources-cockfighting-strategies-tips__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-cockfighting-strategies-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #eaf7fc; /* Light blue background for question */
  color: #26A9E0;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-resources-cockfighting-strategies-tips__faq-question:hover {
  background-color: #d8edf7;
}

.page-resources-cockfighting-strategies-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-cockfighting-strategies-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
  color: #333333;
}

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

.page-resources-cockfighting-strategies-tips__faq-item.active .page-resources-cockfighting-strategies-tips__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-cockfighting-strategies-tips__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-cockfighting-strategies-tips__hero-title {
    font-size: 3em;
  }
  .page-resources-cockfighting-strategies-tips__hero-description {
    font-size: 1.2em;
  }
  .page-resources-cockfighting-strategies-tips__section-title {
    font-size: 2em;
  }
  .page-resources-cockfighting-strategies-tips__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-cockfighting-strategies-tips__hero-section {
    min-height: 450px;
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure spacing on mobile */
  }
  .page-resources-cockfighting-strategies-tips__hero-title {
    font-size: 2.2em;
  }
  .page-resources-cockfighting-strategies-tips__hero-description {
    font-size: 1em;
  }
  .page-resources-cockfighting-strategies-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-cockfighting-strategies-tips__btn-primary,
  .page-resources-cockfighting-strategies-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-cockfighting-strategies-tips__content-area {
    padding: 40px 15px;
  }
  .page-resources-cockfighting-strategies-tips__section-title {
    font-size: 1.8em;
  }
  .page-resources-cockfighting-strategies-tips__sub-title {
    font-size: 1.4em;
  }
  .page-resources-cockfighting-strategies-tips__paragraph,
  .page-resources-cockfighting-strategies-tips__list-item {
    font-size: 0.95em;
  }
  .page-resources-cockfighting-strategies-tips__content-image {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-cockfighting-strategies-tips__image-container,
  .page-resources-cockfighting-strategies-tips__faq-item,
  .page-resources-cockfighting-strategies-tips__faq-question,
  .page-resources-cockfighting-strategies-tips__faq-answer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left and padding-right handled by .page-resources-cockfighting-strategies-tips__container on content-area */
  }
  .page-resources-cockfighting-strategies-tips__faq-answer {
      padding-left: 15px !important;
      padding-right: 15px !important;
  }
  .page-resources-cockfighting-strategies-tips__faq-question {
      padding-left: 15px !important;
      padding-right: 15px !important;
  }
  .page-resources-cockfighting-strategies-tips__faq-list {
      padding: 0 15px;
  }

  /* Ensure no overflow on mobile */
  .page-resources-cockfighting-strategies-tips {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-resources-cockfighting-strategies-tips__hero-title {
    font-size: 1.8em;
  }
  .page-resources-cockfighting-strategies-tips__section-title {
    font-size: 1.5em;
  }
  .page-resources-cockfighting-strategies-tips__sub-title {
    font-size: 1.2em;
  }
}