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

/* Biến CSS */
:root {
  --page-fishing-games-guide-primary-color: #0A2239;
  --page-fishing-games-guide-secondary-color: #FFD700;
  --page-fishing-games-guide-text-light: #F8F8F8;
  --page-fishing-games-guide-text-dark: #333333;
  --page-fishing-games-guide-background-light: #FFFFFF;
  --page-fishing-games-guide-background-dark: #1a3a5a;
}

/* Thiết lập chung cho trang */
.page-fishing-games-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-fishing-games-guide-text-dark);
  background-color: var(--page-fishing-games-guide-background-light);
}

.page-fishing-games-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-fishing-games-guide__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-fishing-games-guide__section:nth-of-type(even) {
  background-color: var(--page-fishing-games-guide-background-dark);
  color: var(--page-fishing-games-guide-text-light);
}

.page-fishing-games-guide__section:nth-of-type(even) .page-fishing-games-guide__section-title,
.page-fishing-games-guide__section:nth-of-type(even) h3 {
  color: var(--page-fishing-games-guide-secondary-color);
}

.page-fishing-games-guide__section:nth-of-type(even) p,
.page-fishing-games-guide__section:nth-of-type(even) li {
  color: var(--page-fishing-games-guide-text-light);
}

.page-fishing-games-guide__section:nth-of-type(even) a {
  color: var(--page-fishing-games-guide-secondary-color);
}

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

.page-fishing-games-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-fishing-games-guide-secondary-color);
  border-radius: 2px;
}

.page-fishing-games-guide p {
  margin-bottom: 1em;
  font-size: 1.1em;
  text-align: justify;
}

.page-fishing-games-guide a {
  color: var(--page-fishing-games-guide-primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games-guide a:hover {
  color: var(--page-fishing-games-guide-secondary-color);
}

/* Hero Section */
.page-fishing-games-guide__hero {
  background: linear-gradient(135deg, var(--page-fishing-games-guide-primary-color) 0%, #2a4a6e 100%);
  color: var(--page-fishing-games-guide-text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-fishing-games-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--page-fishing-games-guide-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-guide__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-fishing-games-guide__hero-description a {
  color: var(--page-fishing-games-guide-secondary-color);
  font-weight: bold;
}

.page-fishing-games-guide__hero-description a:hover {
  text-decoration: underline;
}

.page-fishing-games-guide__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-fishing-games-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.page-fishing-games-guide__btn--primary {
  background-color: var(--page-fishing-games-guide-secondary-color);
  color: var(--page-fishing-games-guide-primary-color);
  border: 2px solid var(--page-fishing-games-guide-secondary-color);
}

.page-fishing-games-guide__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games-guide__btn--secondary:hover {
  background-color: var(--page-fishing-games-guide-secondary-color);
  color: var(--page-fishing-games-guide-primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Image Styles */
.page-fishing-games-guide__img-full-width {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Step List */
.page-fishing-games-guide__step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-fishing-games-guide__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-fishing-games-guide__section--getting-started .page-fishing-games-guide__step-item h3 {
  color: var(--page-fishing-games-guide-primary-color);
  margin-top: 15px;
  font-size: 1.4em;
}

.page-fishing-games-guide__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

/* Lists */
.page-fishing-games-guide__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-fishing-games-guide__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-fishing-games-guide__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--page-fishing-games-guide-secondary-color);
  font-weight: bold;
}

.page-fishing-games-guide__list--styled li::before {
  content: '★'; /* Change bullet for styled list */
}

/* Grid for tips/strategies */
.page-fishing-games-guide__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-fishing-games-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-fishing-games-guide__card h3 {
  color: var(--page-fishing-games-guide-primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

/* FAQ Section */
.page-fishing-games-guide__faq-item {
  background-color: var(--page-fishing-games-guide-background-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-fishing-games-guide__faq-item h3 {
  color: var(--page-fishing-games-guide-primary-color);
  font-size: 1.3em;
  margin-top: 0;
  cursor: pointer;
  position: relative;
}

.page-fishing-games-guide__faq-item p {
  font-size: 1em;
  color: var(--page-fishing-games-guide-text-dark);
  margin-top: 10px;
  padding-left: 0;
}

.page-fishing-games-guide__faq-item a {
  color: var(--page-fishing-games-guide-primary-color);
}

/* Call to Action at the end */
.page-fishing-games-guide__call-to-action {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

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

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

  .page-fishing-games-guide__grid-3-cols {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games-guide__hero-title {
    font-size: 2.2em;
  }

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

  .page-fishing-games-guide__hero-actions {
    flex-direction: column;
  }

  .page-fishing-games-guide__btn {
    width: 80%;
    margin: 0 auto 15px auto;
  }

  .page-fishing-games-guide__section {
    padding: 40px 0;
  }

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

  .page-fishing-games-guide__step-list,
  .page-fishing-games-guide__grid-3-cols {
    grid-template-columns: 1fr;
  }
  
  .page-fishing-games-guide__call-to-action {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-guide__hero-title {
    font-size: 1.8em;
  }

  .page-fishing-games-guide__hero-description {
    font-size: 0.95em;
  }

  .page-fishing-games-guide__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-fishing-games-guide__section-title {
    font-size: 1.5em;
  }

  .page-fishing-games-guide p,
  .page-fishing-games-guide li {
    font-size: 0.95em;
  }
}