/* style/resources-fishing-game-strategies.css */
:root {
  --primary-color: #007BFF;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f9fa;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
  --dark-bg-1: #0d0d0d; /* Assuming this is a dark background from shared.css */
}

.page-resources-fishing-game-strategies {
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--dark-bg-1);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

.page-resources-fishing-game-strategies__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust based on actual fixed nav height */
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%); /* Deep blue gradient */
  color: var(--text-light);
  overflow: hidden;
}

.page-resources-fishing-game-strategies__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-resources-fishing-game-strategies__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 900px; /* Limit hero image width */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-game-strategies__hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-fishing-game-strategies__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-fishing-game-strategies__main-heading {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-resources-fishing-game-strategies__hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-resources-fishing-game-strategies__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-resources-fishing-game-strategies__cta-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-game-strategies__section {
  padding: 60px 20px;
  background-color: var(--dark-bg-1);
  color: var(--text-light);
}

.page-resources-fishing-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-fishing-game-strategies__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-game-strategies__sub-heading {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.page-resources-fishing-game-strategies__paragraph {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-resources-fishing-game-strategies__paragraph strong {
  color: var(--secondary-color);
}

.page-resources-fishing-game-strategies__content-block {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.page-resources-fishing-game-strategies__content-block--reverse {
  flex-direction: row-reverse;
}

.page-resources-fishing-game-strategies__image-wrapper {
  flex: 0 0 50%;
  max-width: 50%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-fishing-game-strategies__image-full {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-fishing-game-strategies__image-half {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-fishing-game-strategies__text-content {
  flex: 1;
}

.page-resources-fishing-game-strategies__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-fishing-game-strategies__list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-fishing-game-strategies__list-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin-right: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-fishing-game-strategies__icon-small {
  max-width: 40px;
  height: auto;
  display: block;
}

.page-resources-fishing-game-strategies__list-content {
  flex: 1;
}

.page-resources-fishing-game-strategies__list-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-fishing-game-strategies__list--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-fishing-game-strategies__list--columns .page-resources-fishing-game-strategies__list-item {
  display: block;
  padding: 25px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-fishing-game-strategies__list--columns .page-resources-fishing-game-strategies__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-game-strategies__list--columns .page-resources-fishing-game-strategies__list-title {
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-resources-fishing-game-strategies__list--columns .page-resources-fishing-game-strategies__paragraph {
  font-size: 16px;
  color: var(--text-light);
}

.page-resources-fishing-game-strategies__faq-section {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  padding: 60px 20px;
}

.page-resources-fishing-game-strategies__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-fishing-game-strategies__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-fishing-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  border: 1px solid #0056b3;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-fishing-game-strategies__faq-question:hover {
  background: #0056b3;
  border-color: #004085;
}

.page-resources-fishing-game-strategies__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-light);
}

.page-resources-fishing-game-strategies__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.page-resources-fishing-game-strategies__faq-item.active .page-resources-fishing-game-strategies__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg); /* Change '+' to 'x' */
}

.page-resources-fishing-game-strategies__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #2a2a2a; /* Darker background for answer */
  color: var(--text-light);
  border-radius: 0 0 8px 8px;
}

.page-resources-fishing-game-strategies__faq-item.active .page-resources-fishing-game-strategies__faq-answer {
  max-height: 2000px !important; /* Sufficiently large value */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-resources-fishing-game-strategies__faq-answer p {
  margin: 0;
  font-size: 16px;
  color: var(--text-light);
}

.page-resources-fishing-game-strategies__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-resources-fishing-game-strategies__cta-button--centered {
  margin-left: auto;
  margin-right: auto;
}

.page-resources-fishing-game-strategies__cta-button--large {
  padding: 18px 50px;
  font-size: 22px;
}

.page-resources-fishing-game-strategies__final-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0056b3, var(--primary-color));
  color: var(--text-light);
  text-align: center;
}

.page-resources-fishing-game-strategies__final-cta-content {
  max-width: 900px;
}

.page-resources-fishing-game-strategies__final-cta-content .page-resources-fishing-game-strategies__section-title {
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.page-resources-fishing-game-strategies__final-cta-content .page-resources-fishing-game-strategies__paragraph {
  font-size: 18px;
  margin-bottom: 35px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-fishing-game-strategies__main-heading {
    font-size: 36px;
  }
  .page-resources-fishing-game-strategies__hero-description {
    font-size: 16px;
  }
  .page-resources-fishing-game-strategies__section-title {
    font-size: 32px;
  }
  .page-resources-fishing-game-strategies__sub-heading {
    font-size: 24px;
  }
  .page-resources-fishing-game-strategies__paragraph {
    font-size: 16px;
  }
  .page-resources-fishing-game-strategies__list-title {
    font-size: 20px;
  }
  .page-resources-fishing-game-strategies__faq-question h3 {
    font-size: 17px;
  }
  .page-resources-fishing-game-strategies__faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-resources-fishing-game-strategies {
    padding-top: 100px !important; /* Mobile: Adjust for fixed nav height */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-fishing-game-strategies__hero-section {
    padding-top: 140px !important; /* Mobile: Adjust for fixed nav height */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-fishing-game-strategies__main-heading {
    font-size: 30px;
  }
  .page-resources-fishing-game-strategies__hero-description {
    font-size: 15px;
  }
  .page-resources-fishing-game-strategies__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
  .page-resources-fishing-game-strategies__section {
    padding: 40px 15px;
  }
  .page-resources-fishing-game-strategies__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-resources-fishing-game-strategies__sub-heading {
    font-size: 22px;
  }
  .page-resources-fishing-game-strategies__content-block {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .page-resources-fishing-game-strategies__content-block--reverse {
    flex-direction: column;
  }
  .page-resources-fishing-game-strategies__image-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .page-resources-fishing-game-strategies__list-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  .page-resources-fishing-game-strategies__list-icon {
    margin: 0 auto 15px auto;
  }
  .page-resources-fishing-game-strategies__list-title {
    font-size: 18px;
  }
  .page-resources-fishing-game-strategies__list--columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-fishing-game-strategies__faq-section {
    padding: 40px 15px;
  }
  .page-resources-fishing-game-strategies__faq-question {
    padding: 15px 20px;
    flex-wrap: wrap;
  }
  .page-resources-fishing-game-strategies__faq-question h3 {
    font-size: 16px;
    width: calc(100% - 40px);
  }
  .page-resources-fishing-game-strategies__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
  .page-resources-fishing-game-strategies__faq-answer {
    padding: 0 20px;
  }
  .page-resources-fishing-game-strategies__faq-item.active .page-resources-fishing-game-strategies__faq-answer {
    padding: 15px 20px !important;
  }
  .page-resources-fishing-game-strategies__cta-button--large {
    padding: 15px 40px;
    font-size: 20px;
  }
  /* Ensure all images are responsive and do not overflow */
  .page-resources-fishing-game-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-fishing-game-strategies__section,
  .page-resources-fishing-game-strategies__card,
  .page-resources-fishing-game-strategies__container,
  .page-resources-fishing-game-strategies__content-block,
  .page-resources-fishing-game-strategies__image-wrapper,
  .page-resources-fishing-game-strategies__list-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-fishing-game-strategies__overview-section .page-resources-fishing-game-strategies__container,
  .page-resources-fishing-game-strategies__weapons-section .page-resources-fishing-game-strategies__container,
  .page-resources-fishing-game-strategies__basic-strategies-section .page-resources-fishing-game-strategies__container,
  .page-resources-fishing-game-strategies__advanced-strategies-section .page-resources-fishing-game-strategies__container,
  .page-resources-fishing-game-strategies__tips-section .page-resources-fishing-game-strategies__container,
  .page-resources-fishing-game-strategies__platforms-section .page-resources-fishing-game-strategies__container,
  .page-resources-fishing-game-strategies__faq-section .page-resources-fishing-game-strategies__container,
  .page-resources-fishing-game-strategies__final-cta-section .page-resources-fishing-game-strategies__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-resources-fishing-game-strategies__faq-list {
    padding: 0 15px;
  }
}