/* style/fishing-games.css */
.page-fishing-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f8f8;
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #2F4F4F;
  color: #ffffff;
  padding-bottom: 60px;
  overflow: hidden;
}

.page-fishing-games__hero-content {
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

.page-fishing-games__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background-color: #FFD700;
  color: #2F4F4F;
  border: 2px solid #FFD700;
}

.page-fishing-games__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #FFD700;
  color: #2F4F4F;
}

.page-fishing-games__hero-media {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-fishing-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  color: #2F4F4F;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-fishing-games__section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
}

.page-fishing-games__section-description {
  text-align: center;
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__intro-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-fishing-games__intro-text {
  flex: 1;
}

.page-fishing-games__intro-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444444;
}

.page-fishing-games__intro-image-wrapper {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__intro-image {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-fishing-games__advantage-card {
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.page-fishing-games__advantage-card:hover {
  transform: translateY(-10px);
}

.page-fishing-games__advantage-icon {
  width: 100%;
  height: auto;
  max-width: 200px; /* Ensure images are not too small but still content images */
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-fishing-games__card-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games__advantage-card p {
  color: #666666;
}

.page-fishing-games__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__game-card {
  background-color: #fcfcfc;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
}

.page-fishing-games__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-fishing-games__game-card .page-fishing-games__card-title {
  color: #2F4F4F;
  margin-top: 10px;
  margin-bottom: 10px;
  flex-grow: 1;
}

.page-fishing-games__game-card p {
  color: #666666;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-fishing-games__game-card .page-fishing-games__btn-primary {
  margin-top: auto;
  width: calc(100% - 40px);
  margin-left: 20px;
  margin-right: 20px;
}

.page-fishing-games__strategy-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-fishing-games__strategy-image-wrapper {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__strategy-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games__strategy-text {
  flex: 1;
}

.page-fishing-games__strategy-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444444;
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-fishing-games__strategy-list li {
  background-color: #f0f0f0;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  color: #444444;
  font-size: 1.05em;
}

.page-fishing-games__strategy-list li strong {
  color: #2F4F4F;
}

.page-fishing-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__promo-card {
  background-color: #fcfcfc;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #eee;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 220px; /* Consistent height for promo images */
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-fishing-games__promo-card .page-fishing-games__card-title {
  color: #2F4F4F;
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-fishing-games__promo-card p {
  color: #666666;
  padding: 0 20px;
}

.page-fishing-games__promo-cta {
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fishing-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-fishing-games__step-card {
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  border: 1px solid #eee;
}

.page-fishing-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #2F4F4F;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__guide-card .page-fishing-games__card-title {
  color: #2F4F4F;
}

.page-fishing-games__guide-card p {
  color: #666666;
}

.page-fishing-games__guide-cta {
  text-align: center;
  margin-top: 50px;
}

.page-fishing-games__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__faq-item {
  background-color: #fcfcfc;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #ffffff;
  font-weight: bold;
  color: #2F4F4F;
  font-size: 1.15em;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: #f0f0f0;
}

.page-fishing-games__faq-question h3 {
  margin: 0;
  font-size: 1em; /* Adjust to fit parent font size */
  color: inherit;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  color: #555555;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-fishing-games__faq-answer p {
  margin: 0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 200px; /* Adjust based on expected content height */
  padding-top: 10px;
}

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

.page-fishing-games__cta-section {
  text-align: center;
  background-color: #2F4F4F;
  color: #ffffff;
  padding: 80px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-section .page-fishing-games__section-title {
  color: #FFD700;
}

.page-fishing-games__cta-section .page-fishing-games__section-title::after {
  background-color: #FFD700;
}

.page-fishing-games__cta-section .page-fishing-games__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
  .page-fishing-games__hero-title {
    font-size: 2.8em;
  }

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

  .page-fishing-games__intro-grid,
  .page-fishing-games__strategy-content {
    flex-direction: column;
  }

  .page-fishing-games__intro-image-wrapper,
  .page-fishing-games__strategy-image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }

  .page-fishing-games__advantages-grid,
  .page-fishing-games__games-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__guide-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-title {
    font-size: 2.2em;
  }

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-fishing-games__content-area {
    padding: 40px 15px;
  }

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

  .page-fishing-games__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-fishing-games__advantage-card,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__step-card {
    padding: 25px;
  }

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

  .page-fishing-games__game-image,
  .page-fishing-games__promo-image {
    height: 200px;
  }

  .page-fishing-games__strategy-list li {
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1.05em;
  }

  .page-fishing-games__cta-section {
    padding: 60px 15px;
  }
}

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

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

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

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

  .page-fishing-games__advantages-grid,
  .page-fishing-games__games-grid,
  .page-fishing-games__promo-grid,
  .page-fishing-games__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__advantage-icon {
    min-width: unset;
    min-height: unset;
    max-width: 150px;
  }

  .page-fishing-games__faq-question h3 {
    font-size: 0.95em;
  }

  .page-fishing-games__faq-toggle {
    font-size: 1.2em;
  }
}