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

/* --- General Styles for page-fishing-games-strategy --- */
.page-fishing-games-strategy {
  color: #F2FFF6; /* Text Main for dark body background */
  background-color: transparent; /* Body handles the main background color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-fishing-games-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games-strategy__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider color */
}

.page-fishing-games-strategy__section:last-of-type {
  border-bottom: none;
}

.page-fishing-games-strategy__section-title {
  font-size: 2.8em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games-strategy__subsection-title {
  font-size: 1.8em;
  color: #22C768; /* Auxiliary color for subtitles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games-strategy p {
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games-strategy ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games-strategy ul li {
  margin-bottom: 8px;
  color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games-strategy strong {
  color: #F2FFF6; /* Text Main for emphasis */
}

/* --- Hero Section --- */
.page-fishing-games-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A4B2C; /* Deep Green for hero section background */
}

.page-fishing-games-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-fishing-games-strategy__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games-strategy__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.page-fishing-games-strategy__intro-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* --- CTA Button Styles --- */
.page-fishing-games-strategy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main for button text */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%; /* Ensure button fits container */
  box-sizing: border-box;
}

.page-fishing-games-strategy__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Invert gradient on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main for button text */
  border: 2px solid transparent;
}

.page-fishing-games-strategy__cta-button--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Invert gradient on hover */
}

.page-fishing-games-strategy__cta-button--secondary {
  background: #11A84E; /* Primary color for secondary button */
  border: 2px solid #2AD16F;
  color: #F2FFF6;
}

.page-fishing-games-strategy__cta-button--secondary:hover {
  background: #22C768; /* Auxiliary color on hover */
}

.page-fishing-games-strategy__cta-button--tertiary {
  background: transparent;
  border: 2px solid #A7D9B8; /* Text Secondary for border */
  color: #A7D9B8; /* Text Secondary */
}

.page-fishing-games-strategy__cta-button--tertiary:hover {
  background: rgba(167, 217, 184, 0.1);
}

.page-fishing-games-strategy__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* --- Content Images --- */
.page-fishing-games-strategy__image-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 15px;
  margin: 30px 0;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-fishing-games-strategy__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto 15px auto;
  object-fit: cover;
}

.page-fishing-games-strategy__image-caption {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
}

/* --- FAQ Section --- */
.page-fishing-games-strategy__faq-list {
  margin-top: 30px;
}

.page-fishing-games-strategy__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green for question background */
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-fishing-games-strategy__faq-question:hover {
  background-color: #11A84E; /* Primary color on hover */
}

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

.page-fishing-games-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F; /* Button gradient start color */
}

.page-fishing-games-strategy__faq-item[open] .page-fishing-games-strategy__faq-toggle {
  content: '−';
}

.page-fishing-games-strategy__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #2E7A4E;
}

.page-fishing-games-strategy__faq-answer p {
  margin-bottom: 0;
}

/* Ensure details summary marker is hidden */
.page-fishing-games-strategy__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-fishing-games-strategy__faq-item summary {
  list-style: none;
}


/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-fishing-games-strategy__section-title {
    font-size: 2.2em;
  }
  .page-fishing-games-strategy__subsection-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-strategy {
    font-size: 15px;
  }

  .page-fishing-games-strategy__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
  }

  .page-fishing-games-strategy__main-title {
    font-size: clamp(2em, 8vw, 2.8em);
  }

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

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

  .page-fishing-games-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .page-fishing-games-strategy__subsection-title {
    font-size: 1.4em;
    padding: 0 15px;
  }

  .page-fishing-games-strategy__container {
    padding: 0 15px; /* Add padding to content containers */
  }

  /* Images responsive styles */
  .page-fishing-games-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containing elements for images/videos/buttons */
  .page-fishing-games-strategy__hero-image-wrapper,
  .page-fishing-games-strategy__image-card,
  .page-fishing-games-strategy__video-section,
  .page-fishing-games-strategy__video-container,
  .page-fishing-games-strategy__video-wrapper,
  .page-fishing-games-strategy__cta-group,
  .page-fishing-games-strategy__faq-list,
  .page-fishing-games-strategy__faq-item,
  .page-fishing-games-strategy__introduction,
  .page-fishing-games-strategy__weaponry,
  .page-fishing-games-strategy__beginner-strategies,
  .page-fishing-games-strategy__advanced-strategies,
  .page-fishing-games-strategy__tips-tricks,
  .page-fishing-games-strategy__mistakes-to-avoid,
  .page-fishing-games-strategy__faq-section,
  .page-fishing-games-strategy__conclusion {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  
  /* Specific padding for sections */
  .page-fishing-games-strategy__section {
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Buttons responsive styles */
  .page-fishing-games-strategy__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-fishing-games-strategy__cta-group {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

@media (max-width: 480px) {
  .page-fishing-games-strategy__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games-strategy__subsection-title {
    font-size: 1.2em;
  }
}