/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Montserrat:wght@400;600;700&display=swap');

:root {
  /* Color Palette */
  --green: #50c878;
  --pink: #f38eea;
  --black: #1c1c1c;
  --white: #ffffff;
}
/* Global Styles */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Merriweather', serif;
  color: var(--black);
  background-color: var(--white);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: var(--black);
}
.special-heading,
blockquote {
  font-family: 'Montserrat', sans-serif;
}
a {
  color: var(--green);
}
a:hover {
  color: var(--pink);
  text-decoration: none;
}
/* Smooth‐scroll */
html {
  scroll-behavior: smooth;
}

/* ====== HERO ====== */
#hero {
  position: relative;
  min-height: calc(100vh - 56px); /* adjust if your navbar height changes */
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible;
}
#hero .container {
  position: relative;
  z-index: 2; /* above the wave */
}
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

/* ====== CATEGORY CARDS ====== */
.category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 .125rem 2rem 4px rgba(0, 0, 0, .075) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.category-card .card-img-top {
  height: 250px;
  object-fit: cover;
}
.category-card .btn {
  width: auto;
  align-self: flex-start;
}

/* ====== CONTACT FORM ====== */
#contact input,
#contact textarea {
  background: #f8f9fa;
}

/* ====== FOOTER ====== */
footer {
  background: #f1f3f5;
  padding: 1rem 0;
  text-align: center;
}

/* ====== OFFERINGS SECTION ====== */
#offerings {
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.row.align-items-stretch {
  align-items: stretch;
}

/* Wave divider under Offerings */
.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: -4px; /* tuck under next section */
}
.wave-divider path {
  fill: #f8f9fa; /* match the About bg */
}

/* ====== UNIVERSAL SECTION ANCHORS ====== */
section[id] {
  padding-top: 4rem;
  padding-bottom: 4rem;
  scroll-margin-top: 80px; /* space for sticky nav */
}

/* ====== ABOUT SECTION ====== */
#about {
  background: #f8f9fa;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
/* top accent shape */
#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #e7f5ff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}
/* ensure content stacks above the shape */
.about-container,
#about .row {
  height: 100%;
  position: relative;
  z-index: 2;
}
/* center the two columns */
#about .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#about .col-md-4,
#about .col-md-8 {
  display: flex;
  justify-content: center;
}

/* the lifted bio card */
.about-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}
/* lead text sizing */
.about-card .lead {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
/* center CTAs, add gap */
.about-card .d-flex.justify-content-start {
  justify-content: center;
  gap: 1rem;
}
/* larger, shadowed profile image */
.about-img-large {
  width: 260px;
  max-width: 80%;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
/* Pricing cards */
.pricing-card {
  background: #cde47c;        /* light‑lime accent from your wave */
  color: #000;
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.pricing-card .btn-light {
  background: #fff;
  border: 1px solid #ddd;
}

/* Schedule‐Trial image */
#trial img {
  max-height: 400px;
  object-fit: cover;
}

/* Tighten up the trial form area */
#trial h3 {
  margin-bottom: 1rem;
}


/* ====== ABOUT SECTION ====== */
#pricing {
  min-height: 80vh;
  display: flex;
  align-items: center;
}