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

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

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

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

.page-fishing-games-tips__section {
  padding: 60px 0;
}

.page-fishing-games-tips__section-title {
  font-size: 2.5em;
  color: var(--page-fishing-games-tips-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-fishing-games-tips__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: var(--page-fishing-games-tips-text-secondary);
}

/* Hero Section */
.page-fishing-games-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-fishing-games-tips__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Adjust as needed */
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.page-fishing-games-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image for text readability */
}

.page-fishing-games-tips__hero-content-wrapper {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games-tips__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em); /* Responsive font size */
  color: var(--page-fishing-games-tips-text-main);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.page-fishing-games-tips__hero-description {
  font-size: 1.2em;
  color: var(--page-fishing-games-tips-text-secondary);
  margin-bottom: 40px;
  line-height: 1.5;
}

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

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

.page-fishing-games-tips__btn-primary {
  background: var(--page-fishing-games-tips-button-gradient);
  color: var(--page-fishing-games-tips-text-main);
  border: none;
}

.page-fishing-games-tips__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-fishing-games-tips__btn-secondary {
  background-color: transparent;
  color: var(--page-fishing-games-tips-gold-color);
  border: 2px solid var(--page-fishing-games-tips-gold-color);
}

.page-fishing-games-tips__btn-secondary:hover {
  background-color: var(--page-fishing-games-tips-gold-color);
  color: var(--page-fishing-games-tips-background);
  transform: translateY(-2px);
}

/* Intro Section */
.page-fishing-games-tips__intro-section {
  background-color: var(--page-fishing-games-tips-background);
}

.page-fishing-games-tips__feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.page-fishing-games-tips__list-item {
  background-color: var(--page-fishing-games-tips-card-bg);
  border-left: 5px solid var(--page-fishing-games-tips-primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05em;
  color: var(--page-fishing-games-tips-text-secondary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games-tips__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 40px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Preparation Section */
.page-fishing-games-tips__dark-section {
  background-color: var(--page-fishing-games-tips-deep-green-color);
  color: var(--page-fishing-games-tips-text-main);
}

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

.page-fishing-games-tips__card {
  background-color: var(--page-fishing-games-tips-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: var(--page-fishing-games-tips-text-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games-tips__card-title {
  font-size: 1.6em;
  color: var(--page-fishing-games-tips-gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fishing-games-tips__card-text {
  font-size: 1em;
  color: var(--page-fishing-games-tips-text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-fishing-games-tips__card-button {
  margin-top: auto; /* Push button to bottom */
}

/* Weapons Section */
.page-fishing-games-tips__light-bg {
  background-color: var(--page-fishing-games-tips-card-bg);
  color: var(--page-fishing-games-tips-text-main);
}

.page-fishing-games-tips__card-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Strategy Section */
.page-fishing-games-tips__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-fishing-games-tips__strategy-item {
  background-color: var(--page-fishing-games-tips-card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--page-fishing-games-tips-text-main);
}

.page-fishing-games-tips__strategy-title {
  font-size: 1.4em;
  color: var(--page-fishing-games-tips-gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-fishing-games-tips__strategy-description {
  font-size: 1em;
  color: var(--page-fishing-games-tips-text-secondary);
}

/* Tips Section */
.page-fishing-games-tips__tips-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-fishing-games-tips__tips-list .page-fishing-games-tips__list-item {
  background-color: var(--page-fishing-games-tips-card-bg);
  border-left-color: var(--page-fishing-games-tips-gold-color);
}

.page-fishing-games-tips__link-inline {
  color: var(--page-fishing-games-tips-gold-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-fishing-games-tips__link-inline:hover {
  color: var(--page-fishing-games-tips-primary-color);
}

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

.page-fishing-games-tips__faq-item {
  background-color: var(--page-fishing-games-tips-card-bg);
  border: 1px solid var(--page-fishing-games-tips-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--page-fishing-games-tips-text-main);
  background-color: var(--page-fishing-games-tips-card-bg);
  transition: background-color 0.3s ease;
}

.page-fishing-games-tips__faq-question:hover {
  background-color: var(--page-fishing-games-tips-deep-green-color);
}

.page-fishing-games-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--page-fishing-games-tips-gold-color);
  margin-left: 15px;
}

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

.page-fishing-games-tips__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--page-fishing-games-tips-text-secondary);
  line-height: 1.6;
}

.page-fishing-games-tips__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-fishing-games-tips__faq-item summary {
  list-style: none;
}

/* Conclusion Section */
.page-fishing-games-tips__conclusion-section {
  background-color: var(--page-fishing-games-tips-background);
  text-align: center;
}

.page-fishing-games-tips__cta-footer {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-tips__section-title {
    font-size: 2em;
  }
  .page-fishing-games-tips__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }
}

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

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

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

  .page-fishing-games-tips__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-fishing-games-tips__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
  }

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

  .page-fishing-games-tips__btn-primary,
  .page-fishing-games-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games-tips__container,
  .page-fishing-games-tips__section,
  .page-fishing-games-tips__card,
  .page-fishing-games-tips__strategy-item,
  .page-fishing-games-tips__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fishing-games-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-tips__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .page-fishing-games-tips__hero-image {
    border-radius: 0;
  }

  .page-fishing-games-tips__hero-section {
    padding-top: 10px !important;
  }

  .page-fishing-games-tips__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-fishing-games-tips__faq-answer {
    padding: 0 20px 15px;
  }
}