:root {
  /* Brand colours (from your gradient) */
  --color-brand-yellow: #F3A60D;
  --color-brand-cyan: #55BFF9;
  --color-brand-lilac: #BDACCF;

  --color-primary: #111827;
  --color-muted: #6B7280;
  --color-bg: #ffffff;
  --color-border: #E5E7EB;

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.10);
  --radius-lg: 22px;
  --radius-md: 12px;
}

/* Global reset / base */

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

body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-primary);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Typography */

h1,
h2,
h3,
h4 {
  font-family: "Instrument Serif", serif;
  color: var(--color-primary);
}

p {
  font-size: 0.98rem;
}
.nav-logo-text {
  font-family: "Instrument Serif", serif !important;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
/* Layout: header, nav, footer */

.site-header {
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  background-color: #ffffffcc;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 38px;
  width: 38px;
  border-radius: 50%;
}

.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--color-primary);
  font-weight: 500;
}

.nav-links a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  background-image: linear-gradient(135deg, var(--color-brand-yellow), var(--color-brand-cyan), var(--color-brand-lilac));
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  text-decoration: none;
}

.btn-outline {
  background: #ffffff;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: #f9fafb;
}

/* Hero */

/* Hero background section */
.hero {
  padding: 0;
}

.hero-bg {
  background: linear-gradient(90deg, #ead393, #8fb9ff);
  padding: 80px 0;
}

/* Content wrapper — THIS FIXES YOUR ALIGNMENT */
.hero-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: #eef0ff;
  padding: 8px 16px;
  border-radius: 14px;
  font-family: Inter, sans-serif;
  color: #5d62d5;
  font-size: 14px;
  margin-bottom: 24px;
}

/* Heading — Instrument Serif */
.hero-title {
  font-family: "Instrument Serif", serif;
  font-size: 56px;
  line-height: 1.12;
  font-weight: 400;
  color: #1b1b1b;
  margin-bottom: 18px;
}

/* Subtitle — Quicksand */
.hero-subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 22px;
  max-width: 640px;
}

/* Meta small points */
.hero-meta {
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  color: #444;
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.btn {
  background: linear-gradient(90deg, #ffdf94, #87b6ff);
  color: #fff;
  padding: 14px 24px;
  border-radius: 14px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid #111;
  color: #111;
}

/* Note */
.hero-note {
  font-family: "Quicksand", sans-serif;
  font-size: 15px;
  color: #5a5a5a;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .hero-title {
    font-size: 38px;
  }
  .hero-actions {
    flex-direction: column;
  }
}

/* Sections */

.section {
  padding: 32px 0;
}

.section-header {
  margin-bottom: 18px;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 6px;
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--color-muted);
}

/* Cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  border: 1px solid var(--color-border);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.card p {
  margin: 0 0 10px;
  font-size: 0.94rem;
  color: var(--color-muted);
}

.card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Two-column content */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

/* Info list */

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.info-list li {
  margin-bottom: 6px;
}

/* FAQ */

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 12px 14px;
  margin-bottom: 8px;
  background-color: #ffffff;
}

.faq-item h4 {
  margin: 0 0 4px;
  font-size: 0.96rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 18px 0 24px;
  font-size: 0.8rem;
  color: var(--color-muted);
  background-color: #ffffff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

/* Therapists page */

.therapists-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.therapist-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  font-size: 0.9rem;
}

.therapist-name {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.therapist-title {
  font-size: 0.86rem;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.therapist-meta {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background-image: linear-gradient(135deg, var(--color-brand-yellow), var(--color-brand-cyan));
  font-size: 0.75rem;
  color: #0f172a;
  margin-bottom: 8px;
}

/* Book page */

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.booking-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.form-field {
  margin-bottom: 12px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(85, 191, 249, 0.4);
  border-color: var(--color-brand-cyan);
}

.form-field textarea {
  min-height: 80px;
  resize: vertical;
}

.helper-text {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.time-slot {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  font-size: 0.8rem;
  cursor: pointer;
  background-color: #f9fafb;
}

.time-slot input {
  margin-right: 4px;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid,
  .two-column,
  .therapists-grid,
  .booking-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .therapists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding: 32px 0 28px;
  }

  .hero-grid {
    padding: 22px 20px;
  }
}

@media (max-width: 640px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .therapists-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-title {
    font-size: 1.8rem;
  }
}
/* Resources page layout */
.resources-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.resources-hero h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.resources-hero p {
  margin-bottom: 24px;
  color: #4b5563;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.resource-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 16px;
  text-decoration: none;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: inherit;
}

.resource-card h2 {
  font-size: 18px;
  margin-bottom: 8px;
}

.resource-card p {
  font-size: 14px;
  color: #4b5563;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}
/* Smooth scroll for TOC links */
html {
  scroll-behavior: smooth;
}

/* Table of Contents */
.toc {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 16px 20px;
  margin: 20px 0 30px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.toc h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.toc ul {
  margin: 0;
  padding-left: 18px;
}

.toc ul li {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.toc a {
  color: var(--color-primary);
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}
/* ============= HERO CLEAN VERSION ============= */

/* Gradient background */
.hero {
  background: linear-gradient(135deg, #f18d16, #ada3ff);
  padding: 80px 0 70px;
  text-align: center; 
}

/* Centered container */
.container.hero-grid {
  max-width: 780px;
  margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: #eef0ff;
  padding: 10px 22px;
  border-radius: 16px;
  font-family: "Quicksand", sans-serif;
  color: #4f4cbf;
  font-size: 15px;
  margin-bottom: 32px;
}

/* Heading */
.hero-title {
  font-family: "Instrument Serif", serif;
  font-size: 64px;
  line-height: 1.12;
  font-weight: 400;
  color: #141414;
  margin-bottom: 22px;
}

/* Subtitle */
.hero-subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 22px;
  line-height: 1.7;
  color: #373737;
  max-width: 650px;
  margin: 0 auto 30px;
}

/* Checkmark points */
.hero-meta {
  font-family: "Quicksand", sans-serif;
  font-size: 17px;
  color: #3f3f3f;
  justify-content: center;
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

/* Buttons row */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

/* Primary button */
.hero-actions .btn {
  font-family: "Quicksand", sans-serif !important;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 16px;
}

/* Outline button */
.hero-actions .btn-outline {
  font-family: "Quicksand", sans-serif !important;
  border: 2px solid #141414;
}

/* Note */
.hero-note {
  font-family: "Quicksand", sans-serif;
  font-size: 15px;
  color: #4e4e4e;
  max-width: 620px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 640px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-actions {
    flex-direction: column;
  }
}
/* ===== FINAL HERO OVERRIDE ===== */

.hero {
  background: linear-gradient(135deg, #f18d16, #ada3ff) !important;
  padding: 0 !important;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 20px 70px;
  text-align: center;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: #eef0ff;
  padding: 10px 22px;
  border-radius: 16px;
  font-family: "Quicksand", sans-serif !important;
  color: #4f4cbf;
  font-size: 15px;
  margin-bottom: 32px;
}

/* Heading */
.hero-title {
  font-family: "Instrument Serif", serif !important;
  font-size: 64px;
  line-height: 1.12;
  font-weight: 400;
  color: #141414;
  margin-bottom: 22px;
}

/* Subtitle */
.hero-subtitle {
  font-family: "Quicksand", sans-serif !important;
  font-size: 22px;
  line-height: 1.7;
  color: #373737;
  max-width: 650px;
  margin: 0 auto 30px;
}

/* Meta points */
.hero-meta {
  font-family: "Quicksand", sans-serif !important;
  font-size: 17px;
  color: #3f3f3f;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

/* Buttons row */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

/* Buttons use Quicksand (override global .btn) */
.hero-actions .btn,
.hero-actions .btn-outline {
  font-family: "Quicksand", sans-serif !important;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 16px;
}

/* Outline border */
.hero-actions .btn-outline {
  border: 2px solid #141414;
}

/* Note */
.hero-note {
  font-family: "Quicksand", sans-serif !important;
  font-size: 15px;
  color: #4e4e4e;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

/* Mobile */
@media (max-width: 640px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-actions {
    flex-direction: column;
  }
}
