/* style/fishing-games.css */

/* Base styles for the page content */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #f8f8f8; /* Light background for the main content area */
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  background: linear-gradient(135deg, #FFD700, #1E90FF); /* Gold to Blue gradient */
  color: #ffffff; /* White text for gradient background */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden; /* For image positioning */
}

.page-fishing-games__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-fishing-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  z-index: 0;
}

/* General Buttons */
.page-fishing-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  white-space: nowrap;
  min-width: 180px; /* Ensure buttons are not too small */
}

.page-fishing-games__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Blue text for gold background */
  border: 2px solid #FFD700;
}

.page-fishing-games__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-fishing-games__button--secondary {
  background-color: #1E90FF; /* Blue */
  color: #FFD700; /* Gold text for blue background */
  border: 2px solid #1E90FF;
}

.page-fishing-games__button--secondary:hover {
  background-color: #1a7ae1;
  transform: translateY(-3px);
}

.page-fishing-games__button--tertiary {
  background-color: transparent;
  color: #1E90FF; /* Blue text */
  border: 2px solid #1E90FF;
}

.page-fishing-games__button--tertiary:hover {
  background-color: #1E90FF;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Content Area - general padding and max-width */
.page-fishing-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  color: #1E90FF; /* Blue title */
  text-align: center;
  margin-bottom: 40px;
  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: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-fishing-games__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games__text-content strong {
  color: #1E90FF; /* Highlight brand name */
}

.page-fishing-games__text-content a {
  color: #1E90FF;
  text-decoration: underline;
}

.page-fishing-games__text-content a:hover {
  color: #FFD700;
}

/* About Section */
.page-fishing-games__about-section {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  padding: 40px;
}

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

.page-fishing-games__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-fishing-games__feature-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-fishing-games__feature-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-fishing-games__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Popular Games Section */
.page-fishing-games__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-fishing-games__game-title {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-fishing-games__game-title a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__game-title a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-fishing-games__game-description {
  font-size: 0.95em;
  color: #666666;
}

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

/* Why Choose Section */
.page-fishing-games__why-choose-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.page-fishing-games__list-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700; /* Gold accent */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
}

.page-fishing-games__list-title {
  font-size: 1.4em;
  color: #1E90FF;
  margin-bottom: 10px;
}

.page-fishing-games__list-description {
  font-size: 1em;
  color: #555555;
}

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

.page-fishing-games__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-fishing-games__promo-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-fishing-games__promo-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

/* Guide Section */
.page-fishing-games__guide-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-fishing-games__guide-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-fishing-games__guide-list {
  list-style: decimal;
  padding-left: 20px;
  text-align: left;
  max-width: 700px;
}

.page-fishing-games__guide-list .page-fishing-games__list-item {
  background-color: #ffffff;
  border-left: 5px solid #1E90FF; /* Blue accent */
  margin-bottom: 15px;
  padding: 15px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* FAQ Section */
.page-fishing-games__faq-items {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-fishing-games__faq-question {
  font-size: 1.3em;
  color: #1E90FF;
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #f0f8ff; /* Light blue background for questions */
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-fishing-games__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-fishing-games__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #ffffff;
}

.page-fishing-games__faq-answer p {
  padding-bottom: 15px;
  margin-top: 10px;
  color: #555555;
}

/* CTA Section */
.page-fishing-games__cta-section {
  text-align: center;
  background: linear-gradient(90deg, #1E90FF, #FFD700); /* Blue to Gold gradient */
  color: #ffffff;
  padding: 60px 20px;
  margin-top: 60px;
  border-radius: 10px;
}

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

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

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

.page-fishing-games__cta-buttons .page-fishing-games__button--primary {
  background-color: #FFD700;
  color: #1E90FF;
  border-color: #FFD700;
}

.page-fishing-games__cta-buttons .page-fishing-games__button--primary:hover {
  background-color: #e6c200;
}

.page-fishing-games__cta-buttons .page-fishing-games__button--secondary {
  background-color: #ffffff;
  color: #1E90FF;
  border-color: #ffffff;
}

.page-fishing-games__cta-buttons .page-fishing-games__button--secondary:hover {
  background-color: #f0f0f0;
}

.page-fishing-games__cta-buttons .page-fishing-games__button--tertiary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.page-fishing-games__cta-buttons .page-fishing-games__button--tertiary:hover {
  background-color: #ffffff;
  color: #1E90FF;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 2.8em;
  }
  .page-fishing-games__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 60px 15px;
  }
  .page-fishing-games__hero-title {
    font-size: 2.2em;
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-fishing-games__content-area {
    padding: 30px 15px;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__features-grid,
  .page-fishing-games__game-list,
  .page-fishing-games__promo-cards,
  .page-fishing-games__why-choose-list {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__guide-content {
    flex-direction: column;
  }
  .page-fishing-games__guide-list {
    padding-left: 0;
  }
  .page-fishing-games__guide-list .page-fishing-games__list-item {
    padding: 15px;
  }
  .page-fishing-games__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-fishing-games__cta-section {
    padding: 40px 15px;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: 1.8em;
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__button {
    font-size: 1em;
    padding: 12px 25px;
  }
}

/* Ensure images meet minimum size requirements for content area */
.page-fishing-games img {
  max-width: 100%;
  height: auto; /* Maintain aspect ratio */
  /* Enforce minimum display size for all content images */
  min-width: 200px;
  min-height: 200px;
}

/* No CSS filters for images */
.page-fishing-games img {
  filter: none !important; /* Explicitly disable any potential filters */
}