/* purpose.css - Styles for the Purpose page (formerly story.css) */

/* Base Purpose Page Styles */
.purpose-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.purpose-section p {
  text-align: justify;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
}

.page-title {
  font-size: 1.5em;
  font-weight: 200;
  letter-spacing: 0.5rem;
  margin-top: 0;
  margin-bottom: 2.4em;
  opacity: 0.9;
}

.purpose-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; /* Normal weight for desktop */
  text-align: left;
  margin-top: 1em;
  margin-bottom: 0;
  font-size: 1.3em;
}

/* Scrollable content */
.scrollable-content {
  max-height: 60vh;
  overflow-y: scroll;
  padding: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollable-content::-webkit-scrollbar {
  display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .purpose-section {
    padding: 1rem;
    color: #000 !important; /* Black text for mobile */
  }
  .page-title {
    font-size: 1.2em;
  }
  .purpose-section p {
    font-size: 0.8rem;
  }
  .purpose-section h2 {
    font-size: 1.1em;
    font-weight: 700; /* Bold */
    text-align: center; /* Centered */
    color: #000 !important;
  }
}

@media (max-width: 480px) {
  .purpose-section {
    padding: 1rem;
    color: #000 !important;
  }
  .page-title {
    font-size: 1.2em;
  }
  .purpose-section p {
    font-size: 0.75rem;
  }
  .purpose-section h2 {
    font-size: 1em;
    font-weight: 700;
    text-align: center;
    color: #000 !important;
  }
}

@media (max-width: 400px) {
  .purpose-section {
    padding: 1rem;
    color: #000 !important;
  }
  .purpose-section h2 {
    font-size: 0.95em;
    font-weight: 700;
    text-align: center;
    color: #000 !important;
  }
}
