/* style/fishing-games.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Deep Red */
  --dark-background: #1a1a1a;
  --light-text: #ffffff;
  --dark-text: #333333;
  --light-grey: #f4f4f4;
  --medium-grey: #e0e0e0;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  background-color: var(--light-grey);
}

.page-fishing-games .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fishing-games section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games h1,
.page-fishing-games h2 {
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-weight: bold;
}

.page-fishing-games h1 {
  font-size: 3em;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games h2 {
  font-size: 2.5em;
}

.page-fishing-games h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-fishing-games p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-fishing-games .highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-fishing-games .cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--dark-background);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .cta-button:hover {
  background: #ffdb4d;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .secondary-button {
  background: var(--secondary-color);
  color: var(--light-text);
}

.page-fishing-games .secondary-button:hover {
  background: #a30000;
}

.page-fishing-games a {
  color: var(--secondary-color);
  text-decoration: none;
}

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

/* Hero Section */
.page-fishing-games .hero-section {
  background: linear-gradient(135deg, var(--dark-background), #330000);
  color: var(--light-text);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-fishing-games .hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-games .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-fishing-games .hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 3.5em;
}

.page-fishing-games .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--light-grey);
}

.page-fishing-games .hero-content .highlight {
  color: var(--primary-color);
}

/* Why Choose Section */
.page-fishing-games .section-why-choose {
  background-color: var(--light-grey);
  color: var(--dark-text);
}

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

.page-fishing-games .feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .feature-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-fishing-games .feature-item h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
}

.page-fishing-games .feature-item p {
  font-size: 1em;
  color: #555;
}

/* Game Features Section */
.page-fishing-games .section-game-features {
  background-color: var(--dark-background);
  color: var(--light-text);
}

.page-fishing-games .section-game-features h2 {
  color: var(--primary-color);
}

.page-fishing-games .section-game-features .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  margin-top: 40px;
}

.page-fishing-games .section-game-features .text-content {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.page-fishing-games .section-game-features .text-content p {
  color: var(--light-grey);
}

.page-fishing-games .section-game-features .text-content ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-fishing-games .section-game-features .text-content ul li {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 15px;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  color: var(--light-text);
}

.page-fishing-games .section-game-features .text-content ul li strong {
  color: var(--primary-color);
}

.page-fishing-games .section-game-features .image-content {
  flex: 1;
  min-width: 300px;
  padding-left: 30px;
}

.page-fishing-games .section-game-features .image-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* How To Play Section */
.page-fishing-games .section-how-to-play {
  background-color: #ffffff;
  color: var(--dark-text);
}

.page-fishing-games .steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games .step-item {
  background: var(--light-grey);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--medium-grey);
}

.page-fishing-games .step-item img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-fishing-games .step-item h3 {
  color: var(--secondary-color);
}

.page-fishing-games .call-to-action-text {
  margin-top: 40px;
  font-size: 1.2em;
  font-weight: bold;
}

.page-fishing-games .link-highlight {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-fishing-games .link-highlight:hover {
  color: var(--secondary-color);
}

/* Tips & Strategies Section */
.page-fishing-games .section-tips-strategies {
  background-color: var(--primary-color);
  color: var(--dark-background);
}

.page-fishing-games .section-tips-strategies h2 {
  color: var(--dark-background);
}

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

.page-fishing-games .tip-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games .tip-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-fishing-games .tip-item h3 {
  color: var(--secondary-color);
}

.page-fishing-games .tip-item p {
  color: #555;
}

/* Safety & Support Section */
.page-fishing-games .section-safety-support {
  background-color: var(--dark-background);
  color: var(--light-text);
}

.page-fishing-games .section-safety-support h2 {
  color: var(--primary-color);
}

.page-fishing-games .section-safety-support .content-wrapper {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  text-align: left;
  margin-top: 40px;
}

.page-fishing-games .section-safety-support .text-content {
  flex: 1;
  min-width: 300px;
  padding-left: 30px;
}

.page-fishing-games .section-safety-support .text-content p {
  color: var(--light-grey);
}

.page-fishing-games .section-safety-support .text-content ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-fishing-games .section-safety-support .text-content ul li {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 15px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
  color: var(--light-text);
}

.page-fishing-games .section-safety-support .text-content ul li strong {
  color: var(--primary-color);
}

.page-fishing-games .section-safety-support .image-content {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.page-fishing-games .section-safety-support .image-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-fishing-games .section-faq {
  background-color: var(--light-grey);
  color: var(--dark-text);
}

.page-fishing-games .faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--medium-grey);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-fishing-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-fishing-games .faq-question:hover {
  background: #f0f0f0;
}

.page-fishing-games .faq-question h3 {
  margin: 0;
  color: var(--dark-text);
  font-size: 1.2em;
}

.page-fishing-games .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

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

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #f9f9f9;
  color: #555;
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px;
  border-top: 1px solid var(--medium-grey);
}

.page-fishing-games .faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Conclusion Section */
.page-fishing-games .section-conclusion {
  background: linear-gradient(135deg, var(--secondary-color), #a30000);
  color: var(--light-text);
}

.page-fishing-games .section-conclusion h2 {
  color: var(--primary-color);
}

.page-fishing-games .section-conclusion p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--light-grey);
}

.page-fishing-games .final-cta {
  background: var(--primary-color);
  color: var(--dark-background);
}

.page-fishing-games .final-cta:hover {
  background: #ffdb4d;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games h1 {
    font-size: 2.8em;
  }
  .page-fishing-games h2 {
    font-size: 2em;
  }
  .page-fishing-games .section-game-features .text-content,
  .page-fishing-games .section-game-features .image-content,
  .page-fishing-games .section-safety-support .text-content,
  .page-fishing-games .section-safety-support .image-content {
    padding-right: 15px;
    padding-left: 15px;
  }
  .page-fishing-games .section-game-features .content-wrapper,
  .page-fishing-games .section-safety-support .content-wrapper {
    flex-direction: column;
  }
  .page-fishing-games .section-game-features .image-content,
  .page-fishing-games .section-safety-support .image-content {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games section {
    padding: 40px 0;
  }
  .page-fishing-games h1 {
    font-size: 2.2em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
  }
  .page-fishing-games h3 {
    font-size: 1.3em;
  }
  .page-fishing-games p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 2.5em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games .features-grid,
  .page-fishing-games .steps-wrapper,
  .page-fishing-games .tips-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games .faq-question {
    padding: 12px 15px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 1.5em;
  }
  .page-fishing-games .faq-answer {
    padding: 0 15px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 15px;
  }
}