/* style/resources.css */

/* Base styles for the page-resources scope */
.page-resources {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Inherited from body, explicit for clarity */
}

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

.page-resources__section {
  padding: 80px 0;
  text-align: center;
}

.page-resources__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-resources__section-title--small {
  font-size: 2.2em;
}

.page-resources__sub-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: #017439; /* Brand color for sub-titles on light background */
}

.page-resources__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources__paragraph--centered {
  text-align: center;
}

.page-resources__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-resources__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-resources__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #017439;
  font-weight: bold;
}

/* Color schemes based on body background (#1a1a2e - dark) */
.page-resources__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-resources__dark-bg .page-resources__section-title {
  color: #ffffff;
}

.page-resources__dark-bg .page-resources__sub-title {
  color: #ffffff;
}

.page-resources__dark-bg .page-resources__paragraph {
  color: #f0f0f0;
}

.page-resources__dark-bg .page-resources__list-item {
  color: #f0f0f0;
}

.page-resources__dark-bg a {
  color: #f0f0f0;
}

.page-resources__dark-bg a:hover {
  color: #017439;
}

.page-resources__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources__light-bg .page-resources__section-title {
  color: #333333;
}

.page-resources__light-bg .page-resources__sub-title {
  color: #017439;
}

.page-resources__light-bg .page-resources__paragraph {
  color: #555555;
}

.page-resources__light-bg .page-resources__list-item {
  color: #555555;
}

.page-resources__light-bg a {
  color: #017439;
}

.page-resources__light-bg a:hover {
  color: #005f2e;
}

/* Hero Section */
.page-resources__hero-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px; /* Adjusted padding-top for header offset */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  min-height: 600px;
  background-color: #1a1a2e; /* Ensure dark background for hero */
}

.page-resources__hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
  box-sizing: border-box;
}

.page-resources__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}