/* style/fishing-games.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1E90FF; /* Dodger Blue */
  --dark-text-color: #333333;
  --light-text-color: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #2c3e50;
  --border-color: #e0e0e0;
}

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

.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-section:nth-child(even) {
  background-color: #e9ecef;
}

.page-fishing-games-main-title {
  font-size: 3em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-fishing-games-intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--dark-text-color);
}

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

.page-fishing-games-cta-button:hover {
  background-color: var(--secondary-color);
  color: var(--light-text-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border-color: var(--secondary-color);
}

.page-fishing-games-section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-fishing-games-section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--dark-text-color);
}

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

.page-fishing-games-feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.page-fishing-games-feature-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  align-self: center;
}

.page-fishing-games-feature-heading {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-align: center;
  width: 100%;
}

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

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

.page-fishing-games-step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-fishing-games-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--dark-text-color);
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-step-heading {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-fishing-games-step-text {
  font-size: 1em;
  color: var(--dark-text-color);
  margin-bottom: 20px;
}

.page-fishing-games-button-small {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--light-text-color);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-color);
}

.page-fishing-games-button-small:hover {
  background-color: var(--primary-color);
  color: var(--dark-text-color);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

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

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

.page-fishing-games-weapon-heading {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-fishing-games-weapon-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-fishing-games-weapon-item ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--dark-text-color);
}

.page-fishing-games-weapon-item ul li::before {
  content: '•';
  color: var(--primary-color);
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
}

.page-fishing-games-strategy-heading {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 50px;
  margin-bottom: 20px;
}

.page-fishing-games-strategy-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: var(--dark-text-color);
}

.page-fishing-games-strategy-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

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

.page-fishing-games-promo-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games-promo-heading {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-fishing-games-promo-text {
  font-size: 1em;
  color: var(--dark-text-color);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games-contact-info ul {
  list-style: none;
  padding: 0;
  margin: 20px auto 0 auto;
  max-width: 600px;
  text-align: left;
}

.page-fishing-games-contact-info ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--dark-text-color);
  padding-left: 25px;
  position: relative;
}

.page-fishing-games-contact-info ul li::before {
  content: '📞'; /* Example icon */
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.page-fishing-games-contact-info ul li:nth-child(2)::before { content: '📧'; }
.page-fishing-games-contact-info ul li:nth-child(3)::before { content: '💬'; }
.page-fishing-games-contact-info ul li:nth-child(4)::before { content: '📱'; }

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

/* FAQ default state - answer hidden */
.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--dark-text-color);
  flex-grow: 1;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: var(--dark-text-color);
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 25px;
  border: 1px solid var(--border-color);
  border-top: none;
}

.faq-item.active .faq-question {
  background-color: #f0f0f0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games-main-title {
    font-size: 2.5em;
  }
  .page-fishing-games-section-title {
    font-size: 2em;
  }
  .page-fishing-games-feature-grid, .page-fishing-games-steps, .page-fishing-games-weapon-grid, .page-fishing-games-promo-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-feature-item, .page-fishing-games-step-item, .page-fishing-games-weapon-item, .page-fishing-games-promo-item {
    text-align: center;
    align-items: center;
  }
  .page-fishing-games-feature-heading, .page-fishing-games-weapon-heading, .page-fishing-games-promo-heading {
    text-align: center;
    width: 100%;
  }
  .page-fishing-games-weapon-item ul,
  .page-fishing-games-contact-info ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-section {
    padding: 40px 0;
  }
  .page-fishing-games-main-title {
    font-size: 2em;
  }
  .page-fishing-games-section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-intro-text, .page-fishing-games-section-description {
    font-size: 1em;
  }
  .page-fishing-games-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-main-title {
    font-size: 1.8em;
  }
  .page-fishing-games-section-title {
    font-size: 1.6em;
  }
  .page-fishing-games-feature-item, .page-fishing-games-step-item, .page-fishing-games-weapon-item, .page-fishing-games-promo-item {
    padding: 20px;
  }
  .page-fishing-games-button-small {
    padding: 8px 20px;
    font-size: 0.9em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
}