/* style/fishing-games-strategy.css */
.page-fishing-games-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css (#000000) */
}

.page-fishing-games-strategy__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #26A9E0; /* Brand color for hero */
  color: #ffffff;
  overflow: hidden;
}

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

.page-fishing-games-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-fishing-games-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-fishing-games-strategy__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #ffffff;
}

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

.page-fishing-games-strategy__btn-primary,
.page-fishing-games-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-fishing-games-strategy__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

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

.page-fishing-games-strategy__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-fishing-games-strategy__section {
  padding: 80px 20px;
}

.page-fishing-games-strategy__content-area {
  max-width: 1000px;
  margin: 0 auto;
}

.page-fishing-games-strategy__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-fishing-games-strategy__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-fishing-games-strategy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

/* Color Contrast Handling */
.page-fishing-games-strategy__dark-bg {
  background-color: #26A9E0; /* Brand color */
  color: #ffffff; /* Light text for dark background */
}

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

.page-fishing-games-strategy__light-bg .page-fishing-games-strategy__section-title,
.page-fishing-games-strategy__light-bg .page-fishing-games-strategy__sub-title {
  color: #26A9E0; /* Brand color for titles on light background */
}

.page-fishing-games-strategy__text-center {
  text-align: center;
}

/* FAQ Section */
.page-fishing-games-strategy__faq-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-fishing-games-strategy__faq-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-fishing-games-strategy__faq-item:last-child {
  border-bottom: none;
}

.page-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: rgba(0, 0, 0, 0.2); /* Slightly transparent background */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-fishing-games-strategy__faq-question:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy__faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #ffffff;
}

.page-fishing-games-strategy__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
}

.page-fishing-games-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  background-color: rgba(0, 0, 0, 0.1); /* Lighter transparent background */
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 30px;
}

.page-fishing-games-strategy__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-fishing-games-strategy__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

  .page-fishing-games-strategy__hero-description {
    font-size: 1em;
  }

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

  .page-fishing-games-strategy__btn-primary,
  .page-fishing-games-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.9em;
  }

  .page-fishing-games-strategy__section {
    padding: 40px 15px;
  }

  .page-fishing-games-strategy__content-area {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games-strategy__section-title {
    font-size: 1.8em;
  }

  .page-fishing-games-strategy__sub-title {
    font-size: 1.4em;
  }

  .page-fishing-games-strategy__paragraph,
  .page-fishing-games-strategy__list-item,
  .page-fishing-games-strategy__faq-question h3,
  .page-fishing-games-strategy__faq-answer p {
    font-size: 1em;
  }

  .page-fishing-games-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-games-strategy__faq-question,
  .page-fishing-games-strategy__faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-fishing-games-strategy__faq-item.active .page-fishing-games-strategy__faq-answer {
    padding: 15px 20px;
  }

  /* Ensure all containers are within bounds */
  .page-fishing-games-strategy__section,
  .page-fishing-games-strategy__card,
  .page-fishing-games-strategy__container,
  .page-fishing-games-strategy__cta-section,
  .page-fishing-games-strategy__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-strategy__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-fishing-games-strategy__button-group {
    display: flex;
    flex-direction: column; 
  }
}

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

  .page-fishing-games-strategy__hero-description {
    font-size: 0.9em;
  }

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

  .page-fishing-games-strategy__sub-title {
    font-size: 1.2em;
  }
}