@charset "utf-8";
/* CSS Document */
/* BASIC RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #273326;
  background-color: #f4f5f2;
  line-height: 1.6;
}

/* LAYOUT HELPERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER */
.site-header {
  background-color: #c5d2c3;
  border-bottom: 1px solid #a6b5a4;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #879785;
  background-color: #e4ebe1;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: #273326;
}

.logo-text h1 {
  margin: 0;
  font-size: 2.4rem;
  font-family: 'Allura', cursive;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.5px;
  text-shadow: 0.3px 0.3px 0 #4a2d12;
}

.tagline {
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
  color: #4b5a4b;
}

/* NAV */
.main-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #273326;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background-color: #879785;
  color: #f4f5f2;
}

/* HERO */
.hero {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(135deg, #f4f5f2 0%, #d6dfd4 60%, #f4f5f2 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.hero-text h2 {
  font-size: 2rem;
  margin-top: 0.2rem;
  margin-bottom: 0.75rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: #617261;
}

.service-area {
  margin-top: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: #4d604d;
}

.btn-primary {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background-color: #6b8269;
  color: #f8faf7;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background-color: #5a6f58;
  transform: translateY(-1px);
}

.hero-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #4b5a4b;
}

.hero-image {
  border-radius: 1rem;
  border: 1px dashed #a6b5a4;
  background-color: #e4ebe1;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

/* SECTIONS */
.section {
  padding: 2.5rem 0;
}

.section-alt {
  background-color: #e9eee7;
}

.section h3 {
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* TWO COLUMN */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 2rem;
}

/* CARDS */
.highlight-card {
  background-color: #f4f7f2;
  border-radius: 0.9rem;
  border: 1px solid #c1cec0;
  padding: 1.25rem;
}

.highlight-card h4 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.highlight-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-card li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

/* CARD GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.card {
  background-color: #f4f7f2;
  border-radius: 0.9rem;
  border: 1px solid #c1cec0;
  padding: 1.25rem;
}

.card h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0;
  font-size: 0.95rem;
}

/* CONTACT SECTION */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: flex-start;
}

.local-note {
  background-color: #e4ebe1;
  padding: 0.6rem 0.9rem;
  margin: 0.8rem 0 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: #415241;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.contact-list a {
  color: #364636;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* FORM */
.contact-form-wrapper {
  background-color: #f4f7f2;
  border-radius: 0.9rem;
  border: 1px solid #c1cec0;
  padding: 1.25rem;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 0.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.45rem 0.5rem;
  border-radius: 0.4rem;
  border: 1px solid #bcc9ba;
  background-color: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #879785;
  border-color: #879785;
}

/* FOOTER */
.site-footer {
  background-color: #c5d2c3;
  border-top: 1px solid #a6b5a4;
  padding: 0.9rem 0;
  font-size: 0.85rem;
  text-align: center;
}

.footer-note {
  color: #4b5a4b;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .header-inner,
  .hero-inner,
  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 2.25rem;
  }
}

.cta-center {
  text-align: center;
  margin-top: 1.5rem;
}

.cta-center .btn-primary {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.hero-phone {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.logo-img {
  height: 80px;   /* adjust this size until it looks perfect */
  width: auto;    /* keeps proportions correct */
  margin-right: 12px;  /* nice spacing between logo and text */
}

/* Brown color for logo text */
.logo-text h1,
.logo-text .tagline {
  color: #4a2d12;  /* warm birthing-doula-appropriate brown */
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo {
  width: 100%;
  max-width: 320px;   /* good size for desktop */
  height: auto;
  border-radius: 12px; /* soft corners */
  object-fit: cover;
}

/* Honeypot field: hide from humans */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
