/* style/resources-nohu-90-beginner-guide.css */

/* Base styles for the page content */
.page-resources-nohu-90-beginner-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

/* Hero Section */
.page-resources-nohu-90-beginner-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-nohu-90-beginner-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-nohu-90-beginner-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-nohu-90-beginner-guide__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-resources-nohu-90-beginner-guide__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-nohu-90-beginner-guide__hero-description {
  font-size: 1.3em;
  color: #f0f0f0; /* Slightly off-white for description */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-nohu-90-beginner-guide__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Content Sections */
.page-resources-nohu-90-beginner-guide__content-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for content sections */
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-resources-nohu-90-beginner-guide__content-section:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.03); /* Alternate background for readability */
}

.page-resources-nohu-90-beginner-guide__padding-top-offset {
  padding-top: var(--header-offset, 120px);
}

.page-resources-nohu-90-beginner-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-resources-nohu-90-beginner-guide__subsection-title {
  font-size: 1.8em;
  color: #8B0000; /* Dark red for sub-section titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-nohu-90-beginner-guide__paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 15px;
  text-align: justify;
}

.page-resources-nohu-90-beginner-guide__list,
.page-resources-nohu-90-beginner-guide__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-nohu-90-beginner-guide__ordered-list {
  list-style-type: decimal;
}

.page-resources-nohu-90-beginner-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* Buttons */
.page-resources-nohu-90-beginner-guide__btn-primary,
.page-resources-nohu-90-beginner-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow word breaking */
}