/* 
   Psychotherapist Website Styles - Marva Johnson
   A clean, calming design for an Ontario-based therapy practice
*/

:root {
  /* Color palette - soft, calming colors */
  --primary-color: #5a7d7c; /* Muted teal */
  --secondary-color: #dec5a1; /* Warm beige */
  --accent-color: #e78963; /* Soft coral */
  --dark-color: #333333;
  --light-color: #f9f7f3;
  --text-color: #444444;
  --light-text: #f9f7f3;
  --section-padding: 5rem 2rem;
}

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

body {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Skip to Content (Accessibility) */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-to-content:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 15px;
  background: var(--primary-color);
  color: var(--light-text);
  z-index: 10000;
  font-weight: bold;
}

/* Header */
header {
  background-color: rgba(249, 247, 243, 0.95);
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

.logo span {
  color: var(--accent-color);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-button {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 0.7rem 1.5rem;
  border-radius: 3px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background-color: var(--accent-color);
  color: var(--light-text);
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1513065200622-9a226a3c7adc?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 80px;
  text-align: left;
}

/* Split hero: warm light background, client-first text beside a portrait.
   Drops the dark stock-photo overlay so the palette (teal/beige/coral) reads
   warm and the coral CTA pops. */
.hero--split {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--light-color) 0%, #f3ede2 55%, var(--secondary-color) 140%);
  padding-top: 96px;
  padding-bottom: 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero--split .hero-content {
  max-width: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
  transform: none;
  animation: fadeIn 1s ease-in;
}

.hero-portrait {
  animation: fadeIn 1.2s ease-in;
}

.hero-portrait img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(90, 125, 124, 0.25);
  display: block;
  margin-left: auto;
}

.hero-content {
  max-width: 600px;
  padding: 2.5rem;
  background-color: rgba(249, 247, 243, 0.9);
  border-radius: 5px;
  transform: translateY(2rem);
  animation: fadeIn 1s ease-in;
}

.hero h1 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.hero--split h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.hero-credential {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--accent-color);
  font-size: 1.05rem !important;
  margin-bottom: 0.75rem !important;
  letter-spacing: 0.2px;
}

.hero-sub {
  color: var(--text-color);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-primary-button {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 0.8rem 2rem;
  border-radius: 3px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-primary-button:hover {
  background-color: var(--accent-color);
}

.hero-secondary-button {
  background-color: transparent;
  color: var(--primary-color);
  padding: 0.8rem 2rem;
  border-radius: 3px;
  font-weight: 500;
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
}

.hero-secondary-button:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

/* Ontario-specific notices */
.ontario-disclaimer {
  margin-top: 1.5rem;
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-left: 3px solid var(--accent-color);
  font-size: 0.9rem;
}

.ontario-authorization {
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  background-color: var(--light-color);
  border-left: 3px solid var(--primary-color);
}

/* Services Section */
.services {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--accent-color);
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.service-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.service-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* About Section */
.about {
  padding: var(--section-padding);
  background-color: white;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  color: var(--primary-color);
}

.about-content .credentials {
  margin: 2rem 0;
  padding: 1rem;
  background-color: var(--light-color);
  border-left: 3px solid var(--accent-color);
}

.about-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-content ul li {
  margin-bottom: 0.5rem;
}

/* About Page specific */
.about-image-container {
  margin: 2rem 0;
  text-align: center;
}

.about-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* Insurance & Fees Section */
.insurance-fees {
  padding: var(--section-padding);
  background-color: var(--light-color);
  text-align: center;
}

.fee-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.fee-card {
  background-color: white;
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  width: 300px;
  transition: all 0.3s ease;
}

.fee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fee-card h3 {
  color: var(--primary-color);
}

.fee-card .fee {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-color);
  margin: 1rem 0;
}

/* Testimonials Section */
.testimonials {
  padding: var(--section-padding);
  background-color: var(--primary-color);
  color: var(--light-text);
}

.testimonials h2 {
  text-align: center;
  color: var(--light-text);
  margin-bottom: 3rem;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 5px;
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 500;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--light-text);
  transform: scale(1.3);
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--light-text);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-button:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.slider-button.prev {
  left: -50px;
}

.slider-button.next {
  right: -50px;
}

.crpo-disclaimer {
  margin-top: 2rem;
  text-align: center;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  padding: var(--section-padding);
  background-color: var(--light-color);
  text-align: center;
}

.cta h2 {
  color: var(--primary-color);
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Page Headers */
.service-hero {
  min-height: 320px;          /* fixed, sensible banner height */
  max-height: 420px;          /* never balloon on tall / 4K screens */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 110px;         /* clears the fixed header */
  padding-bottom: 40px;       /* breathing room so the next section doesn't crowd */
  text-align: center;
}

/* Space between the hero and whatever section follows it */
.service-hero + section {
  padding-top: 2.5rem;
}

.service-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(249, 247, 243, 0.85);
}

.service-hero h1 {
  color: var(--primary-color);
}

/* Service Content */
.service-content {
  padding: 4rem 2rem;
}

.service-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.service-main h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.service-main h3 {
  color: var(--dark-color);
  margin: 2rem 0 1rem;
}

.service-sidebar {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 5px;
  align-self: start;
}

.sidebar-section {
  margin-bottom: 2rem;
}

.sidebar-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.sidebar-section ul {
  list-style: none;
}

.sidebar-section ul li {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-section ul li:last-child {
  border-bottom: none;
}

.office-hours {
  list-style: none;
}

.office-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-quote {
  background-color: rgba(90, 125, 124, 0.1);
  border-left: 3px solid var(--primary-color);
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.quote-attribution {
  margin-top: 1rem;
  text-align: right;
  font-style: normal;
  font-weight: 500;
}

.service-cta {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 1.5rem;
  border-radius: 5px;
  text-align: center;
}

.service-cta h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

.service-cta-button {
  background-color: var(--accent-color);
  color: var(--light-text);
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.service-cta-button:hover {
  background-color: var(--light-text);
  color: var(--accent-color);
}

/* Teletherapy Page */
.platform-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.platform-card {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: 5px;
}

.platform-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Privacy & Accessibility Pages */
.privacy-content,
.accessibility-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.privacy-intro,
.accessibility-intro {
  margin-bottom: 3rem;
}

.privacy-section,
.accessibility-section {
  margin-bottom: 2.5rem;
}

.privacy-section h3,
.accessibility-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.privacy-section ul,
.accessibility-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.privacy-section ul li,
.accessibility-section ul li {
  margin-bottom: 0.5rem;
}

.last-updated {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
}

.accessibility-links {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: var(--light-color);
  border-radius: 5px;
}

.accessibility-links ul {
  margin-left: 1.5rem;
}

.accessibility-links ul li {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--light-text);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-info {
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: var(--light-text);
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-nav h4 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 0.5rem;
}

.footer-nav ul li a {
  color: var(--light-text);
  opacity: 0.8;
}

.footer-nav ul li a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.footer-contact h4 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.contact-info {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--light-text);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  color: var(--light-text);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  /* Split hero stacks: portrait first (top), then text */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero--split h1 {
    font-size: 2.1rem;
  }

  .hero-portrait {
    order: -1;
  }

  .hero-portrait img {
    max-width: 300px;
    margin: 0 auto;
  }

  .hero--split .hero-buttons {
    justify-content: center;
  }

  .about-container {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    grid-row: 1;
  }
  
  .service-details {
    grid-template-columns: 1fr;
  }
  
  .service-sidebar {
    margin-top: 2rem;
  }
  
  .slider-button.prev {
    left: -20px;
  }
  
  .slider-button.next {
    right: -20px;
  }
}

@media screen and (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    padding: 1rem 0;
    flex-direction: column;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav ul.show {
    display: flex;
  }
  
  nav ul li {
    margin: 0;
    text-align: center;
    padding: 0.8rem 0;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero-content {
    padding: 1.5rem;
    margin: 0 auto;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .service-hero {
    min-height: 240px;
    max-height: 340px;
  }

  .fee-info {
    flex-direction: column;
    align-items: center;
  }
  
  .fee-card {
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (max-width: 576px) {
  .header-container {
    padding: 1rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .service-content {
    padding: 3rem 1rem;
  }
}

/* ============================================================
   Contact page layout fix (2026-07-11)
   The contact section had no grid/spacing rules and a stray
   `.contact-info { display:flex }` that mangled the layout.
   This block lays it out as a clean 2-column (info | form) grid
   with spaced method cards, and stacks to 1 column on mobile.
   ============================================================ */
.contact-section .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Override the stray flex rule for the contact page's info column:
   here it is a vertical stack of the heading, intro, and method cards. */
.contact-section .contact-info {
    display: block;
    margin-bottom: 0;
}

.contact-section .contact-info > h2,
.contact-section .contact-form > h2 {
    margin-bottom: 1rem;
}

.contact-section .contact-info > p {
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.7;
}

.contact-method {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    background: #ffffff;
    border-left: 3px solid var(--primary-color);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.contact-method h3 {
    margin: 0 0 0.5rem;
    color: var(--primary-color);
    font-size: 1.15rem;
}

.contact-method p {
    margin: 0 0 0.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.contact-method p:last-child {
    margin-bottom: 0;
}

.contact-method a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

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

.contact-method small {
    color: #777777;
    font-size: 0.85rem;
    line-height: 1.5;
}

.contact-method .office-hours {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
}

.contact-method .office-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.2rem 0;
    color: var(--text-color);
}

.contact-form {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Stack to a single column on tablets/phones */
@media (max-width: 860px) {
    .contact-section .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================================
   Header: two-line logo + phone relocated below the nav (2026-07-11)
   ============================================================ */
/* Two-line logo: "Marva Johnson, RP" then "Set Apart Counselling" below */
.logo {
    display: inline-block;
    line-height: 1.15;
}
.logo .logo-rp {
    font-size: 1em;
    font-weight: 500;
    color: var(--primary-color);
}
.logo .logo-company {
    display: block;
    font-size: 0.72em;
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Phone row: its own line, right-aligned, below the nav. Never wraps. */
.header-phone {
    width: 100%;
    text-align: right;
    margin-top: 0.25rem;
}
.header-phone .contact-button {
    display: inline-block;
    white-space: nowrap;
    font-size: 1.08rem;
    padding: 0.3rem;
}
/* Ensure the header container lets the phone sit on its own row */
.header-container {
    flex-wrap: wrap;
}

/* Small screens: center the phone under everything */
@media (max-width: 768px) {
    .header-phone {
        text-align: center;
    }
}

/* ============================================================
   Footer logo: two-line "Marva Johnson, RP" / "Set Apart Counselling" (2026-07-11)
   Footer is on a dark bg: name+RP light, company smaller in accent.
   ============================================================ */
.footer-logo {
    line-height: 1.15;
}
.footer-logo .footer-logo-rp {
    font-size: 1em;
    color: var(--light-text);
}
.footer-logo .footer-logo-company {
    display: block;
    font-size: 0.72em;
    color: var(--accent-color);
    letter-spacing: 0.3px;
}

/* ============================================================
   Booking page (book.html) — prototype embed placeholder (2026-07-12)
   Replace .booking-embed-placeholder contents with the Owl/Jane
   "Book Online" embed code or iframe when the platform is live.
   ============================================================ */
.booking-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}
.booking-intro h2 { color: var(--primary-color); margin-bottom: 0.75rem; }
.booking-intro p { color: var(--text-color); line-height: 1.7; }

.booking-embed-placeholder {
    max-width: 760px;
    margin: 0 auto;
    background: var(--light-color);
    border: 2px dashed #cbd5d4;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
}
.booking-placeholder-inner { max-width: 520px; margin: 0 auto; }
.booking-placeholder-icon { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.booking-embed-placeholder h3 { color: var(--primary-color); margin-bottom: 0.75rem; }
.booking-embed-placeholder p { color: var(--text-color); line-height: 1.7; margin-bottom: 1.25rem; }
.booking-fallback-buttons {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 1.5rem 0 1rem;
}
.booking-note { margin-top: 1rem; }
.booking-note small { color: #999; }

/* Online Therapy Across Ontario section (homepage SEO/content block) */
.ontario-therapy {
  padding: var(--section-padding);
  background-color: #fff;
}
.ontario-therapy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}
.ontario-therapy-block {
  background-color: var(--light-color);
  border-radius: 8px;
  padding: 1.75rem;
  border-top: 3px solid var(--secondary-color);
}
.ontario-therapy-block h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}
.ontario-therapy-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.ontario-therapy-cta p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
@media screen and (max-width: 860px) {
  .ontario-therapy-grid { grid-template-columns: 1fr; }
}

/* Counselling for every stage of life (individuals / couples / families band) */
.life-stages {
  padding: var(--section-padding);
  background-color: var(--primary-color);
  color: var(--light-text);
  text-align: center;
}
.life-stages-heading {
  font-family: 'Lora', serif;
  color: var(--light-text);
  font-size: 2.4rem;
  margin-bottom: 3rem;
}
.life-stages-heading em {
  font-style: italic;
}
.life-stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.life-stage-icon {
  display: inline-block;
  font-size: 2.8rem;
  margin-bottom: 1.25rem;
  color: var(--light-text);
  opacity: 0.95;
}
.life-stage h3 {
  font-family: 'Lora', serif;
  color: var(--light-text);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.life-stage p {
  color: var(--light-text);
  opacity: 0.9;
  font-size: 0.98rem;
  max-width: 300px;
  margin: 0 auto;
}
@media screen and (max-width: 860px) {
  .life-stages-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .life-stages-heading { font-size: 1.9rem; }
}

/* Contact form field alignment + sizing:
   - two-column grid per row => every input/select starts at the same left edge
   - Name + Email inputs widened 20% over the browser default (~184px -> 220px) */
.contact-form .form-group {
    display: grid;
    grid-template-columns: minmax(150px, 230px) 1fr;
    column-gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}
.contact-form .form-group label {
    margin: 0;
}
.contact-form .form-group:has(textarea) {
    align-items: start;
}
.contact-form #name,
.contact-form #email {
    width: 220px;
    max-width: 100%;
}
.contact-form #message {
    width: 100%;
    min-height: 110px;
}
@media (max-width: 576px) {
    /* stack label above field on small phones */
    .contact-form .form-group {
        grid-template-columns: 1fr;
        row-gap: 0.3rem;
    }
    .contact-form #name,
    .contact-form #email,
    .contact-form #phone {
        width: 100%;
    }
}

/* Send button: match site buttons; AODA-visible keyboard focus on all form controls */
.contact-form .submit-button {
    grid-column: 2;
    justify-self: start;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact-form .submit-button:hover {
    background-color: var(--accent-color);
}
.contact-form .submit-button:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}
@media (max-width: 576px) {
    .contact-form .submit-button {
        grid-column: 1;
        width: 100%;
    }
}

/* ---------------------------------------------------------------------------
   Pay for your session — Stripe Payment Links (book.html)
--------------------------------------------------------------------------- */
.payment-section {
    padding: 3rem 0 4rem;
    background-color: var(--light-color);
}
.payment-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.25rem;
}
.payment-intro h2 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}
.payment-intro p {
    color: var(--text-color);
}
.payment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.payment-card {
    background: #ffffff;
    border: 1px solid #ece5da;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 14px rgba(90, 125, 124, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.payment-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.payment-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
}
.payment-price span {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-color);
    margin-left: 0.25rem;
}
.payment-button {
    display: inline-block;
    margin-top: auto;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    width: 100%;
    box-sizing: border-box;
}
.payment-button:hover {
    background-color: #d0724e;
    color: #ffffff;
}
.payment-button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
.payment-note {
    text-align: center;
    max-width: 640px;
    margin: 2rem auto 0;
    font-size: 0.92rem;
    color: var(--text-color);
}
.payment-note a {
    color: var(--primary-color);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .payment-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

/* ---------------------------------------------------------------
   Service lines (services.html) — four distinct offerings.
   Added 2026-07-28 to separate CRPO-regulated psychotherapy from
   pastoral/spiritual counselling, general counselling, and coaching.
   --------------------------------------------------------------- */

.service-lines {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin: 2.5rem 0 3rem;
}

.service-line-card {
    background-color: #fff;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    padding: 1.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-line-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.service-line-card h3 i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.service-line-card .service-line-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    color: #6b6b6b;
    margin-bottom: 0.85rem;
}

.service-line-card p {
    margin-bottom: 0.85rem;
}

.service-line-card p:last-child {
    margin-bottom: 0;
}

/* Section headings that introduce each service line */
.service-line-heading {
    margin: 3.5rem 0 1.5rem;
    padding-bottom: 0.9rem;
    border-bottom: 2px solid var(--secondary-color);
}

.service-line-heading h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-line-heading .service-line-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #5f5f5f;
    margin-bottom: 0;
}

/* Scope / "what is and isn't psychotherapy" explainer */
.scope-note {
    background-color: var(--light-color);
    border: 1px solid #e3ddd2;
    border-radius: 4px;
    padding: 1.9rem 2rem;
    margin: 2.5rem 0;
}

.scope-note h3 {
    color: var(--primary-color);
    margin-bottom: 0.9rem;
}

.scope-note p {
    margin-bottom: 1rem;
}

.scope-note p:last-child {
    margin-bottom: 0;
}

.scope-note .scope-crisis {
    border-top: 1px solid #e3ddd2;
    padding-top: 1rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .service-lines {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .scope-note {
        padding: 1.5rem 1.25rem;
    }

    .service-line-heading {
        margin-top: 2.5rem;
    }
}

/* ---------------------------------------------------------------
   "What to Expect" section — CRPO-compliant replacement for the
   former client-testimonials slider (Standard 6.2.2 prohibits
   using testimonials in advertising). Added 2026-07-28.
   --------------------------------------------------------------- */

.what-to-expect {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.what-to-expect h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.what-to-expect-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.expect-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.expect-step {
    background-color: #fff;
    border-radius: 4px;
    padding: 2rem 1.5rem 1.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.expect-step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.expect-step h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
}

.expect-step p {
    font-size: 0.98rem;
    margin-bottom: 0;
}

.expect-reassurance {
    background-color: #fff;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    padding: 1.9rem 2rem;
    max-width: 820px;
    margin: 0 auto;
}

.expect-reassurance h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expect-reassurance ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.25rem;
}

.expect-reassurance li {
    padding-left: 1.5rem;
    margin-bottom: 0.85rem;
    position: relative;
}

.expect-reassurance li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.expect-reassurance .expect-crisis {
    border-top: 1px solid #e3ddd2;
    padding-top: 1rem;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .expect-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .expect-steps { grid-template-columns: 1fr; gap: 1.5rem; }
    .expect-reassurance { padding: 1.5rem 1.25rem; }
}

/* Staging-only comparison banner (preview pages) */
.preview-banner {
    background-color: #7a4b2a;
    color: #fff;
    padding: 0.9rem 1.5rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
}

.preview-banner a { color: #ffd9c2; text-decoration: underline; }

/* ---------------------------------------------------------------
   Blog post elements (generated by tools/new_post.py).
   .post-line-tag keeps the regulated/non-regulated boundary visible
   on every article; .post-note carries the per-service-line
   disclaimer and the 9-8-8 crisis line. Added 2026-07-28.
   --------------------------------------------------------------- */

.post-line-tag {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b6b6b;
    margin-bottom: 1.5rem;
}

.post-note {
    background-color: var(--light-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    margin-top: 2.5rem;
}

.post-note p {
    margin-bottom: 0.75rem;
}

.post-note p:last-child {
    margin-bottom: 0;
}

.post-note .post-crisis {
    border-top: 1px solid #e3ddd2;
    padding-top: 0.75rem;
}
