:root {
    --spring-wood: #FEFDFD;
    --locust: #ECEFE7;
    --dark-locust: #828D6E;
    --cod-grey: #141414;
    --chetwode-blue: #E8EDF7;
    --ecru-white: #F7F7EB;
  }
  
  html {
    scroll-behavior: smooth;
  }

  .bg-dark-locust{
    background-color: var(--dark-locust);
  }

  .bg-cod-grey{
    background-color: var(--cod-grey);
  }

  .bg-locust{
    background-color: var(--locust);
  }

  .bg-grey{
    background-color: #474747;
  }


  /* page-header.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Internal page header - shorter version of hero */
.page-header-container {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  display: flex;
  align-items: center;
}

.page-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 0; /* Less padding than hero */
  padding-left: 1.1rem; /* Add left padding to shift content right */
  /* OR use margin-left if you prefer */
  /* margin-left: 2rem; */
}

.page-header-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  z-index: 1;
}

/* Title styling for page headers */
.page-header-container h1 {
  color: white;
  font-weight: 400;
  font-size: 3.5rem; /* Smaller than hero */
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header-container p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 60ch;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Mobile responsive for page headers */
@media (max-width: 768px) {
  .page-header-container {
    min-height: 300px; /* Slightly smaller container on tablets */
  }
  
  .page-header-content {
    padding-left: 1rem; /* Less right shift on mobile for more space */
  }
  
  .page-header-container h1 {
    font-size: 2.5rem; /* Increased from 2rem - adjust this for title size */
    line-height: 1.15; /* Tighter line height for mobile */
  }
  
  .page-header-container p {
    font-size: 1.125rem; /* Increased from 0.9375rem - adjust this for subtitle size */
    line-height: 1.4; /* Better readability on mobile */
    max-width: none; /* Allow full width on mobile */
  }
}

@media (max-width: 480px) {
  .page-header-container {
    min-height: 250px; /* Even smaller container on phones */
  }
  
  .page-header-content {
    padding-left: 0.5rem; /* Minimal right shift on small screens */
  }
  
  .page-header-container h1 {
    font-size: 3rem; /* Increased from 1.75rem - main title on small phones */
  }
  
  .page-header-container p {
    font-size: 1.25rem; /* Increased subtitle size for small phones */
    line-height: 1.5; /* Comfortable reading on small screens */
  }
}