/* style/fishing-games.css */
:root {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #002244;
  --accent-color: #e74c3c; /* For highlighting CTAs */
}

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

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

.page-fishing-games .text-center {
  text-align: center;
}

/* Hero Section */
.page-fishing-games .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
  color: var(--text-light);
}

.page-fishing-games .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-fishing-games .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games .hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-fishing-games .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.page-fishing-games .cta-button:hover {
  background: #ffc107;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-fishing-games section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.page-fishing-games section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-fishing-games h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.page-fishing-games h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  border-radius: 2px;
}

.page-fishing-games h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 25px;
  margin-bottom: 15px;
  text-align: center;
}

.page-fishing-games p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-dark);
}

/* Intro Section */
.page-fishing-games .intro-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.page-fishing-games .feature-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .feature-item .feature-icon {
  width: 150px; /* Min size 200x200, so this is just for presentation, actual image will be larger */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fishing-games .feature-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-fishing-games .feature-item p {
  font-size: 1em;
  color: var(--text-dark);
}

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

.page-fishing-games .step-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games .step-item .step-number {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
  border: 4px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .step-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-fishing-games .btn-guide {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 30px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-fishing-games .btn-guide:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Strategy Section */
.page-fishing-games .strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games .strategy-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games .strategy-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .strategy-item .strategy-img {
  width: 100%;
  max-width: 300px; /* Ensure images are not too small, but fit card */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-fishing-games .strategy-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-fishing-games .strategy-item p {
  font-size: 1em;
  color: var(--text-dark);
}

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

.page-fishing-games .faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-fishing-games .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

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

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

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

.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 25px;
  background: #f9f9f9;
  color: var(--text-dark);
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

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

/* CTA Bottom Section */
.page-fishing-games .cta-bottom-section {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
}

.page-fishing-games .cta-bottom-section h2 {
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.page-fishing-games .cta-bottom-section h2::after {
  background-color: var(--text-light);
}

.page-fishing-games .cta-bottom-section p {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games .hero-content h1 {
    font-size: 2.5em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games h2 {
    font-size: 2em;
    margin-bottom: 40px;
  }
  .page-fishing-games h3 {
    font-size: 1.5em;
  }
  .page-fishing-games section {
    padding: 60px 0;
  }
  .page-fishing-games .features-grid, .page-fishing-games .guide-steps, .page-fishing-games .strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games .hero-section {
    padding: 40px 15px;
  }
  .page-fishing-games .hero-image {
    margin-bottom: 20px;
  }
  .page-fishing-games .hero-content h1 {
    font-size: 2em;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games h3 {
    font-size: 1.3em;
  }
  .page-fishing-games section {
    padding: 40px 0;
  }
  .page-fishing-games .feature-item, .page-fishing-games .step-item, .page-fishing-games .strategy-item {
    padding: 20px;
  }
  .page-fishing-games .feature-item .feature-icon {
    width: 120px;
    height: 120px;
  }
  .page-fishing-games .step-item .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-fishing-games .faq-question {
    padding: 15px 20px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 1.5em;
  }
  .page-fishing-games .faq-answer {
    padding: 0 20px;
  }
  .page-fishing-games .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-fishing-games .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-fishing-games .cta-bottom-section p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-fishing-games .hero-content h1 {
    font-size: 1.8em;
  }
  .page-fishing-games .hero-content p {
    font-size: 0.95em;
  }
  .page-fishing-games h2 {
    font-size: 1.5em;
  }
  .page-fishing-games h3 {
    font-size: 1.2em;
  }
  .page-fishing-games .features-grid, .page-fishing-games .guide-steps, .page-fishing-games .strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games .cta-button {
    width: 100%;
    max-width: 280px;
  }
}