/* Sprouted Minds Therapy - Shared styles */
:root {
  --bg-cream: #F8F8F4;
  --text-dark: #333333;
  --text-muted: #4A4A4A;
  --green-muted: #68856E;
  --green-button: #5E9661;
  --green-circle: #346134;
  --green-sprout: #A9C795;
  --white: #ffffff;
  --border-light: #e0e0dc;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Header – sticky, full width edge to edge, content centered */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 1.25rem 0;
  background: var(--bg-cream);
  box-shadow: 0 1px 0 var(--border-light);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
}

.brand img,
.brand .logo-svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand .logo-svg {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--green-muted);
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  background: var(--bg-cream);
  border-color: var(--green-muted);
  color: var(--green-muted);
}

.btn-primary {
  background: var(--green-button);
  color: var(--white);
  border-color: var(--green-button);
}

.btn-primary:hover {
  background: #528855;
  border-color: #528855;
  color: var(--white);
}

/* Hero – shorter height, leaf-bg.jpg with parallax */
.hero {
  position: relative;
  width: 100%;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 65vh;
  background-color: #F5F2EB;
  background-image: url("/leaf-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
  pointer-events: none;
}

.hero-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 65vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo-wrap {
  display: inline-block;
  background: rgba(255, 255, 255, 0.92);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.hero-logo-wrap .logo-svg {
  width: 100px;
  height: 100px;
  display: block;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.25rem;
}

.hero .tagline {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.5rem;
}

.hero .description {
  max-width: 520px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Full-width landing page sections – flush end to end, above hero parallax layer */
.section-full {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0;
  background: var(--bg-cream);
}

.section-full:first-of-type {
  padding-top: 4rem;
}

.section-full-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location .section-full-inner {
  max-width: none;
  padding: 0;
}

.location-header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  text-align: center;
}

.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 2rem;
}

/* Services slogan – below hero */
.services-slogan {
  padding: 2.5rem 0;
}

.slogan-text {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--green-muted);
  text-align: center;
  max-width: 720px;
  line-height: 1.5;
}

/* Therapist bio – card matches header/section content width (1200px) */
.therapist-bio .bio-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Archway cutout: semicircle top, straight sides and bottom */
.bio-photo {
  flex-shrink: 0;
  width: 220px;
  height: 300px;
  border-radius: 110px 110px 0 0;
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-photo-placeholder {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.bio-content {
  flex: 1;
  min-width: 0;
}

.bio-name {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin: 0 0 0.25rem;
}

.bio-credentials {
  font-size: 0.95rem;
  color: var(--green-muted);
  margin: 0 0 1rem;
}

.bio-text {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* Location – parallax leaf background + dark mask (clipped to section) */
.location {
  position: relative;
  background: transparent;
  overflow: hidden;
}

.location-bg {
  position: absolute;
  inset: 0;
  background-color: #F5F2EB;
  background-image: url("/leaf-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
  pointer-events: none;
}

.location-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.location .location-header,
.location .location-inner {
  position: relative;
  z-index: 2;
}

.location .section-title {
  color: #fff;
}

/* Location – card left, map right, flush section */
.location-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  width: 100%;
}

.location .location-card {
  flex: 1 1 320px;
  min-width: 0;
  background: var(--white);
  border-radius: 0;
  padding: 2rem;
  box-shadow: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-right: none;
}

.location .location-map {
  flex: 1 1 380px;
  min-width: 0;
  min-height: 320px;
  border-radius: 0;
  border: 1px solid var(--border-light);
}

.location-map iframe {
  min-height: 320px;
  height: 100%;
}

@media (max-width: 700px) {
  .location-row {
    flex-direction: column;
  }
  .location .location-card {
    border-right: 1px solid var(--border-light);
    border-bottom: none;
    text-align: center;
  }
  .location .location-map {
    min-height: 280px;
  }
}

.location-city {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  color: var(--green-muted);
  margin: 0 0 0.5rem;
}

.location-address {
  color: var(--text-dark);
  font-size: 1.05rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.location-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}

.location-card .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

@media (max-width: 700px) {
  .location-card .btn {
    align-self: center;
  }
}

/* Page titles (about, contact) */
.page-header {
  text-align: center;
  padding: 2rem 1rem 3rem;
}

.page-header h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}

.page-header .subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* About page content */
.content-section {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.content-section h2 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin: 2rem 0 0.75rem;
}

.content-section p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

/* Contact form */
.contact-form {
  max-width: 480px;
  margin: 0 auto 3rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn-primary {
  width: 100%;
  padding: 0.75rem;
}

.contact-info {
  max-width: 480px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-info h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.contact-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-info a {
  color: var(--green-button);
  text-decoration: none;
}

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

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--green-muted);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
