/* style/resources-fishing-game-strategy-guide.css */

/* Biến CSS cho màu sắc */
:root {
  --page-primary-color: #007bff;
  --page-secondary-color: #ffc107;
  --page-text-color: #333;
  --page-light-text-color: #fff;
  --page-background-color: #f8f9fa;
  --page-card-background: #fff;
  --page-border-color: #e9ecef;
  --page-dark-blue: #0056b3;
  --page-dark-gold: #b38705;
}

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

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

.page-resources-fishing-game-strategy-guide__hero {
  position: relative;
  background: linear-gradient(135deg, var(--page-primary-color) 0%, #0056b3 100%); /* Darker blue for better contrast */
  color: var(--page-light-text-color);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  min-height: 450px;
}

.page-resources-fishing-game-strategy-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-resources-fishing-game-strategy-guide__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: var(--page-light-text-color);
  line-height: 1.2;
}

.page-resources-fishing-game-strategy-guide__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-resources-fishing-game-strategy-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-resources-fishing-game-strategy-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--page-border-color);
}

.page-resources-fishing-game-strategy-guide__section:last-of-type {
  border-bottom: none;
}

.page-resources-fishing-game-strategy-guide__section-title {
  font-size: 2.5em;
  color: var(--page-dark-blue);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-fishing-game-strategy-guide__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-fishing-game-strategy-guide__section ul,
.page-resources-fishing-game-strategy-guide__section ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-resources-fishing-game-strategy-guide__section li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-resources-fishing-game-strategy-guide__card {
  background-color: var(--page-card-background);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-resources-fishing-game-strategy-guide__card-title {
  font-size: 1.6em;
  color: var(--page-primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-fishing-game-strategy-guide__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-top: 20px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-resources-fishing-game-strategy-guide__full-width-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-resources-fishing-game-strategy-guide__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-resources-fishing-game-strategy-guide__button--primary {
  background-color: var(--page-secondary-color);
  color: var(--page-dark-gold);
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-resources-fishing-game-strategy-guide__button--primary:hover {
  background-color: #e0a800; /* Darker gold */
  color: var(--page-light-text-color);
  transform: translateY(-2px);
}

.page-resources-fishing-game-strategy-guide__button--secondary {
  background-color: var(--page-primary-color);
  color: var(--page-light-text-color);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.page-resources-fishing-game-strategy-guide__button--secondary:hover {
  background-color: var(--page-dark-blue);
  transform: translateY(-2px);
}

.page-resources-fishing-game-strategy-guide__button--tertiary {
  background-color: transparent;
  color: var(--page-primary-color);
  border: 2px solid var(--page-primary-color);
}

.page-resources-fishing-game-strategy-guide__button--tertiary:hover {
  background-color: var(--page-primary-color);
  color: var(--page-light-text-color);
  transform: translateY(-2px);
}

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

.page-resources-fishing-game-strategy-guide__cta {
  background-color: var(--page-primary-color);
  color: var(--page-light-text-color);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-resources-fishing-game-strategy-guide__cta .page-resources-fishing-game-strategy-guide__section-title {
  color: var(--page-light-text-color);
}

.page-resources-fishing-game-strategy-guide__cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-resources-fishing-game-strategy-guide__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-resources-fishing-game-strategy-guide__cta .page-resources-fishing-game-strategy-guide__container > * {
  position: relative;
  z-index: 1;
}

.page-resources-fishing-game-strategy-guide__highlight {
  color: var(--page-secondary-color);
}

.page-resources-fishing-game-strategy-guide__ordered-list li strong {
  color: var(--page-primary-color);
}

.page-resources-fishing-game-strategy-guide__unordered-list li strong {
  color: var(--page-primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-fishing-game-strategy-guide__title {
    font-size: 2.5em;
  }
  .page-resources-fishing-game-strategy-guide__section-title {
    font-size: 2em;
  }
  .page-resources-fishing-game-strategy-guide__hero {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-resources-fishing-game-strategy-guide__title {
    font-size: 2em;
  }
  .page-resources-fishing-game-strategy-guide__subtitle {
    font-size: 1.2em;
  }
  .page-resources-fishing-game-strategy-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-fishing-game-strategy-guide__section {
    padding: 40px 0;
  }
  .page-resources-fishing-game-strategy-guide__button {
    padding: 12px 24px;
    font-size: 1em;
  }
  .page-resources-fishing-game-strategy-guide__button-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .page-resources-fishing-game-strategy-guide__hero {
    padding: 40px 0;
    min-height: 350px;
  }
  .page-resources-fishing-game-strategy-guide__title {
    font-size: 1.8em;
  }
  .page-resources-fishing-game-strategy-guide__subtitle {
    font-size: 1em;
  }
  .page-resources-fishing-game-strategy-guide__section-title {
    font-size: 1.5em;
  }
  .page-resources-fishing-game-strategy-guide__card {
    padding: 20px;
  }
  .page-resources-fishing-game-strategy-guide__card-title {
    font-size: 1.4em;
  }
  .page-resources-fishing-game-strategy-guide__section p,
  .page-resources-fishing-game-strategy-guide__section li {
    font-size: 0.95em;
  }
}