/* style/resources-taya999-beginner-guide.css */

.page-resources-taya999-beginner-guide {
  color: #333333; /* Dark text on light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-taya999-beginner-guide__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Primary background for hero */
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-resources-taya999-beginner-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.page-resources-taya999-beginner-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  line-height: 1.2;
}

.page-resources-taya999-beginner-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-taya999-beginner-guide__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-resources-taya999-beginner-guide__hero-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-resources-taya999-beginner-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3; /* Subtly blend background image */
}

.page-resources-taya999-beginner-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-taya999-beginner-guide__content-area {
  max-width: 800px; /* Optimal reading width for articles */
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-resources-taya999-beginner-guide__article-wrapper {
  padding: 0;
}

.page-resources-taya999-beginner-guide__intro-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #555555;
}

.page-resources-taya999-beginner-guide__section-title {
  font-size: 2em;
  color: #000000; /* Primary color for headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-taya999-beginner-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-resources-taya999-beginner-guide__list li {
  margin-bottom: 10px;
}

.page-resources-taya999-beginner-guide__action-button {
  display: inline-block;
  background-color: #000000; /* Primary color for action buttons */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 30px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-taya999-beginner-guide__action-button:hover {
  background-color: #333333;
}

.page-resources-taya999-beginner-guide__action-button--final {
  background-color: #FCBC45; /* Emphasize final CTA */
  color: #000000;
  font-size: 1.2em;
  padding: 18px 35px;
}

.page-resources-taya999-beginner-guide__action-button--final:hover {
  background-color: #e0a53b;
}

.page-resources-taya999-beginner-guide__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-taya999-beginner-guide__image-container {
  text-align: center;
}

.page-resources-taya999-beginner-guide__text-link {
  color: #000000;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-resources-taya999-beginner-guide__text-link:hover {
  color: #FCBC45;
}

.page-resources-taya999-beginner-guide__related-resources {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
}

.page-resources-taya999-beginner-guide__related-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-resources-taya999-beginner-guide__related-list {
  list-style-type: none;
  padding: 0;
}

.page-resources-taya999-beginner-guide__related-list li {
  margin-bottom: 10px;
}

.page-resources-taya999-beginner-guide__related-list a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-taya999-beginner-guide__related-list a:hover {
  color: #FCBC45;
  text-decoration: underline;
}

.page-resources-taya999-beginner-guide__back-link-wrapper {
  margin-top: 50px;
  text-align: center;
}

.page-resources-taya999-beginner-guide__back-link {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border: 1px solid #000000;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-resources-taya999-beginner-guide__back-link:hover {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-taya999-beginner-guide__hero-title {
    font-size: 2em;
  }

  .page-resources-taya999-beginner-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-taya999-beginner-guide__content-area {
    padding: 30px 15px;
  }

  .page-resources-taya999-beginner-guide__section-title {
    font-size: 1.7em;
  }

  .page-resources-taya999-beginner-guide__hero-image-wrapper {
    opacity: 0.2; /* Reduce opacity further on mobile for better text readability */
  }

  /* Ensure content images are responsive and not smaller than 200px display */
  .page-resources-taya999-beginner-guide__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min display width */
    min-height: 200px; /* Enforce min display height */
  }

  .page-resources-taya999-beginner-guide__hero-section {
    padding-top: var(--header-offset, 80px);
  }
}

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

  .page-resources-taya999-beginner-guide__hero-button,
  .page-resources-taya999-beginner-guide__action-button,
  .page-resources-taya999-beginner-guide__action-button--final {
    padding: 12px 20px;
    font-size: 1em;
  }
}