/* style/poker-strategy-guide.css */

/* Base Styles */
.page-poker-strategy-guide {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensures content clears fixed header */
}

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

/* Hero Section */
.page-poker-strategy-guide__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A192F; /* Dark background for hero */
  color: #ffffff; /* Light text for dark hero background */
  padding: 80px 0; /* Adjust padding as needed for content */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-poker-strategy-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly dim the background image for text readability */
  z-index: 1;
}

.page-poker-strategy-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.page-poker-strategy-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-poker-strategy-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-poker-strategy-guide__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-poker-strategy-guide__hero-button:hover {
  background-color: #e0b800; /* Slightly darker gold on hover */
}

/* Section Styling */
.page-poker-strategy-guide__introduction-section,
.page-poker-strategy-guide__variants-section,
.page-poker-strategy-guide__preflop-section,
.page-poker-strategy-guide__postflop-section,
.page-poker-strategy-guide__advanced-techniques-section,
.page-poker-strategy-guide__bankroll-section,
.page-poker-strategy-guide__tournament-section,
.page-poker-strategy-guide__psychology-section,
.page-poker-strategy-guide__responsible-gaming-section,
.page-poker-strategy-guide__why-phjoy68-section,
.page-poker-strategy-guide__faq-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-poker-strategy-guide__introduction-section {
  background-color: #fcfcfc;
}

.page-poker-strategy-guide__section-title {
  font-size: 2.5em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-poker-strategy-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
}

.page-poker-strategy-guide__subsection-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-poker-strategy-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* Card Grid */
.page-poker-strategy-guide__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-poker-strategy-guide__card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker-strategy-guide__card:hover {
  transform: translateY(-5px);
}

.page-poker-strategy-guide__card-title {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-poker-strategy-guide__card-link {
  color: #0A192F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-poker-strategy-guide__card-link:hover {
  color: #FFD700;
}

.page-poker-strategy-guide__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too wide in cards */
  height: auto;
  min-height: 200px; /* Minimum image size */
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.page-poker-strategy-guide__card-text {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

/* Lists */
.page-poker-strategy-guide__list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-poker-strategy-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* General Buttons */
.page-poker-strategy-guide__button {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  background-color: #0A192F;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-poker-strategy-guide__button:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-poker-strategy-guide__button--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-poker-strategy-guide__button--primary:hover {
  background-color: #e0b800;
  color: #0A192F;
}

/* Content Images */
.page-poker-strategy-guide__content-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* No filter property to change colors */
}

/* FAQ Section */
.page-poker-strategy-guide__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 25px;
}

.page-poker-strategy-guide__faq-question {
  font-size: 1.4em;
  color: #0A192F;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-poker-strategy-guide__faq-answer {
  font-size: 1.1em;
  color: #555555;
  display: none;
}

.page-poker-strategy-guide__faq-answer a {
  color: #0A192F;
  text-decoration: underline;
}

.page-poker-strategy-guide__faq-answer a:hover {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker-strategy-guide__hero-title {
    font-size: 3em;
  }
  .page-poker-strategy-guide__hero-description {
    font-size: 1.2em;
  }
  .page-poker-strategy-guide__section-title {
    font-size: 2em;
  }
  .page-poker-strategy-guide__subsection-title {
    font-size: 1.6em;
  }
  .page-poker-strategy-guide__paragraph,
  .page-poker-strategy-guide__list-item,
  .page-poker-strategy-guide__card-text,
  .page-poker-strategy-guide__faq-answer {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-poker-strategy-guide__hero-section {
    padding: 60px 0;
  }
  .page-poker-strategy-guide__hero-title {
    font-size: 2.5em;
  }
  .page-poker-strategy-guide__hero-description {
    font-size: 1em;
  }
  .page-poker-strategy-guide__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-poker-strategy-guide__section-title {
    font-size: 1.8em;
  }
  .page-poker-strategy-guide__subsection-title {
    font-size: 1.4em;
  }
  .page-poker-strategy-guide__card-grid {
    grid-template-columns: 1fr;
  }
  .page-poker-strategy-guide__container {
    padding: 0 15px;
  }
  /* Ensure all content images are responsive and not too small */
  .page-poker-strategy-guide__content-image,
  .page-poker-strategy-guide__card-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images on mobile */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-poker-strategy-guide__hero-title {
    font-size: 2em;
  }
  .page-poker-strategy-guide__section-title {
    font-size: 1.5em;
  }
  .page-poker-strategy-guide__subsection-title {
    font-size: 1.2em;
  }
  .page-poker-strategy-guide__faq-question {
    font-size: 1.2em;
  }
}