/* style/fishing-games-tips.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-fishing-games-tips {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

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

/* Hero Section */
.page-fishing-games-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
  background-color: #1a1a1a; /* Slightly lighter dark background for hero */
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
}

.page-fishing-games-tips__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.page-fishing-games-tips__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  padding: 30px;
  border-radius: 10px;
}

.page-fishing-games-tips__main-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #26A9E0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fishing-games-tips__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #ffffff;
}

/* Content Section */
.page-fishing-games-tips__content-section {
  background-color: #121212; /* Match body background */
  padding: 60px 0;
  color: #ffffff;
}

.page-fishing-games-tips__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-fishing-games-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-fishing-games-tips__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-fishing-games-tips__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.6;
}

.page-fishing-games-tips__sub-list {
  list-style-type: circle;
  margin-left: 20px;
  margin-top: 10px;
}

.page-fishing-games-tips__image-text-block {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
}

.page-fishing-games-tips__image-text-block--reversed {
  flex-direction: row-reverse;
}

.page-fishing-games-tips__image-left,
.page-fishing-games-tips__image-right {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: auto;
  display: block;
}

.page-fishing-games-tips__text-right,
.page-fishing-games-tips__text-left {
  flex: 1.5;
}

.page-fishing-games-tips__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-fishing-games-tips__main-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Video Section */
.page-fishing-games-tips__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-tips__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-fishing-games-tips__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* Call to Action Banner */
.page-fishing-games-tips__cta-banner {
  position: relative;
  margin: 60px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-fishing-games-tips__cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.4;
}

.page-fishing-games-tips__cta-overlay {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
  max-width: 700px;
  color: #ffffff;
}

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

.page-fishing-games-tips__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.page-fishing-games-tips__btn-primary,
.page-fishing-games-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-fishing-games-tips__btn-primary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
}

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

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

/* FAQ Section */
.page-fishing-games-tips__faq-list {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fishing-games-tips__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.page-fishing-games-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games-tips__faq-question:hover {
  color: #26A9E0;
}

.page-fishing-games-tips__faq-title {
  margin: 0;
  font-size: 1.2em; /* Ensure h3 within question maintains size */
  color: inherit; /* Inherit color from parent for hover effect */
}

.page-fishing-games-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-fishing-games-tips__faq-item.active .page-fishing-games-tips__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-fishing-games-tips__faq-item.active .page-fishing-games-tips__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px;
}

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

  .page-fishing-games-tips__hero-description {
    font-size: 1.1em;
  }

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

  .page-fishing-games-tips__image-text-block {
    flex-direction: column;
  }

  .page-fishing-games-tips__image-text-block--reversed {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fishing-games-tips__hero-section {
    padding: 60px 15px 30px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-fishing-games-tips__hero-content {
    padding: 20px;
  }

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

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

  .page-fishing-games-tips__section-title {
    font-size: 1.8em;
  }

  .page-fishing-games-tips__paragraph,
  .page-fishing-games-tips__list-item,
  .page-fishing-games-tips__faq-question,
  .page-fishing-games-tips__cta-text {
    font-size: 1em;
  }

  /* Images responsiveness */
  .page-fishing-games-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games-tips__image-left,
  .page-fishing-games-tips__image-right,
  .page-fishing-games-tips__main-image,
  .page-fishing-games-tips__cta-image {
    min-width: unset;
  }

  /* Video responsiveness */
  .page-fishing-games-tips video,
  .page-fishing-games-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games-tips__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button responsiveness */
  .page-fishing-games-tips__btn-primary,
  .page-fishing-games-tips__btn-secondary {
    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-tips__cta-overlay {
    padding: 25px 15px;
  }

  .page-fishing-games-tips__cta-title {
    font-size: 1.6em;
  }

  /* General container mobile padding */
  .page-fishing-games-tips__container,
  .page-fishing-games-tips__content-section,
  .page-fishing-games-tips__hero-section {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}