/* style/fishing-games.css */

/* Base Styles */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games__section-title,
.page-fishing-games__main-title {
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-fishing-games__main-title {
  font-size: 3.5em;
  line-height: 1.2;
}

.page-fishing-games__paragraph {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #f0f0f0; /* Light text for readability on dark background */
}

.page-fishing-games__highlight {
  color: #26A9E0;
  font-weight: bold;
}

.page-fishing-games a {
  color: #26A9E0;
  text-decoration: none;
}

.page-fishing-games a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px; /* Adjusted padding for content */
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
}

.page-fishing-games__hero-content {
  max-width: 900px;
  z-index: 10;
  margin-bottom: 40px;
}

.page-fishing-games__intro-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-fishing-games__btn-primary:hover {
  background: #1e87b7;
  border-color: #1e87b7;
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
}

.page-fishing-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 5;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* About Section */
.page-fishing-games__about-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Darker background for contrast with hero */
  color: #f0f0f0;
}

.page-fishing-games__about-section .page-fishing-games__section-title {
  color: #26A9E0;
}

.page-fishing-games__image-right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  width: 50%;
  box-sizing: border-box;
}

.page-fishing-games__image-left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  width: 50%;
  box-sizing: border-box;
}

.page-fishing-games__image-center {
  display: block;
  margin: 40px auto;
  width: 70%;
  box-sizing: border-box;
}

.page-fishing-games__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.page-fishing-games__features-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Even darker background */
  color: #f0f0f0;
}

.page-fishing-games__features-section .page-fishing-games__section-title {
  color: #26A9E0;
}

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

.page-fishing-games__feature-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-10px);
  background: rgba(38, 169, 224, 0.1);
}

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

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

/* How to Play Section */
.page-fishing-games__how-to-play-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.page-fishing-games__how-to-play-section .page-fishing-games__section-title {
  color: #26A9E0;
}

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

.page-fishing-games__step-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__step-title {
  color: #26A9E0;
  font-size: 1.3em;
  margin-bottom: 10px;
}

/* Tips Section */
.page-fishing-games__tips-section {
  padding: 80px 0;
  background-color: #0d0d0d;
  color: #f0f0f0;
}

.page-fishing-games__tips-section .page-fishing-games__section-title {
  color: #26A9E0;
}

.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-fishing-games__tips-list li {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #cccccc;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__list-icon {
  font-size: 1.5em;
  margin-right: 15px;
  color: #26A9E0;
}

/* CTA Banner */
.page-fishing-games__cta-banner {
  background: linear-gradient(90deg, #26A9E0, #1e87b7);
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.page-fishing-games__cta-container {
  max-width: 800px;
}

.page-fishing-games__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-fishing-games__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games__btn-large {
  padding: 18px 40px;
  font-size: 1.1em;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.page-fishing-games__faq-section .page-fishing-games__section-title {
  color: #26A9E0;
}

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

.page-fishing-games__faq-item {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  outline: none;
}

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

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-fishing-games__faq-qtext {
  flex-grow: 1;
  color: #26A9E0;
}

.page-fishing-games__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  color: #ffffff;
}

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

.page-fishing-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #cccccc;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Clearfix for floats */
.page-fishing-games__container::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 3em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__intro-text {
    font-size: 1.1em;
  }
  .page-fishing-games__image-right,
  .page-fishing-games__image-left {
    width: 60%;
    margin: 20px auto;
    float: none;
  }
  .page-fishing-games__image-center {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding: 80px 15px 40px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }
  .page-fishing-games__main-title {
    font-size: 2.2em;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__intro-text {
    font-size: 1em;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-fishing-games__container,
  .page-fishing-games__cta-container,
  .page-fishing-games__features-grid,
  .page-fishing-games__steps-list,
  .page-fishing-games__faq-list {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games__image-right,
  .page-fishing-games__image-left,
  .page-fishing-games__image-center {
    width: 100%;
    float: none;
    margin: 20px 0;
  }
  .page-fishing-games__features-grid,
  .page-fishing-games__steps-list {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__cta-title {
    font-size: 1.8em;
  }
  .page-fishing-games__cta-description {
    font-size: 1em;
  }
  .page-fishing-games__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-fishing-games__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-fishing-games__tips-list li {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .page-fishing-games__list-icon {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 1.8em;
  }
  .page-fishing-games__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games__hero-section,
  .page-fishing-games__about-section,
  .page-fishing-games__features-section,
  .page-fishing-games__how-to-play-section,
  .page-fishing-games__tips-section,
  .page-fishing-games__cta-banner,
  .page-fishing-games__faq-section {
    padding: 40px 0;
  }
  .page-fishing-games__cta-title {
    font-size: 1.5em;
  }
  .page-fishing-games__btn-large {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}