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

/* Custom Colors */
:root {
  --page-fishing-games-strategy-bg-color: #08160F;
  --page-fishing-games-strategy-card-bg: #11271B;
  --page-fishing-games-strategy-text-main: #F2FFF6;
  --page-fishing-games-strategy-text-secondary: #A7D9B8;
  --page-fishing-games-strategy-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-fishing-games-strategy-border-color: #2E7A4E;
  --page-fishing-games-strategy-glow-color: #57E38D;
  --page-fishing-games-strategy-gold-color: #F2C14E;
  --page-fishing-games-strategy-divider-color: #1E3A2A;
  --page-fishing-games-strategy-deep-green: #0A4B2C;
}

.page-fishing-games-strategy {
  background-color: var(--page-fishing-games-strategy-bg-color);
  color: var(--page-fishing-games-strategy-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-fishing-games-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body already has padding-top from --header-offset */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-fishing-games-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 100%; /* Ensure it takes full width */
  margin-bottom: 30px;
  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;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games-strategy__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--page-fishing-games-strategy-text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-fishing-games-strategy__description {
  font-size: 1.15rem;
  color: var(--page-fishing-games-strategy-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.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: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games-strategy__btn-primary {
  background: var(--page-fishing-games-strategy-btn-gradient);
  color: var(--page-fishing-games-strategy-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games-strategy__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-fishing-games-strategy__btn-secondary {
  background: transparent;
  color: var(--page-fishing-games-strategy-text-main);
  border: 2px solid var(--page-fishing-games-strategy-border-color);
}

.page-fishing-games-strategy__btn-secondary:hover {
  background-color: var(--page-fishing-games-strategy-border-color);
  transform: translateY(-2px);
}

/* General Section Styling */
.page-fishing-games-strategy__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--page-fishing-games-strategy-divider-color);
}

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

.page-fishing-games-strategy__section-title {
  font-size: 2.2rem;
  color: var(--page-fishing-games-strategy-gold-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-fishing-games-strategy p {
  color: var(--page-fishing-games-strategy-text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
}

.page-fishing-games-strategy strong {
  color: var(--page-fishing-games-strategy-text-main);
}

.page-fishing-games-strategy__list {
  list-style-type: disc;
  padding-left: 25px;
  color: var(--page-fishing-games-strategy-text-secondary);
  margin-bottom: 20px;
}

.page-fishing-games-strategy__list li {
  margin-bottom: 10px;
  color: var(--page-fishing-games-strategy-text-secondary);
}

.page-fishing-games-strategy__list li strong {
  color: var(--page-fishing-games-strategy-text-main);
}

/* Card Grid */
.page-fishing-games-strategy__technique-grid,
.page-fishing-games-strategy__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-fishing-games-strategy__card,
.page-fishing-games-strategy__feature-item {
  background-color: var(--page-fishing-games-strategy-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-fishing-games-strategy-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--page-fishing-games-strategy-text-main);
}

.page-fishing-games-strategy__card:hover,
.page-fishing-games-strategy__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-strategy__card-image,
.page-fishing-games-strategy__feature-icon {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-fishing-games-strategy__card-title,
.page-fishing-games-strategy__feature-title {
  font-size: 1.4rem;
  color: var(--page-fishing-games-strategy-text-main);
  padding: 15px 20px 0;
  margin-bottom: 10px;
}

.page-fishing-games-strategy__card p,
.page-fishing-games-strategy__feature-item p {
  font-size: 0.95rem;
  color: var(--page-fishing-games-strategy-text-secondary);
  padding: 0 20px 20px;
}

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

.page-fishing-games-strategy__faq-item {
  background-color: var(--page-fishing-games-strategy-card-bg);
  border: 1px solid var(--page-fishing-games-strategy-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games-strategy__faq-item summary {
  list-style: none;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--page-fishing-games-strategy-text-main);
  font-weight: bold;
  font-size: 1.1rem;
  background-color: var(--page-fishing-games-strategy-deep-green);
}

.page-fishing-games-strategy__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.page-fishing-games-strategy__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--page-fishing-games-strategy-glow-color);
}

.page-fishing-games-strategy__faq-answer {
  padding: 20px;
  color: var(--page-fishing-games-strategy-text-secondary);
  background-color: rgba(17, 39, 27, 0.7); /* Slightly lighter than card-bg */
  border-top: 1px solid var(--page-fishing-games-strategy-divider-color);
}

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

.page-fishing-games-strategy__faq-answer a {
  color: var(--page-fishing-games-strategy-glow-color);
  text-decoration: underline;
}

.page-fishing-games-strategy__faq-answer a:hover {
  color: var(--page-fishing-games-strategy-gold-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-fishing-games-strategy__container,
  .page-fishing-games-strategy__hero-content {
    padding: 0 15px; /* Add side padding for mobile */
  }

  .page-fishing-games-strategy__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-fishing-games-strategy__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 15px;
  }

  .page-fishing-games-strategy__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-fishing-games-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 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: 1rem;
  }

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

  .page-fishing-games-strategy__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-fishing-games-strategy p,
  .page-fishing-games-strategy li {
    font-size: 0.95rem;
  }

  .page-fishing-games-strategy__technique-grid,
  .page-fishing-games-strategy__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-fishing-games-strategy__card-title,
  .page-fishing-games-strategy__feature-title {
    font-size: 1.2rem;
  }

  .page-fishing-games-strategy__card-image,
  .page-fishing-games-strategy__feature-icon {
    height: 180px;
  }

  /* Mobile image responsiveness */
  .page-fishing-games-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-strategy__section,
  .page-fishing-games-strategy__card,
  .page-fishing-games-strategy__container,
  .page-fishing-games-strategy__hero-image-wrapper,
  .page-fishing-games-strategy__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-fishing-games-strategy__video-section {
    padding-top: 10px !important; /* body already has --header-offset */
  }

  .page-fishing-games-strategy__video-container,
  .page-fishing-games-strategy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games-strategy video,
  .page-fishing-games-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-strategy__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }
}

/* Ensure contrast for text on various backgrounds */
.page-fishing-games-strategy a {
  color: var(--page-fishing-games-strategy-glow-color);
  text-decoration: none;
}

.page-fishing-games-strategy a:hover {
  text-decoration: underline;
}