/* style/beginner-guide.css */

/* --- General Styles --- */
.page-beginner-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Inherited from body or set explicitly for consistency */
}

.page-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-beginner-guide__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-beginner-guide__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-beginner-guide__sub-title {
  font-size: 1.8em;
  color: #017439; /* Brand color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide__text-block p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-beginner-guide__highlight {
  color: #FFFF00; /* Yellow highlight for keywords */
  font-weight: bold;
}

.page-beginner-guide__text-link {
  color: #FFFF00; /* Yellow for text links */
  text-decoration: underline;
}

.page-beginner-guide__text-link:hover {
  color: #ffffff;
}

/* --- Section Backgrounds --- */
.page-beginner-guide__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-beginner-guide__light-bg {
  background-color: #f5f5f5; /* Light background for contrast sections */
  color: #333333;
}

.page-beginner-guide__light-bg .page-beginner-guide__section-title,
.page-beginner-guide__light-bg .page-beginner-guide__section-description,
.page-beginner-guide__light-bg .page-beginner-guide__text-block p,
.page-beginner-guide__light-bg .page-beginner-guide__text-link,
.page-beginner-guide__light-bg .page-beginner-guide__highlight {
  color: #333333; /* Dark text for light backgrounds */
}

.page-beginner-guide__light-bg .page-beginner-guide__sub-title {
  color: #017439;
}

/* --- Buttons --- */
.page-beginner-guide__btn-primary,
.page-beginner-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-beginner-guide__btn-primary {
  background-color: #C30808; /* Red for primary CTA */
  color: #FFFF00; /* Yellow text for primary CTA */
  border: 2px solid #C30808;
}

.page-beginner-guide__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
  color: #ffffff;
}

.page-beginner-guide__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Yellow text for secondary CTA */
  border: 2px solid #FFFF00;
}

.page-beginner-guide__btn-secondary:hover {
  background-color: #FFFF00;
  color: #C30808;
}

.page-beginner-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-beginner-guide__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* --- Hero Section --- */
.page-beginner-guide__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}