/* style/newbie-guide.css */

:root {
  --jbo-primary-color: #11A84E;
  --jbo-secondary-color: #22C768;
  --jbo-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --jbo-card-bg: #11271B;
  --jbo-background-color: #08160F;
  --jbo-text-main: #F2FFF6;
  --jbo-text-secondary: #A7D9B8;
  --jbo-border-color: #2E7A4E;
  --jbo-glow-color: #57E38D;
  --jbo-gold-color: #F2C14E;
  --jbo-divider-color: #1E3A2A;
  --jbo-deep-green: #0A4B2C;
}

.page-newbie-guide {
  font-family: 'Arial', sans-serif;
  color: var(--jbo-text-main); /* Default text color for the page */
  background-color: var(--jbo-background-color); /* Default background color for the page */
}

.page-newbie-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-newbie-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.page-newbie-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-newbie-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}