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

.page-fishing-games-strategy-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Inherited from body via shared.css */
}

.page-fishing-games-strategy-guide__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  color: #ffffff;
  box-sizing: border-box;
}

.page-fishing-games-strategy-guide__hero-content {
  max-width: 900px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  padding: 40px;
  border-radius: 10px;
}

.page-fishing-games-strategy-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107; /* Gold accent for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games-strategy-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-fishing-games-strategy-guide__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-fishing-games-strategy-guide__btn-primary,
.page-fishing-games-strategy-guide__btn-secondary {
  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;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-strategy-guide__btn-primary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-fishing-games-strategy-guide__btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-fishing-games-strategy-guide__btn-secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-fishing-games-strategy-guide__btn-secondary:hover {
  background-color: #ffc107;
  color: #1a1a2e;
}

.page-fishing-games-strategy-guide__section {
  padding: 80px 20px;
  box-sizing: border-box;
}

.page-fishing-games-strategy-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-fishing-games-strategy-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #ffc107;
  text-transform: uppercase;
}

.page-fishing-games-strategy-guide__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #007bff;
}

.page-fishing-games-strategy-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light text for dark background */
}

.page-fishing-games-strategy-guide__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-fishing-games-strategy-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-fishing-games-strategy-guide__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-fishing-games-strategy-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
  /* HTML width/height attributes for CLS optimization */
}

/* Color contrast adjustments for sections */
.page-fishing-games-strategy-guide__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-fishing-games-strategy-guide__dark-bg .page-fishing-games-strategy-guide__sub-title {
  color: #007bff;
}

.page-fishing-games-strategy-guide__dark-bg .page-fishing-games-strategy-guide__text-block {
  color: #f0f0f0;
}

.page-fishing-games-strategy-guide__dark-bg .page-fishing-games-strategy-guide__list {
  color: #f0f0f0;
}

.page-fishing-games-strategy-guide__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

.page-fishing-games-strategy-guide__light-bg .page-fishing-games-strategy-guide__section-title,
.page-fishing-games-strategy-guide__light-bg .page-fishing-games-strategy-guide__sub-title {
  color: #007bff;
}

.page-fishing-games-strategy-guide__light-bg .page-fishing-games-strategy-guide__text-block,
.page-fishing-games-strategy-guide__light-bg .page-fishing-games-strategy-guide__list {
  color: #333333;
}

/* FAQ Section */
.page-fishing-games-strategy-guide__faq-list {
  margin-top: 40px;
}

.page-fishing-games-strategy-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly lighter for dark background */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-fishing-games-strategy-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #007bff; /* Brand color for question */
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-fishing-games-strategy-guide__faq-question:hover {
  background-color: #0056b3;
}

.page-fishing-games-strategy-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-fishing-games-strategy-guide__faq-item.active .page-fishing-games-strategy-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games-strategy-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05); /* Very slight tint for answer background */
  color: #f0f0f0;
}

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

.page-fishing-games-strategy-guide__faq-answer p {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-fishing-games-strategy-guide__cta-section {
  text-align: center;
}

.page-fishing-games-strategy-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-strategy-guide__hero-title {
    font-size: 2.8em;
  }

  .page-fishing-games-strategy-guide__section-title {
    font-size: 2em;
  }

  .page-fishing-games-strategy-guide__sub-title {
    font-size: 1.5em;
  }
}

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

  .page-fishing-games-strategy-guide__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is not hidden by fixed header on mobile */
  }

  .page-fishing-games-strategy-guide__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-fishing-games-strategy-guide__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-fishing-games-strategy-guide__btn-primary,
  .page-fishing-games-strategy-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  
  .page-fishing-games-strategy-guide__section {
    padding: 50px 15px;
  }

  .page-fishing-games-strategy-guide__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-fishing-games-strategy-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-fishing-games-strategy-guide__sub-title {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-fishing-games-strategy-guide__text-block,
  .page-fishing-games-strategy-guide__list-item,
  .page-fishing-games-strategy-guide__faq-question,
  .page-fishing-games-strategy-guide__faq-answer p {
    font-size: 1em;
  }

  .page-fishing-games-strategy-guide__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games-strategy-guide__image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games-strategy-guide__faq-question {
    padding: 15px 20px;
  }

  .page-fishing-games-strategy-guide__faq-answer {
    padding: 0 20px;
  }

  .page-fishing-games-strategy-guide__faq-item.active .page-fishing-games-strategy-guide__faq-answer {
    padding: 10px 20px;
  }

  .page-fishing-games-strategy-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-strategy-guide__hero-title {
    font-size: 1.8em;
  }

  .page-fishing-games-strategy-guide__hero-content {
    padding: 25px;
  }

  .page-fishing-games-strategy-guide__section-title {
    font-size: 1.5em;
  }
}