:root {
  /* colors */
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #6b7280;
  --brand: #0b7b7b;       /* teal brand */
  --ring: #e5e7eb;
  --link: #0b7b7b;
  --grey-green: #849c8b;

  /* layout */
  --container: 1200px;
  --gutter: 16px;

  /* accents */
  --pastel-green: #e6f5ec;            /* pastel green background */
  --deep-green: #0a6a6a;              /* headings inside cards */
  --brand-tint: color-mix(in srgb, var(--brand) 8%, white);
  --brand-tint-border: color-mix(in srgb, var(--brand) 20%, var(--ring));
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: var(--bg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  text-align: center;
}

/* WIDER CONTAINER */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== STICKY NAVIGATION ===== */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 1002; /* above banner overlay */
  display: block;
}

.site-nav {
  backdrop-filter: saturate(150%) blur(6px);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  border-bottom: 1px solid var(--ring);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0;
}

/* ===== BRAND (logo + text) ===== */
.site-nav .brand {
  display: flex;             /* horizontal logo + text */
  flex-direction: row;
  align-items: center;       /* vertical center */
  gap: 10px;

  text-decoration: none;
  line-height: 1.2;
  font-family: 'Quintessential', cursive;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--deep-green);
  letter-spacing: 0.5px;
  transition: color .25s ease;
}
.site-nav .brand:hover { color: var(--brand); }

.nav-logo {
  height: 50px;              /* fits inside nav bar */
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  justify-content: center;   /* centers text next to logo */
}

.site-nav .brand-sub {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ===== NAV LINKS ===== */
.site-nav .links a {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 6px; /* less rounded default */
  transition: color .25s ease, background-color .25s ease, border-radius .25s ease;
}
.site-nav .links a:hover {
  color: var(--deep-green);
  background-color: var(--pastel-green);
  border-radius: 6px; /* adjust here for sharpness */
}
.site-nav .links a.active {
  color: var(--brand);
  background-color: color-mix(in srgb, var(--pastel-green) 70%, white);
  border-radius: 6px; /* matches hover style */
  font-weight: 600;
}

/* ===== HEADERS / MAIN ===== */
header.page-header { padding: 32px 0 8px; }
header.page-header h1 { margin: 0 0 8px; }
header.page-header p.lede { margin: 0; color: var(--muted); font-size: 105%; }
main { padding: 16px 0 48px; }
section + section { margin-top: 24px; }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--ring);
  padding: 24px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ===== LISTS ===== */
ul, ol {
  list-style-position: inside;
  padding-left: 0;
  margin: 0 auto;
  text-align: center;
}
ul.tight {
  list-style-position: inside;
  padding-left: 0;
  margin: 8px auto 0;
  text-align: left;
  max-width: 280px;
}

a { color: var(--link); }

/* ========= FULL-WIDTH HERO ========= */
.banner-img {
  width: 100vw;
  min-height: 36vh; /* reduced height */
  display: flex;
  position: relative;
  margin: 0;
  z-index: 0;
}

/* Second full-bleed banner inside a .container */
.second-banner-img {
  width: 100vw;
  min-height: 16vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;   /* ensure left alignment */
  position: relative;
  margin: 0;
  z-index: 0;

  background: url("images/Office1.jpeg") no-repeat center 40%;
  background-size: cover;

  background-color: rgba(0, 0, 0, 0.45);
  background-blend-mode: darken;

  margin-left: 50%;
  transform: translateX(-50%);

  font-family: 'Quintessential', cursive;
  font-size: clamp(1.5rem, 4vw, 4rem);
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

/* Default: offset left */
.second-banner-img .banner-text {
  margin-left: -40%;
  text-align: left;
  position: relative;
}

/* Tablet and below: center text */
@media (max-width: 900px) {
  .second-banner-img .banner-text {
    margin-left: 0;
    text-align: center;
  }
}

/* Shared banner polish */
.banner-companion,
.second-banner-img {
  display: flex;                  /* enables flexbox */
  justify-content: center;        /* center horizontally */
  align-items: center;            /* center vertically */
  color: #fff;                    /* white text */
  font-size: 2rem;                /* scale up so it’s visible */
  font-weight: 600;               /* bold for clarity */
  text-align: center;             /* centered multiline */
}

/* Left overlay panel */
.banner-overlay {
  flex: 1.2;
  background: var(--grey-green);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 60px;
  text-align: left;
}

/* Wrapper for title + subheading */
.banner-copy {
  align-self: flex-end;
  max-width: 80%;
  text-align: left;
}

.banner-copy h1 {
  font-family: 'Quintessential', cursive;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.4px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.55);
  margin: 0 0 12px;
}

.banner-copy .lede {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
}

/* Right panel (future portrait) */
.banner-companion {
  flex: 0.8;
  background: url("images/Dr_Doreen1.jpeg") no-repeat center 40%;
  background-size: cover;
}

/* ===== DIVIDER ===== */
hr {
  margin: 50px auto 0;
  width: 70%;
  height: 1px;
  background-color: lightgrey;
  border: none;
}

/* ======= SERVICES GRID / CARDS ======= */
.services-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: var(--pastel-green);
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 380px;
  margin: 0 auto;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--deep-green);
}
.service-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* Custom check icons for lists */
.service-card ul.tight {
  list-style: none;
  padding-left: 0;
}
.service-card ul.tight li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
}
.service-card ul.tight li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #0b7b7b; /* brand green circle */
  color: #fff;         /* white check */
  font-size: 0.75rem;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========= UTILITIES ========= */
.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ===== Billing components ===== */
.soft-note { color: var(--muted); margin: 6px 0 18px; }

.payer-badges { gap: 12px; }
.pill{
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--ring);
  border-radius: 999px;
  background: #f9fafb;
  font-size: 0.95rem;
}

.info-card, .notice-card, .help-card{
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin: 16px auto;
  max-width: 900px;
}
.notice-card{
  background: var(--brand-tint);
  border-color: var(--brand-tint-border);
}
.help-card{ background: #f8fafc; }
.info-card h3 { margin-top: 0; color: var(--brand); }

/* Simple responsive grid utilities */
.grid{ display: grid; gap: 20px; }
.grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4{ grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px){
  .grid-4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3, .grid-2{ grid-template-columns: 1fr; }
}

/* ===== FAQ accordions ===== */
.faq{
  text-align: left;
  max-width: 900px;
  margin: 12px auto;
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 10px;
  padding: 10px 14px;
}
.faq > summary{
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}
.faq > summary::-webkit-details-marker{ display: none; }
.faq[open]{ box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.faq p{ margin: 10px 0 0; }

/* ===== Buttons ===== */
.btn{
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ring);
  text-decoration: none;
  color: var(--text);
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,0,0,0.08); }
.btn-primary{
  background: var(--brand);
  color: #fff;
  border-color: color-mix(in srgb, var(--brand) 60%, var(--ring));
}

/* ===== Contact page ===== */
.contact-wrap{ align-items: start; }
.contact-card ul.tight { margin-top: 8px; }

.form-card h3 { color: var(--brand); }
.contact-form { text-align: left; max-width: 700px; margin: 0 auto; }
.form-row { margin-bottom: 14px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 700px){ .form-row.two-col { grid-template-columns: 1fr; } }

label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--muted);
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--ring);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  outline: none;
  background: #fff;
  transition: box-shadow .15s ease, border-color .15s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: color-mix(in srgb, var(--brand) 55%, var(--ring));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, #ffffff);
}
.form-actions {
  display: flex; gap: 10px; align-items: center; margin-top: 10px; justify-content: center;
}

/* optional map stripe */
.map-stripe { background: #f6f8fb; padding: 24px 0; }

/* ===== Full-width Health Divider (CSS-only circle + cross) ===== */
.health-divider{
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  height: 44px;
}
.health-divider::before,
.health-divider::after{
  content:"";
  position: absolute;
  top: 50%;
  width: calc(50% - 28px);
  border-top: 2px solid var(--ring);
  transform: translateY(-50%);
}
.health-divider::before{ left: 0; }
.health-divider::after { right: 0; }
.health-divider__icon{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -55%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pastel-green);
  border: 2px solid var(--deep-green);
  display: inline-block;
}
.health-divider__icon::before,
.health-divider__icon::after{
  content:"";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--deep-green);
  transform: translate(-50%, -50%);
  border-radius: 0;
}
.health-divider__icon::before{ width: 4px; height: 18px; }
.health-divider__icon::after { width: 18px; height: 4px; }

.vine-divider{
  border:none;width:1000px;height:40px;margin:3rem auto;background:none;position:relative
}
.vine-divider::before{
  content:"";display:block;width:100%;height:100%;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 40' preserveAspectRatio='none'><path d='M0 20 C150 0,200 40,350 20 S550 0,700 20 S850 40,1000 20' stroke='%230b7b7b' stroke-width='2' fill='none' stroke-linecap='round'/><ellipse cx='150' cy='10' rx='6' ry='3' fill='%230b7b7b' transform='rotate(-20 150 10)'/><ellipse cx='550' cy='10' rx='6' ry='3' fill='%230b7b7b' transform='rotate(15 550 10)'/><ellipse cx='950' cy='10' rx='6' ry='3' fill='%230b7b7b' transform='rotate(-10 950 10)'/><g stroke='%230b7b7b' stroke-width='2'><line x1='350' y1='24' x2='350' y2='32'/><line x1='346' y1='28' x2='354' y2='28'/><line x1='750' y1='24' x2='750' y2='32'/><line x1='746' y1='28' x2='754' y2='28'/></g></svg>") center/contain no-repeat
}

/* ===== ABOUT PHOTO ===== */
.about-photo {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
}
.profile-photo {
  width: 320px;
  height: 400px;
  border-radius: 20px;
  background: url("images/Dr_Doreen3.jpeg") no-repeat center top;
  background-size: cover;
  border: 4px solid var(--pastel-green);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-photo:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* ===== FOOTER CREDITS ===== */
.footer-credits {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-credits a {
  color: var(--brand);
  text-decoration: none;
}
.footer-credits a:hover {
  color: var(--deep-green);
  text-decoration: underline;
}

.tebra-scheduling iframe {
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.coming-soon-box {
  display: flex;
  align-items: center;
  border: 1px solid #dce3eb;
  border-radius: 12px;
  padding: 20px;
  margin-top: 1em;
  background: linear-gradient(270deg,
    #fbd5fc,
    #d1d5ff,
    #d2f9f8,
    #e0ffd9,
    #fff7cc,
    #fbd5fc);
  background-size: 1200% 1200%;
  animation: gradientShift 20s ease infinite;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.coming-soon-box:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.coming-soon-icon {
  font-size: 1.8em;
  margin-right: 15px;
  color: #555;
}

.coming-soon-text {
  font-size: 1.05em;
  color: #333;
  line-height: 1.4;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


