/* style/game-tutorials-fishing-game-tips.css */

/* Base Styles */
.page-game-tutorials-fishing-game-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-game-tutorials-fishing-game-tips__section-title {
  font-size: 2.5em;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-game-tutorials-fishing-game-tips__item-title {
  font-size: 1.8em;
  color: #017439;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-game-tutorials-fishing-game-tips__text-block {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.page-game-tutorials-fishing-game-tips__btn-primary,
.page-game-tutorials-fishing-game-tips__cta-button {
  display: inline-block;
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-game-tutorials-fishing-game-tips__btn-primary:hover,
.page-game-tutorials-fishing-game-tips__cta-button:hover {
  background-color: #a00606;
}

/* Color Contrast Classes */
.page-game-tutorials-fishing-game-tips__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff; /* Light text on dark background */
}

.page-game-tutorials-fishing-game-tips__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text on light background */
}

/* Hero Section */
.page-game-tutorials-fishing-game-tips__hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 20px; /* Add padding for content */
  box-sizing: border-box;
}

.page-game-tutorials-fishing-game-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-game-tutorials-fishing-game-tips__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-game-tutorials-fishing-game-tips__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-game-tutorials-fishing-game-tips__hero-title {
  font-size: 3.5em;
  color: #FFFF00; /* Yellow for title */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

/* General Content Sections */
.page-game-tutorials-fishing-game-tips__introduction-section,
.page-game-tutorials-fishing-game-tips__weapons-section,
.page-game-tutorials-fishing-game-tips__strategy-section,
.page-game-tutorials-fishing-game-tips__advanced-strategy-section,
.page-game-tutorials-fishing-game-tips__golden-time-section,
.page-game-tutorials-fishing-game-tips__mistakes-section,
.page-game-tutorials-fishing-game-tips__faq-section,
.page-game-tutorials-fishing-game-tips__cta-section {
  padding: 80px 0;
}

/* Grid Layouts */
.page-game-tutorials-fishing-game-tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-tutorials-fishing-game-tips__grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.page-game-tutorials-fishing-game-tips__grid-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for dark bg sections */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-tutorials-fishing-game-tips__light-bg .page-game-tutorials-fishing-game-tips__grid-item {
  background-color: #f9f9f9; /* Light background for light sections */
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-tutorials-fishing-game-tips__light-bg .page-game-tutorials-fishing-game-tips__item-title {
  color: #017439;
}

.page-game-tutorials-fishing-game-tips__light-bg .page-game-tutorials-fishing-game-tips__section-title {
  color: #017439;
}

/* Images */
.page-game-tutorials-fishing-game-tips__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-tutorials-fishing-game-tips__cta-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* List Styles */
.page-game-tutorials-fishing-game-tips__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  font-size: 1.1em;
  color: #ffffff;
}

.page-game-tutorials-fishing-game-tips__light-bg .page-game-tutorials-fishing-game-tips__list {
  color: #333333;
}

.page-game-tutorials-fishing-game-tips__list-item {
  margin-bottom: 10px;
}

/* FAQ Section */
.page-game-tutorials-fishing-game-tips__faq-list {
  margin-top: 40px;
}

.page-game-tutorials-fishing-game-tips__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #ffffff;
}

.page-game-tutorials-fishing-game-tips__light-bg .page-game-tutorials-fishing-game-tips__faq-item {
  background-color: #f0f0f0;
  color: #333333;
}

.page-game-tutorials-fishing-game-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #017439;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-tutorials-fishing-game-tips__faq-item.active .page-game-tutorials-fishing-game-tips__faq-question {
  background-color: #005a2e;
}

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

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

.page-game-tutorials-fishing-game-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-game-tutorials-fishing-game-tips__faq-item.active .page-game-tutorials-fishing-game-tips__faq-answer {
  max-height: 1000px !important; /* Ensure enough height for content */
  padding: 20px;
}

.page-game-tutorials-fishing-game-tips__faq-answer p {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-game-tutorials-fishing-game-tips__light-bg .page-game-tutorials-fishing-game-tips__faq-answer p {
  color: #333333;
}

/* CTA Section */
.page-game-tutorials-fishing-game-tips__cta-section {
  text-align: center;
}

.page-game-tutorials-fishing-game-tips__cta-section .page-game-tutorials-fishing-game-tips__section-title {
  color: #FFFF00;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-tutorials-fishing-game-tips__hero-title {
    font-size: 2.8em;
  }
  .page-game-tutorials-fishing-game-tips__hero-description {
    font-size: 1.1em;
  }
  .page-game-tutorials-fishing-game-tips__section-title {
    font-size: 2em;
  }
  .page-game-tutorials-fishing-game-tips__item-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-game-tutorials-fishing-game-tips {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-game-tutorials-fishing-game-tips__hero-section {
    height: auto;
    min-height: 60vh;
    padding: 60px 15px;
  }
  .page-game-tutorials-fishing-game-tips__hero-title {
    font-size: 2.2em;
  }
  .page-game-tutorials-fishing-game-tips__hero-description {
    font-size: 1em;
  }
  .page-game-tutorials-fishing-game-tips__container {
    padding: 0 15px;
  }
  .page-game-tutorials-fishing-game-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-tutorials-fishing-game-tips__item-title {
    font-size: 1.4em;
  }
  .page-game-tutorials-fishing-game-tips__grid-two-col {
    grid-template-columns: 1fr;
  }
  .page-game-tutorials-fishing-game-tips__introduction-section,
  .page-game-tutorials-fishing-game-tips__weapons-section,
  .page-game-tutorials-fishing-game-tips__strategy-section,
  .page-game-tutorials-fishing-game-tips__advanced-strategy-section,
  .page-game-tutorials-fishing-game-tips__golden-time-section,
  .page-game-tutorials-fishing-game-tips__mistakes-section,
  .page-game-tutorials-fishing-game-tips__faq-section,
  .page-game-tutorials-fishing-game-tips__cta-section {
    padding: 60px 0;
  }
  .page-game-tutorials-fishing-game-tips__grid-item {
    padding: 20px;
  }
  .page-game-tutorials-fishing-game-tips__list {
    margin-left: 15px;
  }
  .page-game-tutorials-fishing-game-tips__faq-question {
    padding: 15px;
    font-size: 1.1em;
  }
  .page-game-tutorials-fishing-game-tips__faq-answer {
    padding: 0 15px;
  }
  .page-game-tutorials-fishing-game-tips__faq-item.active .page-game-tutorials-fishing-game-tips__faq-answer {
    padding: 15px;
  }

  /* Mobile image responsiveness */
  .page-game-tutorials-fishing-game-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-tutorials-fishing-game-tips__section,
  .page-game-tutorials-fishing-game-tips__card,
  .page-game-tutorials-fishing-game-tips__container,
  .page-game-tutorials-fishing-game-tips__hero-section,
  .page-game-tutorials-fishing-game-tips__weapons-section,
  .page-game-tutorials-fishing-game-tips__strategy-section,
  .page-game-tutorials-fishing-game-tips__advanced-strategy-section,
  .page-game-tutorials-fishing-game-tips__golden-time-section,
  .page-game-tutorials-fishing-game-tips__mistakes-section,
  .page-game-tutorials-fishing-game-tips__faq-section,
  .page-game-tutorials-fishing-game-tips__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent content overflow */
  }
  .page-game-tutorials-fishing-game-tips__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Apply header offset */
  }

  /* Mobile button responsiveness */
  .page-game-tutorials-fishing-game-tips__cta-button,
  .page-game-tutorials-fishing-game-tips__btn-primary,
  .page-game-tutorials-fishing-game-tips__btn-secondary,
  .page-game-tutorials-fishing-game-tips a[class*="button"],
  .page-game-tutorials-fishing-game-tips 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-game-tutorials-fishing-game-tips__cta-buttons,
  .page-game-tutorials-fishing-game-tips__button-group,
  .page-game-tutorials-fishing-game-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
}