/* style/nh.css */

/* Global styles for the page-nh scope */
.page-nh {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
}

/* Ensure headings and strong tags inherit or are set to Text Main */
.page-nh h1,
.page-nh h2,
.page-nh h3,
.page-nh strong {
  color: #FFF1E8;
}

/* Section styling */
.page-nh__section {
  padding: 60px 20px;
  max-width: 100%; /* Ensure sections are full width by default */
  box-sizing: border-box;
}

/* Container for content within sections */
.page-nh__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Add some horizontal padding */
  box-sizing: border-box;
}

.page-nh__container--center {
  text-align: center;
}

/* Section titles */
.page-nh__section-title {
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  color: #F3C54D; /* Gold for main titles */
}

/* Hero Section */
.page-nh__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  /* Fixed header spacing: body handles padding-top, this is a small decorative top margin */
  padding-top: 10px;
  background-color: #140C0C; /* Ensure hero section has background */
}

.page-nh__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-nh__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-nh__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-nh__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-nh__hero-content h1 {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive H1, no fixed huge font size */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #F3C54D; /* Gold for H1 */
}

.page-nh__hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF1E8;
}

/* CTA Buttons */
.page-nh__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #ffffff; /* White text for contrast on button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-nh__cta-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-nh__cta-button--small {
    padding: 12px 30px;
    font-size: 16px;
}

.page-nh__cta-button--large {
    padding: 18px 50px;
    font-size: 20px;
}

.page-nh__cta-button--secondary {
    background: #6A1E1E; /* Deep Red for secondary button */
    color: #FFF1E8;
    border: 1px solid #6A1E1E;
}

.page-nh__cta-button--secondary:hover {
    background: #7E0D0D; /* Slightly darker Deep Red on hover */
    filter: none;
}

.page-nh__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Image wrappers */
.page-nh__image-wrapper {
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-nh__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Grid layout for cards */
.page-nh__grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-nh__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-nh__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Card styling */
.page-nh__card {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-nh__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-nh__card-title {
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 15px;
  color: #F3C54D; /* Gold for card titles */
}

.page-nh__card p {
  color: #FFF1E8;
}

.page-nh__card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 5px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce min image size */
}

/* Lists */
.page-nh__list,
.page-nh__ordered-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-nh__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #FFF1E8;
}

.page-nh__list-item::before {
  content: '✓'; /* Checkmark icon */
  position: absolute;
  left: 0;
  color: #F3C54D; /* Gold checkmark */
  font-weight: bold;
  font-size: 1.2em;
}

.page-nh__ordered-list .page-nh__list-item::before {
  content: counter(list-item) '.'; /* Numbered list */
  counter-increment: list-item;
  color: #F3C54D; /* Gold number */
  font-weight: bold;
  font-size: 1.2em;
}

/* FAQ Section */
.page-nh__faq-list {
  margin-top: 40px;
}

details.page-nh__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #2A1212; /* Card BG */
  color: #FFF1E8;
}
details.page-nh__faq-item summary.page-nh__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F3C54D; /* Gold for FAQ question */
  font-weight: bold;
}
details.page-nh__faq-item summary.page-nh__faq-question::-webkit-details-marker {
  display: none;
}
details.page-nh__faq-item summary.page-nh__faq-question:hover {
  background: #3a1a1a; /* Slightly lighter Card BG on hover */
}
.page-nh__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: inherit; /* Inherit color from summary */
}
.page-nh__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F3C54D; /* Gold for toggle icon */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-nh__faq-item .page-nh__faq-answer {
  padding: 0 20px 20px;
  background: #1e0e0e; /* Slightly different background for answer */
  border-radius: 0 0 5px 5px;
  color: #FFF1E8;
}

/* Call to Action at the bottom */
.page-nh__call-to-action {
    background-color: #140C0C; /* Ensure dark background */
    padding: 80px 20px;
    text-align: center;
}

.page-nh__call-to-action .page-nh__section-title {
    color: #F3C54D;
    margin-bottom: 20px;
}

.page-nh__call-to-action p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF1E8;
}


/* Responsive styles */
@media (max-width: 1024px) {
  .page-nh__section-title {
    font-size: 2.5em;
  }
  .page-nh__hero-content h1 {
    font-size: clamp(2em, 4vw, 3em);
  }
}

@media (max-width: 768px) {
  .page-nh__section {
    padding: 40px 15px;
  }
  .page-nh__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-nh__hero-content h1 {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-nh__hero-content p {
    font-size: 1em;
  }
  .page-nh__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-top: 15px;
  }
  .page-nh__cta-group {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px; /* Add padding to group itself */
  }
  .page-nh__cta-group .page-nh__cta-button {
    margin-top: 0; /* Remove individual button margin-top when in group */
  }

  .page-nh__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-nh__grid {
    grid-template-columns: 1fr;
  }
  .page-nh__card {
    padding: 20px;
  }
  .page-nh__card-title {
    font-size: 1.5em;
  }
  .page-nh__faq-question {
    padding: 15px;
  }
  .page-nh__faq-qtext {
    font-size: 1em;
  }
  .page-nh__faq-answer {
    padding: 0 15px 15px;
  }

  /* Images responsive */
  .page-nh img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-nh__image-wrapper,
  .page-nh__card,
  .page-nh__container,
  .page-nh__section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* Removed padding-left/right here as it's handled by .page-nh__container */
  }
  .page-nh__image-wrapper {
    padding: 0 15px; /* Add padding for image wrapper if not directly in container */
  }
  .page-nh__list-item {
    padding-left: 25px;
  }
  .page-nh__list-item::before,
  .page-nh__ordered-list .page-nh__list-item::before {
    font-size: 1em;
  }
}

/* Ensure no small images */
.page-nh img {
    min-width: 200px;
    min-height: 200px;
}
/* Override for specific elements that might be smaller, if necessary, but generally avoid */
.page-nh__faq-toggle {
    min-width: 28px;
    min-height: 28px;
}