/* ============================================================
   KAREN MONROE MD – SHARED STYLESHEET
   ============================================================ */

:root {
  --green-900: #1b4332;
  --green-800: #2d6a4f;
  --green-700: #40916c;
  --green-500: #52b788;
  --green-300: #95d5b2;
  --green-100: #d8f3dc;
  --green-50:  #f0faf4;
  --white:     #ffffff;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-500:  #6b7280;
  --gray-700:  #374151;
  --gray-900:  #111827;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
  --shadow:    0 2px 8px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.12);
  --radius:    10px;
  --radius-lg: 16px;
  --max-w:     1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-500); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  background: var(--green-900);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.text-white {
	color: #ffffff !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-wrap img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-leaf {
  font-size: 2.4rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(82,183,136,.5));
}

.logo-text .name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.logo-text .tagline {
  font-size: 0.95rem;
  color: var(--green-300);
  line-height: 1.4;
}

/* Contact block */
.header-contact {
  text-align: right;
  font-size: 1rem;
  color: var(--green-100);
  line-height: 1.7;
}

.header-contact .phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  line-height: 1;
}

/* Nav */
.site-nav {
  background: var(--green-800);
  border-top: 1px solid rgba(255,255,255,.08);
}

.nav-list {
  display: flex;
  list-style: none;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  flex-wrap: wrap;
}

.nav-list a {
  display: block;
  color: var(--green-100);
  padding: 0.7rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* ============================================================
   HERO – HOME
   ============================================================ */

.hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 60%, #1a6b4a 100%);
  color: var(--white);
  padding: 4.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.6rem;
  position: relative;
}

.hero .sub {
  font-size: 1.15rem;
  color: var(--green-300);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}

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

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--white);
  padding: 2.75rem 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero p {
  color: var(--green-300);
  max-width: var(--max-w);
  margin: 0.5rem auto 0;
  font-size: 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 0.75rem 1.9rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--green-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(82,183,136,.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: 3.5rem 1.5rem;
}

.section-alt {
  background: var(--green-50);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--green-800);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title + .section-sub {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--green-500);
  margin: 0.5rem auto 2.5rem;
  border-radius: 2px;
}

/* ============================================================
   CARDS
   ============================================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform 0.22s, box-shadow 0.22s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.85rem;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green-800);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.93rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ============================================================
   ABOUT SECTION (HOME)
   ============================================================ */

.about-box {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--green-500);
}

.about-box p {
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-box p:last-child { margin-bottom: 0; }

/* ============================================================
   QUALIFYING CONDITIONS
   ============================================================ */

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  max-width: var(--max-w);
  margin: 0 auto 2rem;
}

.condition-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  box-shadow: var(--shadow);
}

.condition-item::before {
  content: '✓';
  color: var(--green-500);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.discretionary-group {
  max-width: var(--max-w);
  margin: 0 auto;
}

.disc-category {
  margin-bottom: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green-300);
}

.disc-category h4 {
  color: var(--green-800);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.disc-category p {
  color: var(--gray-700);
  font-size: 0.92rem;
}

.cta-box {
  text-align: center;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.cta-box h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: var(--green-300);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ============================================================
   TYPES & EFFECTS
   ============================================================ */

.strain-section {
  max-width: 900px;
  margin: 0 auto;
}

.strain-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.strain-row.two-col   { grid-template-columns: 1fr 1fr; }
.strain-row.one-col   { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
.strain-row.three-col { grid-template-columns: 1fr 1fr 1fr; }

.strain-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--green-500);
  background: var(--white);
  transition: transform 0.22s, box-shadow 0.22s;
}

.strain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.strain-card.sativa  { border-color: #f4a261; }
.strain-card.indica  { border-color: #7b2d8b; }
.strain-card.hybrid  { border-color: #2196f3; }
.strain-card.cbd     { border-color: #00897b; }
.strain-card.thc     { border-color: #e53935; }
.strain-card.balanced { border-color: #7e57c2; }

.strain-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.sativa  .strain-badge { background: #fff4e6; color: #c05621; }
.indica  .strain-badge { background: #f3e8f9; color: #6b21a8; }
.hybrid  .strain-badge { background: #e8f4fd; color: #1565c0; }
.cbd     .strain-badge { background: #e0f2f1; color: #00695c; }
.thc     .strain-badge { background: #ffebee; color: #b71c1c; }
.balanced .strain-badge { background: #ede7f6; color: #512da8; }

.strain-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}

.strain-card .strain-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  font-style: italic;
}

.effect-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  background: var(--green-50);
  color: var(--green-800);
  border: 1px solid var(--green-100);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
}

.section-divider {
  border: none;
  border-top: 2px dashed var(--gray-200);
  margin: 2.5rem auto;
  max-width: 900px;
}

/* Onset/Duration table */
.onset-table-wrap {
  max-width: 700px;
  margin: 0 auto;
  overflow-x: auto;
}

.onset-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.onset-table th {
  background: var(--green-800);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

.onset-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.onset-table tr:nth-child(even) td {
  background: var(--green-50);
}

/* ============================================================
   ANXIETY TEST
   ============================================================ */

.anxiety-intro {
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--gray-700);
  font-size: 1rem;
}

.gad7-wrap {
  max-width: 860px;
  margin: 0 auto;
  overflow-x: auto;
}

.gad7-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gad7-table thead tr {
  background: var(--green-800);
  color: var(--white);
}

.gad7-table thead th {
  padding: 1rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  border-right: 1px solid rgba(255,255,255,.15);
}

.gad7-table thead th:first-child {
  text-align: left;
  font-size: 0.88rem;
  width: 42%;
}

.gad7-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.15s;
}

.gad7-table tbody tr:last-child { border-bottom: none; }
.gad7-table tbody tr:nth-child(even) { background: var(--green-50); }
.gad7-table tbody tr:hover { background: var(--green-100); }

.gad7-table tbody td {
  padding: 0.9rem 0.75rem;
  text-align: center;
  border-right: 1px solid var(--gray-200);
  vertical-align: middle;
}

.gad7-table tbody td:first-child {
  text-align: left;
  font-size: 0.9rem;
  color: var(--gray-700);
  padding-left: 1.25rem;
}

.gad7-table tbody td label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 auto;
  border: 2px solid var(--gray-200);
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.18s;
}

.gad7-table tbody td input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.gad7-table tbody td input[type="radio"]:checked + label {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(64,145,108,.4);
}

.gad7-table tbody td:hover label {
  border-color: var(--green-500);
  color: var(--green-700);
}

/* Score display */
.score-panel {
  max-width: 860px;
  margin: 1.5rem auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 4px solid var(--green-500);
}

.score-number {
  text-align: center;
}

.score-number .num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
}

.score-number .label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.score-level {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--green-800);
  font-weight: 700;
}

.score-ranges {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 2;
}

.score-ranges span {
  display: block;
}

/* ============================================================
   PRICES
   ============================================================ */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-200);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
}


.price-card .price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.price-card .price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-card .price-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.price-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.discount-box {
  max-width: 540px;
  margin: 2rem auto 0;
  background: var(--green-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  border: 1px solid var(--green-100);
  text-align: center;
}

.discount-box h3 {
  font-family: var(--font-serif);
  color: var(--green-800);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.discount-box p {
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.7;
}

.state-fee-box {
  max-width: 540px;
  margin: 1.5rem auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  border: 2px solid var(--gray-200);
  text-align: center;
}

.state-fee-box p {
  color: var(--gray-700);
  font-size: 0.92rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--green-900);
  color: var(--green-300);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.8;
}

.site-footer p + p {
  margin-top: 0.4rem;
  color: rgba(149,213,178,.65);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
  }

  .header-contact {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list a {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .hero {
    padding: 3rem 1.25rem;
  }

  .strain-row.two-col,
  .strain-row.three-col {
    grid-template-columns: 1fr;
  }

  .score-panel {
    flex-direction: column;
    text-align: center;
  }

  .about-box {
    padding: 1.75rem 1.25rem;
  }
}

  .center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 50%; /* Prevents the image from overflowing mobile screens */
    height: auto;
  }
