/* style/fishing-games.css */

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

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

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

.page-fishing-games__dark-bg {
  background-color: var(--page-fishing-games-bg);
  color: var(--page-fishing-games-text-main);
}

.page-fishing-games__light-bg {
  background-color: var(--page-fishing-games-text-main);
  color: #333333; /* Ensuring contrast on light background */
}

.page-fishing-games__text-contrast-fix {
  color: #333333 !important; /* Force dark text on light backgrounds */
}

.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games__hero-content {
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
  text-align: center;
  z-index: 1; /* Ensure content is above image if any slight overlap */
}

.page-fishing-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--page-fishing-games-gold);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-fishing-games__description {
  font-size: 1.1rem;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 30px;
}

.page-fishing-games__btn-primary {
  display: inline-block;
  background: var(--page-fishing-games-btn-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

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

.page-fishing-games__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--page-fishing-games-gold);
  margin-bottom: 40px;
  font-weight: 700;
}

.page-fishing-games__sub-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--page-fishing-games-text-main);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-fishing-games__text-block p, .page-fishing-games__list-item {
  font-size: 1rem;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 15px;
  text-align: left;
}

.page-fishing-games__list {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
  text-align: left;
}

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

.page-fishing-games__inline-link {
  color: var(--page-fishing-games-glow);
  text-decoration: none;
  font-weight: 600;
}

.page-fishing-games__inline-link:hover {
  text-decoration: underline;
}

.page-fishing-games__highlight {
  color: var(--page-fishing-games-gold);
  font-weight: 600;
}

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

.page-fishing-games__card {
  background-color: var(--page-fishing-games-card-bg);
  border: 1px solid var(--page-fishing-games-border);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__card.page-fishing-games__light-bg {
  background-color: #ffffff;
  color: #333333;
  border-color: #e0e0e0;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-fishing-games__card-title {
  font-size: 1.4rem;
  color: var(--page-fishing-games-gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games__card-title.page-fishing-games__text-contrast-fix {
  color: #333333 !important;
}

.page-fishing-games__card-text {
  font-size: 0.95rem;
  color: var(--page-fishing-games-text-secondary);
  text-align: left;
}

.page-fishing-games__card-text.page-fishing-games__text-contrast-fix {
  color: #555555 !important;
}

.page-fishing-games__cta-container {
  margin-top: 50px;
  text-align: center;
}

.page-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-fishing-games__promo-item {
  background-color: var(--page-fishing-games-card-bg);
  border: 1px solid var(--page-fishing-games-border);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.page-fishing-games__promo-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--page-fishing-games-deep-green);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.3);
}

.page-fishing-games__promo-icon img {
  
  
  object-fit: contain;
}

.page-fishing-games__promo-content {
  flex-grow: 1;
}

.page-fishing-games__promo-title {
  font-size: 1.25rem;
  color: var(--page-fishing-games-gold);
  margin-top: 0;
  margin-bottom: 8px;
}

.page-fishing-games__promo-text {
  font-size: 0.95rem;
  color: var(--page-fishing-games-text-secondary);
  margin-bottom: 0;
}

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

.page-fishing-games__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
  color: #333333;
}

.page-fishing-games__faq-item[open] > .page-fishing-games__faq-question {
  background-color: #e6ffe6; /* Light green for open state */
  border-bottom-color: var(--page-fishing-games-glow);
}

.page-fishing-games__faq-question:hover {
  background-color: #f0f0f0;
}

.page-fishing-games__faq-item[open] > .page-fishing-games__faq-question .page-fishing-games__faq-toggle {
  content: '−';
}

.page-fishing-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-fishing-games-glow);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  color: var(--page-fishing-games-deep-green);
}

.page-fishing-games__faq-answer {
  padding: 15px 25px 25px;
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

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

/* Details element specific styling to hide default marker */
.page-fishing-games__faq-item > summary {
  list-style: none;
}

.page-fishing-games__faq-item > summary::-webkit-details-marker {
  display: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    margin-top: 20px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-fishing-games__description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 40px 0;
  }

  .page-fishing-games__hero-section {
    padding-bottom: 40px;
  }

  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-fishing-games__heading {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-fishing-games__sub-heading {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .page-fishing-games__content-area {
    padding: 0 15px;
  }

  .page-fishing-games__grid-container,
  .page-fishing-games__game-types-grid,
  .page-fishing-games__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__card {
    padding: 20px;
  }

  .page-fishing-games__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__promo-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-fishing-games__promo-item {
    padding: 15px;
  }

  .page-fishing-games__promo-icon {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }

  .page-fishing-games__promo-icon img {
    
    
  }

  .page-fishing-games__promo-title {
    font-size: 1.1rem;
  }

  .page-fishing-games__promo-text {
    font-size: 0.9rem;
  }

  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-fishing-games__faq-answer {
    padding: 10px 20px 20px;
    font-size: 0.95rem;
  }

  /* Mobile responsive image and container overrides */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__hero-section,
  .page-fishing-games__hero-image-wrapper,
  .page-fishing-games__hero-content,
  .page-fishing-games__content-area,
  .page-fishing-games__grid-container,
  .page-fishing-games__game-types-grid,
  .page-fishing-games__strategy-grid,
  .page-fishing-games__promo-list,
  .page-fishing-games__promo-item,
  .page-fishing-games__faq-list,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  .page-fishing-games__hero-section,
  .page-fishing-games__section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-fishing-games__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button responsive styles */
  .page-fishing-games__cta-button,
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-fishing-games__cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Ensure no filter on images */
.page-fishing-games img {
  filter: none !important;
}