/* style/fishing-games.css */

/* Base styles for the page-fishing-games scope */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--dark-bg-1);
}

/* Fixed header padding */
.page-fishing-games__hero-section,
.page-fishing-games__content-area {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #E44D26, #FF6F61);
  color: #ffffff;
  overflow: hidden;
}

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

.page-fishing-games__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  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-description a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}

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

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

.page-fishing-games__btn-primary {
  background: #333333;
  color: #ffffff;
  border: 2px solid #333333;
}

.page-fishing-games__btn-primary:hover {
  background: #000000;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
  background: #ffffff;
  color: #E44D26;
  border: 2px solid #E44D26;
}

.page-fishing-games__btn-secondary:hover {
  background: #f0f0f0;
  color: #C23D1F;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* General Section Styles */
.page-fishing-games__section {
  padding: 60px 20px;
  background-color: var(--dark-bg-1);
  color: #f0f0f0;
}

.page-fishing-games__dark-section {
  background-color: #333333;
  color: #ffffff;
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-fishing-games__section-title {
  font-size: 2.5em;
  color: #E44D26;
  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: #E44D26;
  border-radius: 2px;
}

.page-fishing-games__content-area p,
.page-fishing-games__section p,
.page-fishing-games__faq-answer p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-fishing-games__dark-section p,
.page-fishing-games__dark-section li {
  color: #ffffff;
}

.page-fishing-games__content-area a,
.page-fishing-games__section a,
.page-fishing-games__faq-answer a {
  color: #E44D26;
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__content-area a:hover,
.page-fishing-games__section a:hover,
.page-fishing-games__faq-answer a:hover {
  text-decoration: underline;
}

/* Features Grid */
.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 {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.page-fishing-games__feature-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

/* Lists */
.page-fishing-games__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-fishing-games__numbered-list {
  list-style: decimal inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-fishing-games__list li,
.page-fishing-games__numbered-list li {
  margin-bottom: 10px;
}

/* Call to Action Section */
.page-fishing-games__call-to-action {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #333333, #555555);
  color: #ffffff;
}

.page-fishing-games__call-to-action .page-fishing-games__section-title {
  color: #E44D26;
}

.page-fishing-games__call-to-action .page-fishing-games__section-title::after {
  background-color: #E44D26;
}

.page-fishing-games__call-to-action p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 60px 20px;
  background-color: var(--dark-bg-1);
}

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

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for FAQ item */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-question {
  background: rgba(255, 255, 255, 0.15);
  border-bottom: none;
}

.page-fishing-games__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-fishing-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  color: #E44D26; /* Orange for question titles */
  pointer-events: none;
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #E44D26;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  color: #E44D26;
  transform: rotate(180deg);
  border-color: #ffffff;
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #f0f0f0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 8px 8px;
}

/* Image responsiveness for all images within .page-fishing-games */
.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

  .page-fishing-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section,
  .page-fishing-games__content-area,
  .page-fishing-games__section,
  .page-fishing-games__call-to-action,
  .page-fishing-games__faq-section {
    padding-top: 100px !important; /* Mobile: Adjust based on mobile fixed header height */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__main-title {
    font-size: 2.2em;
  }

  .page-fishing-games__hero-description {
    font-size: 1em;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games__cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-fishing-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-fishing-games__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-fishing-games__feature-item {
    padding: 25px;
  }

  .page-fishing-games__content-area p,
  .page-fishing-games__section p,
  .page-fishing-games__list li,
  .page-fishing-games__numbered-list li,
  .page-fishing-games__faq-answer p {
    font-size: 0.95em;
  }

  .page-fishing-games__faq-question {
    padding: 15px 20px;
  }

  .page-fishing-games__faq-question h3 {
    font-size: 1.1em;
  }

  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }

  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px 20px !important;
  }

  /* Force image responsiveness */
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}