/* style/game-guides-fishing-game-guide.css */

:root {
  --page-game-guides-fishing-game-guide-primary-color: #003366;
  --page-game-guides-fishing-game-guide-secondary-color: #FFD700;
  --page-game-guides-fishing-game-guide-text-light: #ffffff;
  --page-game-guides-fishing-game-guide-text-dark: #333333;
  --page-game-guides-fishing-game-guide-background-light: #f8f8f8;
  --page-game-guides-fishing-game-guide-background-dark: #002244;
  --page-game-guides-fishing-game-guide-border-color: #e0e0e0;
}

.page-game-guides-fishing-game-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-game-guides-fishing-game-guide-text-dark);
}

.page-game-guides-fishing-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-fishing-game-guide__hero-section {
  background: linear-gradient(135deg, var(--page-game-guides-fishing-game-guide-primary-color), #004d99);
  color: var(--page-game-guides-fishing-game-guide-text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-fishing-game-guide__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:ocean,abstract,waves]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-game-guides-fishing-game-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-game-guides-fishing-game-guide-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-game-guides-fishing-game-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-game-guides-fishing-game-guide__cta-button {
  display: inline-block;
  background-color: var(--page-game-guides-fishing-game-guide-secondary-color);
  color: var(--page-game-guides-fishing-game-guide-primary-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-game-guides-fishing-game-guide__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-game-guides-fishing-game-guide__cta-button--center {
  display: block;
  margin: 40px auto 20px auto;
}

.page-game-guides-fishing-game-guide__cta-button--secondary {
  background-color: var(--page-game-guides-fishing-game-guide-primary-color);
  color: var(--page-game-guides-fishing-game-guide-secondary-color);
  border: 2px solid var(--page-game-guides-fishing-game-guide-secondary-color);
}

.page-game-guides-fishing-game-guide__cta-button--secondary:hover {
  background-color: var(--page-game-guides-fishing-game-guide-background-dark);
  color: var(--page-game-guides-fishing-game-guide-secondary-color);
}

.page-game-guides-fishing-game-guide__content-section {
  padding: 60px 0;
}

.page-game-guides-fishing-game-guide__bg-light {
  background-color: var(--page-game-guides-fishing-game-guide-background-light);
}

.page-game-guides-fishing-game-guide__section-title {
  font-size: 2.5em;
  color: var(--page-game-guides-fishing-game-guide-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-guides-fishing-game-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-game-guides-fishing-game-guide-secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-guides-fishing-game-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--page-game-guides-fishing-game-guide-text-dark);
}

.page-game-guides-fishing-game-guide__text-block--highlight {
  font-weight: bold;
  color: var(--page-game-guides-fishing-game-guide-primary-color);
  text-align: center;
  font-size: 1.2em;
  padding: 20px;
  background-color: rgba(255, 215, 0, 0.1);
  border-left: 5px solid var(--page-game-guides-fishing-game-guide-secondary-color);
  margin: 40px 0;
}

.page-game-guides-fishing-game-guide__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-game-guides-fishing-game-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.2);
}

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

.page-game-guides-fishing-game-guide__card {
  background-color: var(--page-game-guides-fishing-game-guide-text-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-fishing-game-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides-fishing-game-guide__card-title {
  font-size: 1.8em;
  color: var(--page-game-guides-fishing-game-guide-primary-color);
  margin-bottom: 15px;
}

.page-game-guides-fishing-game-guide__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-game-guides-fishing-game-guide__card-text {
  font-size: 1em;
  color: var(--page-game-guides-fishing-game-guide-text-dark);
}

.page-game-guides-fishing-game-guide__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-game-guides-fishing-game-guide__feature-item {
  background-color: var(--page-game-guides-fishing-game-guide-text-light);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 51, 102, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-fishing-game-guide__feature-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 25px rgba(0, 51, 102, 0.2);
}

.page-game-guides-fishing-game-guide__feature-title {
  font-size: 1.6em;
  color: var(--page-game-guides-fishing-game-guide-primary-color);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--page-game-guides-fishing-game-guide-secondary-color);
  padding-bottom: 10px;
}

.page-game-guides-fishing-game-guide__feature-image {
  max-width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-guides-fishing-game-guide__feature-text {
  font-size: 1.05em;
  color: var(--page-game-guides-fishing-game-guide-text-dark);
  text-align: justify;
}

.page-game-guides-fishing-game-guide__step-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-game-guides-fishing-game-guide__step-list li {
  background-color: var(--page-game-guides-fishing-game-guide-text-light);
  border-left: 5px solid var(--page-game-guides-fishing-game-guide-primary-color);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: var(--page-game-guides-fishing-game-guide-text-dark);
}

.page-game-guides-fishing-game-guide__step-list li strong {
  color: var(--page-game-guides-fishing-game-guide-secondary-color);
}

.page-game-guides-fishing-game-guide__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-fishing-game-guide__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides-fishing-game-guide__hero-description {
    font-size: 1.1em;
  }
  .page-game-guides-fishing-game-guide__section-title {
    font-size: 2em;
  }
  .page-game-guides-fishing-game-guide__grid-2-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-game-guides-fishing-game-guide__hero-section {
    padding: 80px 0;
  }
  .page-game-guides-fishing-game-guide__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides-fishing-game-guide__hero-description {
    font-size: 1em;
  }
  .page-game-guides-fishing-game-guide__content-section {
    padding: 40px 0;
  }
  .page-game-guides-fishing-game-guide__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-fishing-game-guide__grid-3-col {
    grid-template-columns: 1fr;
  }
  .page-game-guides-fishing-game-guide__cta-button {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-game-guides-fishing-game-guide__cta-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-game-guides-fishing-game-guide__hero-section {
    padding: 60px 0;
  }
  .page-game-guides-fishing-game-guide__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides-fishing-game-guide__hero-description {
    font-size: 0.9em;
  }
  .page-game-guides-fishing-game-guide__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-game-guides-fishing-game-guide__section-title {
    font-size: 1.5em;
  }
  .page-game-guides-fishing-game-guide__text-block, .page-game-guides-fishing-game-guide__card-text, .page-game-guides-fishing-game-guide__feature-text {
    font-size: 0.95em;
  }
  .page-game-guides-fishing-game-guide__feature-title {
    font-size: 1.4em;
  }
  .page-game-guides-fishing-game-guide__step-list li {
    font-size: 1em;
    padding: 15px;
  }
}