/* style/blog-momo-no-hu-strategy.css */

/* Base styles */
.page-blog-momo-no-hu-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color from custom palette */
  background-color: var(--bg-color); /* Default background color from custom palette */
}

.page-blog-momo-no-hu-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-momo-no-hu-strategy__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--gold-color); /* Gold color for section titles */
  letter-spacing: 1px;
}

.page-blog-momo-no-hu-strategy__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-main-color); /* Main text color */
}

.page-blog-momo-no-hu-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-main-color); /* Main text color */
}

/* Color palette application */
.page-blog-momo-no-hu-strategy__dark-bg {
  background-color: var(--bg-color); /* #08160F */
  color: var(--text-main-color); /* #F2FFF6 */
}

.page-blog-momo-no-hu-strategy__light-bg {
  background-color: var(--card-bg-color); /* #11271B */
  color: var(--text-main-color); /* #F2FFF6 */
}

/* Hero Section */
.page-blog-momo-no-hu-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for aesthetic */
  text-align: center;
  overflow: hidden;
}

.page-blog-momo-no-hu-strategy__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-momo-no-hu-strategy__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-momo-no-hu-strategy__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-momo-no-hu-strategy__main-title {
  font-size: 3em;
  font-weight: 800;
  color: var(--gold-color); /* Gold for H1 */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-momo-no-hu-strategy__lead-text {
  font-size: 1.3em;
  color: var(--text-secondary-color); /* Secondary text color */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-blog-momo-no-hu-strategy__btn-primary,
.page-blog-momo-no-hu-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-momo-no-hu-strategy__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button gradient */
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-momo-no-hu-strategy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
  opacity: 0.9;
}

.page-blog-momo-no-hu-strategy__btn-secondary {
  background-color: transparent;
  color: var(--glow-color); /* Glow color for secondary text */
  border: 2px solid var(--glow-color); /* Glow color for border */
  box-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-blog-momo-no-hu-strategy__btn-secondary:hover {
  background-color: var(--glow-color);
  color: var(--bg-color); /* Text color changes to dark on hover */
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
  transform: translateY(-3px);
}

/* Content Images */
.page-blog-momo-no-hu-strategy__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
  object-fit: cover;
}

.page-blog-momo-no-hu-strategy__image-with-margin {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Sections */
.page-blog-momo-no-hu-strategy__introduction-section,
.page-blog-momo-no-hu-strategy__beginner-guide-section,
.page-blog-momo-no-hu-strategy__strategy-section,
.page-blog-momo-no-hu-strategy__advanced-tips-section,
.page-blog-momo-no-hu-strategy__safety-section,
.page-blog-momo-no-hu-strategy__faq-section {
  padding: 60px 0;
}

/* FAQ Section */
.page-blog-momo-no-hu-strategy__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-momo-no-hu-strategy__faq-item {
  background-color: var(--card-bg-color); /* Card BG */
  border: 1px solid var(--border-color); /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-blog-momo-no-hu-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--deep-green-color); /* Deep Green */
  color: var(--text-main-color);
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-blog-momo-no-hu-strategy__faq-question:hover {
  background-color: #0c5a38;
}

.page-blog-momo-no-hu-strategy__faq-qtext {
  flex-grow: 1;
}

.page-blog-momo-no-hu-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-momo-no-hu-strategy__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-momo-no-hu-strategy__faq-answer p {
  padding-top: 15px;
  padding-bottom: 15px;
  color: var(--text-secondary-color);
  font-size: 1em;
}

.page-blog-momo-no-hu-strategy__faq-item[open] .page-blog-momo-no-hu-strategy__faq-answer {
  max-height: 2000px; /* Sufficiently large value */
  padding-bottom: 25px;
}

/* Details summary reset */
.page-blog-momo-no-hu-strategy__faq-item summary {
  list-style: none;
}

.page-blog-momo-no-hu-strategy__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-momo-no-hu-strategy__main-title {
    font-size: 2.5em;
  }

  .page-blog-momo-no-hu-strategy__section-title {
    font-size: 2em;
  }

  .page-blog-momo-no-hu-strategy__sub-title {
    font-size: 1.5em;
  }

  .page-blog-momo-no-hu-strategy__paragraph {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-blog-momo-no-hu-strategy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-momo-no-hu-strategy__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .page-blog-momo-no-hu-strategy__hero-section,
  .page-blog-momo-no-hu-strategy__introduction-section,
  .page-blog-momo-no-hu-strategy__beginner-guide-section,
  .page-blog-momo-no-hu-strategy__strategy-section,
  .page-blog-momo-no-hu-strategy__advanced-tips-section,
  .page-blog-momo-no-hu-strategy__safety-section,
  .page-blog-momo-no-hu-strategy__faq-section {
    padding: 40px 0;
  }

  .page-blog-momo-no-hu-strategy__hero-content {
    margin-top: 20px;
  }

  .page-blog-momo-no-hu-strategy__main-title {
    font-size: 2em;
  }

  .page-blog-momo-no-hu-strategy__lead-text {
    font-size: 1.1em;
  }

  .page-blog-momo-no-hu-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-momo-no-hu-strategy__sub-title {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-momo-no-hu-strategy__paragraph {
    font-size: 0.95em;
  }

  .page-blog-momo-no-hu-strategy__btn-primary,
  .page-blog-momo-no-hu-strategy__btn-secondary,
  .page-blog-momo-no-hu-strategy a[class*="button"],
  .page-blog-momo-no-hu-strategy a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .page-blog-momo-no-hu-strategy__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, small top padding */
  }

  .page-blog-momo-no-hu-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-momo-no-hu-strategy__hero-image-wrapper,
  .page-blog-momo-no-hu-strategy__video-section,
  .page-blog-momo-no-hu-strategy__video-container,
  .page-blog-momo-no-hu-strategy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-momo-no-hu-strategy__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-momo-no-hu-strategy__faq-answer p {
    font-size: 0.9em;
    padding-left: 0;
    padding-right: 0;
  }
}