/* style/blog-fishing-games-strategy.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-fishing-games-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text on dark body background (#0a0a0a) */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-blog-fishing-games-strategy__section {
  padding: 60px 20px;
  margin-bottom: 0;
}

/* Specific section backgrounds based on light/dark needs */
.page-blog-fishing-games-strategy__dark-bg {
  background-color: #0a0a0a; /* Ensure dark background for sections */
  color: #ffffff;
}

.page-blog-fishing-games-strategy__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text on light background */
}

.page-blog-fishing-games-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, body handles header offset */
  overflow: hidden;
  min-height: 500px;
}

.page-blog-fishing-games-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-fishing-games-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-fishing-games-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

.page-blog-fishing-games-strategy__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-fishing-games-strategy__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-fishing-games-strategy__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-fishing-games-strategy__cta-buttons--center {
  margin-top: 40px;
}

.page-blog-fishing-games-strategy__btn-primary,
.page-blog-fishing-games-strategy__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-fishing-games-strategy__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-fishing-games-strategy__btn-primary:hover {
  background-color: #1a8ccb;
  border-color: #1a8ccb;
}

.page-blog-fishing-games-strategy__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-fishing-games-strategy__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a8ccb;
  border-color: #1a8ccb;
}

.page-blog-fishing-games-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-blog-fishing-games-strategy__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: inherit; /* Inherit from section for contrast */
}

.page-blog-fishing-games-strategy__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: inherit; /* Inherit from section for contrast */
}

.page-blog-fishing-games-strategy__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
}

.page-blog-fishing-games-strategy__list,
.page-blog-fishing-games-strategy__numbered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  padding: 0;
}

.page-blog-fishing-games-strategy__numbered-list {
  list-style-type: decimal;
}

.page-blog-fishing-games-strategy__list-item {
  margin-bottom: 10px;
  color: inherit;
}

.page-blog-fishing-games-strategy__faq-list {
  margin-top: 30px;
}

.page-blog-fishing-games-strategy__faq-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent background for light-bg sections */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff; /* Light text for FAQ items */
}

.page-blog-fishing-games-strategy__light-bg .page-blog-fishing-games-strategy__faq-item {
  background-color: #f0f0f0;
  color: #333333;
}

.page-blog-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.1em;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly darker for question header */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-fishing-games-strategy__light-bg .page-blog-fishing-games-strategy__faq-question {
  background-color: #e8e8e8;
  border-bottom: 1px solid #d0d0d0;
}

.page-blog-fishing-games-strategy__faq-qtext {
  flex-grow: 1;
}

.page-blog-fishing-games-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-fishing-games-strategy__faq-item[open] .page-blog-fishing-games-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-fishing-games-strategy__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: inherit;
}

.page-blog-fishing-games-strategy__faq-answer p {
  margin-top: 10px;
}

.page-blog-fishing-games-strategy__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

/* Ensure contrast for links */
.page-blog-fishing-games-strategy a:not([class*="btn"]) {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-fishing-games-strategy a:not([class*="btn"]):hover {
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-fishing-games-strategy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-fishing-games-strategy__hero-section {
    padding: 10px 15px 40px;
    min-height: 400px;
  }

  .page-blog-fishing-games-strategy__hero-content {
    padding: 15px;
  }

  .page-blog-fishing-games-strategy__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-fishing-games-strategy__intro-text {
    font-size: 1em;
  }

  .page-blog-fishing-games-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-fishing-games-strategy__btn-primary,
  .page-blog-fishing-games-strategy__btn-secondary,
  .page-blog-fishing-games-strategy a[class*="button"],
  .page-blog-fishing-games-strategy a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-fishing-games-strategy__cta-buttons,
  .page-blog-fishing-games-strategy__button-group,
  .page-blog-fishing-games-strategy__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-fishing-games-strategy__section,
  .page-blog-fishing-games-strategy__card,
  .page-blog-fishing-games-strategy__container,
  .page-blog-fishing-games-strategy__hero-image-wrapper,
  .page-blog-fishing-games-strategy__video-section,
  .page-blog-fishing-games-strategy__video-container,
  .page-blog-fishing-games-strategy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Specific padding for sections if needed */
  .page-blog-fishing-games-strategy__hero-section,
  .page-blog-fishing-games-strategy__video-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-blog-fishing-games-strategy__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-fishing-games-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-fishing-games-strategy__faq-answer {
    padding: 0 20px 15px;
  }
}