/*-- -------------------------- -->
<---           Fonts             -->
<--- -------------------------- -*/

/* Gotham -- self-hosted, same files used across the therapy template
   line-up (fonts/ copied over from Template 4). */
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/gotham-300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/gotham-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/gotham-regular-italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/gotham-500.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/gotham-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Sentient -- Fontshare (free, no self-hosting license needed), loaded
   via the Fontshare CSS link in index.html. This template's heading
   face, swapped in for ivypresto-display which the other templates in
   this line-up use. */

/*-- -------------------------- -->
<---        Global Tokens        -->
<--- -------------------------- -*/

/* Root & Rise palette -- same token names as the rest of the therapy
   template line-up so section CSS stays portable. The purple/mauve/
   aubergine set has been swapped for a teal identity built around
   #006358 (already in use on the nav and hero).
     --primary       Teal          #006358
     --primaryDark   Deep Teal     #004840
     --primaryLight  Powder Pink   #E6C9C3  (soft accent, unchanged)
     --secondary     Muted Teal    #4D8F83
     --secondaryLight Pale Mint    #E3ECE9  (alt background)
     --navy          Deep Teal Ink #0D2E29 (main text / dark UI ink)
     --bodyTextColor Taupe Grey    #71676E  (muted text)
     --cream         Warm White    #FCF9F5  (light background)
     --parchment     Parchment     #F4EFE8  (main background)
     --accentText/accentTextDark  Clay Rose / Deep Teal, for toppers
     and small accent labels */
:root {
  --primary: #006358;
  --primaryDark: #004840;
  --primaryLight: #e6c9c3;
  --secondary: #4d8f83;
  --secondaryDark: #004840;
  --secondaryLight: #e3ece9;
  --navy: #0d2e29;
  --bodyTextColor: #71676e;
  --bodyTextColorWhite: #fcf9f5;
  --cream: #fcf9f5;
  --parchment: #f4efe8;
  --footerBg: #04332c;
  --accentText: #c98776;
  --accentTextDark: #004840;

  /* Rule for this template line-up: an editorial serif for headlines,
     paired with a clean sans for body copy and UI (nav, buttons, form
     labels). */
  --headingFont: 'Corben', serif;
  --bodyFont: 'Gotham', sans-serif;
  --scriptFont: 'Petit Formal Script', cursive;

  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--bodyFont);
  background-color: var(--cream);
}

button, input, textarea, select {
  font-family: inherit;
}

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

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

/*-- -------------------------- -->
<---          Button 1          -->
<--- -------------------------- -*/

.cs-button-solid {
  font-family: var(--bodyFont);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 3rem;
  text-align: center;
  text-decoration: none;
  min-width: 9.375rem;
  margin: 0;
  padding: 0 1.75rem;
  background-color: var(--primary);
  color: #fff;
  border-radius: 999px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.cs-button-solid:before {
  content: "";
  width: 0%;
  height: 100%;
  background: var(--primaryDark);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 0.3s;
}

.cs-button-solid:hover:before {
  width: 100%;
}

/*-- -------------------------- -->
<---      Shared Content         -->
<--- -------------------------- -*/

.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--accentTextDark);
  margin: 0 0 1rem;
  display: block;
}

.cs-title {
  font-family: var(--headingFont);
  font-size: var(--headerFontSize);
  font-weight: 300;
  line-height: 1.2em;
  margin: 0 0 1rem;
  color: var(--navy);
}

.cs-title em {
  color: var(--accentTextDark);
  font-style: italic;
}

.cs-text {
  font-family: var(--bodyFont);
  font-size: var(--bodyFontSize);
  line-height: 1.65em;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}
