@charset "utf-8";
/*--------------------------------------------------------------
  1. Global Styles & Sticky Footer Setup (Merged)
--------------------------------------------------------------*/
:root {
  --primary-color: #00796B; /* Primary config */
  --secondary-color: #B76E79;
  --text-dark: #333;
  --text-light: white;
  --btn-hover: #e3a895;
  --btn-bg: #d99382;
  --bg-light: #f7f7f7;
  --overlay-bg: rgba(0, 0, 0, 0.5);
  --modal-bg: #343a40;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* Allow scrolling normally */
  overflow-y: scroll;
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

main {
  flex: 1; /* Main expands to fill available space */
}

/*--------------------------------------------------------------
  2. Typography (Merged)
--------------------------------------------------------------*/
body {
  font-family: 'Quicksand', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif; /* Primary config */
  color: #64A6A9;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
  3. Links
--------------------------------------------------------------*/
a {
  text-decoration: none;
  color: #6b9c9c;
}

a:hover {
  color: #333;
  text-decoration: underline;
}

/*--------------------------------------------------------------
  4. Navbar
--------------------------------------------------------------*/
.navbar {
  background-color: #f8f9fa !important;
}

.navbar .nav-link {
  color: #333 !important;
  padding: 0.5rem 1rem;
}

.navbar .nav-link:hover {
  color: #6b9c9c !important;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  color: #333;
}

.navbar-collapse {
  justify-content: center;
}

/*--------------------------------------------------------------
  5. Header
--------------------------------------------------------------*/
header {
  margin-bottom: 30px;
}

header .cta {
  font-size: 1.2rem;
  color: #333;
}

header .cta a {
  color: #333;
  font-weight: bold;
}

header .cta a:hover {
  color: #6b9c9c;
}

header .social-links i {
  margin-right: 15px;
}

header .social-links i:hover {
  color: #333;
}

/*--------------------------------------------------------------
  6. Main Content
--------------------------------------------------------------*/
main .hch-para-soft {
  font-size: 1rem;
  color: #637376;
  line-height: 1.8;
}

hr {
  border-top: 1px solid #e0e0e0;
}

/*--------------------------------------------------------------
  7. Widgets
--------------------------------------------------------------*/
.widget {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.widget-img img {
  height: auto;
  width: 100px;
  object-fit: contain; /* Ensures the entire image is visible */
  object-position: top; /* Aligns the image at the top */
}

.widget-link {
  text-decoration: none;
  color: #333;
}

.widget-link h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #6b9c9c;
  margin-bottom: 5px;
}

.widget-link p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 0;
}

.widget:hover .widget-link h4 {
  color: #333;
}

.widget hr {
  margin: 15px 0;
  border: none;
  border-top: 1px solid #e0e0e0;
}

/*--------------------------------------------------------------
  8. Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 768px) {
  header .social-links i {
    margin-right: 10px;
  }

  .widget {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .widget-img {
    width: 150px;
    margin-bottom: 10px;
  }

  .widget-link h4,
  .widget-link p {
    text-align: center;
  }
}

/*--------------------------------------------------------------
  9. Footer
--------------------------------------------------------------*/
footer {
  background-color: #343a40;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}

footer a {
  color: #6b9c9c;
}

footer a:hover {
  color: #fff;
}

footer .social-icons i {
  margin-right: 15px;
  font-size: 1.5rem;
}

footer .social-icons i:hover {
  color: #6b9c9c;
}

/*--------------------------------------------------------------
  10. Cookie Consent Banner
--------------------------------------------------------------*/
#cookieConsent {
  position: fixed;
  bottom: 0; /* Primary config: full width banner */
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  z-index: 9999; /* Primary config */
  padding: 15px;
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
}

#cookieConsent a {
  color: #17a2b8;
  text-decoration: underline;
}

#cookieConsent a:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
  11. Cookie Customization Modal
--------------------------------------------------------------*/
.modal-content {
  background-color: #333; /* Dark gray background */
  color: white;
  border-radius: 10px;
  padding: 20px;
  border: none;
}

.modal-header {
  background-color: #444; /* Slightly lighter gray for the header */
  border-bottom: 1px solid #555; /* Light gray border */
  color: white;
}

.modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.modal-header .btn-close {
  filter: invert(100%); /* Make the close button white */
}

.modal-body {
  font-size: 1rem;
  color: white;
}

.modal-body .form-check-label {
  color: white;
}

.modal-body .form-check-input {
  accent-color: white;
}

.modal-footer {
  background-color: #444;
  border-top: 1px solid #555;
  justify-content: flex-end;
}

.modal-footer .btn-secondary {
  background-color: #555;
  color: white;
  border: none;
}

.modal-footer .btn-secondary:hover {
  background-color: #666;
}

.modal-footer .btn-primary {
  background-color: #0069d9;
  color: white;
  border: none;
}

.modal-footer .btn-primary:hover {
  background-color: #0056b3;
}

/*--------------------------------------------------------------
  12. Additional Global Styles
--------------------------------------------------------------*/
html, body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; /* Ensures main content expands to fill available space */
}

/*--------------------------------------------------------------
  13. Image Styling (Extra)
--------------------------------------------------------------*/
img.drop-shadow {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

img.float-left {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

img.float-right {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
  14. Imported Fonts & Tag Badges
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

.tag-badge-custom {
  background-color: #DBEAFE;
  color: #4461BF;
  padding: 0.1em 0.65em;
  border-radius: 0.25rem;
  text-align: center;
  font-size: 1.0rem;
  display: inline-block;
}

.tag-badge-white {
  background-color: #ffffff;
  color: #64A6A9; /* Changed to match primary links */
  padding: 0.2em 0.7em;
  border: 1px solid #e0e0e0;
  border-radius: 0.25rem;
  text-align: center;
  font-size: 1rem;
  display: inline-block;
  margin: 0.2em;
}

/*--------------------------------------------------------------
  15. Article Content Styles
--------------------------------------------------------------*/
.article-content img {
  padding: 10px;
  margin: 10px 0;
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
  16. Custom Heading & Search Button
--------------------------------------------------------------*/
.hch-heading-search {
  font-size: 2rem;
  font-weight: bold;
  color: #64A6A9;
}

.btn-search {
  background-color: #64A6A9 !important;
  border-color: #64A6A9 !important;
  color: #333 !important;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-search:hover,
.btn-search:focus {
  background-color: #95afb4 !important;
  border-color: #95afb4 !important;
  color: #333 !important;
}

/*--------------------------------------------------------------
  17. Blockquote Styling (Extra)
--------------------------------------------------------------*/
blockquote.blockquote {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 5px;
  background-color: #fff;
  margin: 20px 0;
  transition: box-shadow 0.3s ease-in-out;
}

blockquote.blockquote:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
  18. Book Section Styles
--------------------------------------------------------------*/
.book-cover-container {
  width: 400px; /* Adjusted width */
  float: none;
  margin: 0 auto; /* Center the container */
}

.book-section img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.book-section img:hover {
  transform: scale(1.1);
}

.book-section h3 {
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
  19. Sales Section Styles
--------------------------------------------------------------*/
.sales-section {
  background: #f8f9fa;
  padding: 3rem 1rem;
}
.sales-section h2 {
  color: var(--primary-color);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.sales-section p {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-family: 'Quicksand', sans-serif;
}

/*--------------------------------------------------------------
  20. Button Styling (Consolidated)
--------------------------------------------------------------*/
.btn {
  border-radius: 5px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:focus {
  outline: 2px solid var(--primary-color);
}

.btn-amazon {
  background-color: var(--btn-bg);
  color: var(--text-light);
  border: 2px solid var(--btn-bg);
  padding: 0.8rem 2rem;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-amazon:hover {
  background-color: var(--btn-hover);
  border-color: var(--btn-hover);
  color: var(--text-light);
}

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

/*--------------------------------------------------------------
  21. Direct Message Box
--------------------------------------------------------------*/
.direct-message {
  background-color: #fff;
  padding: 2rem 1.5rem;
  position: relative;
  text-align: center;
  color: #B76E79;
  font-size: 1.25rem;
  line-height: 1.0;
  max-width: 700px;
  margin: 2rem auto;
  font-style: italic;
}

/*--------------------------------------------------------------
  22. About Page Specific Styles
--------------------------------------------------------------*/
.about-title {
  color: #64A6A9;
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
}

.about-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
/*--------------------------------------------------------------
  5. About Section (Reinserted from Secondary)
--------------------------------------------------------------*/
.about-section .image-container {
  position: relative;
  margin: 0;
  padding: 0;
}
.about-section .image-container img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.about-section .text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 20%;
  background-color: var(--overlay-bg);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: 'Dosis', sans-serif;
  text-align: left;
  padding: 20px; /* default padding */
}

.about-section .text-overlay .inner-overlay {
  width: 100%;
  padding: 20px;
  font-family: 'Dosis', sans-serif;
}

.about-section .text-overlay h2 {
  margin-bottom: 0.5rem;
  font-family: 'Dosis', sans-serif;
  font-size: 2.0rem;
  color: var(--text-light);
}
.no-bullet-list {
  font-size: 1.2rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.book-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  max-width: 1000px;
  margin: 0 auto 1.5rem auto;
  font-family: 'Roboto', sans-serif;
}
.no-bullet-list li:last-child {
  margin-bottom: 1.5rem;
}

    /* ==========================================================
   HC H1-A — Homepage banding helpers (structure only)
   ========================================================== */

.hc-band {
  width: 100%;
}

/* Intentional visual rhythm between sections */
.hc-band--hero {
  background: #ffffff;
}

.hc-band--trust {
  background: #f8f9fa; /* Trust block: Bootstrap bg-light tone (matches your note) */
}

.hc-band--primary-offer {
  background: #ffffff; /* Primary Offer: white (matches your note) */
}

.hc-band--offer-detail {
  background: #ffffff;
}

.hc-band--cta {
  /* sales-section already defines its own visual treatment */
}

.hc-band--future {
  background: #ffffff;
}

.hc-band--about {
  background: #f8f9fa;
}

/* Testimonials readability guard */
.testimonials-section blockquote.blockquote {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Future funnel typography alignment */
.future-funnel-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}

/* ==========================================================
   HC Banding Overrides (brand-aligned)
   ========================================================== */

:root {
  --hc-bg-base: #FFF8F0;   /* warm ivory */
  --hc-bg-subtle: #F3F4F4; /* neutral panel */
}

.hc-band--hero-intro {
  background: #F0F2F3; /* stronger neutral band (still on-brand) */
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 0; /* removed to avoid divider into book section */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.hc-band { padding: 4rem 0; }
.hc-band--white { background: #ffffff; }
.vh-lead-form { margin-top: 1.25rem; }

.btn-HC_primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.book-cover-image {
  max-width: 340px;   /* control actual visual size */
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.user-reviews {
  max-width: 820px;
  margin: 0 auto;
}

.user-review {
  background: #F8F9FA;
  border-left: 4px solid var(--hc-teal);
  padding: 18px 22px;
  margin-bottom: 18px;
  border-radius: 8px;
}

.user-review p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  color: #4a5a5a;
}

.no-bullets {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.no-bullets li {
  margin-bottom: 10px;
}

.vh-signup-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 28px 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

/* === CLINICIAN TESTIMONIALS === */

.testimonials-section .blockquote {
  margin-bottom: 24px;
  padding: 18px 22px;
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #E2E6E8;
}

.testimonials-section .blockquote p {
  font-size: 15px;        /* slightly smaller */
  line-height: 1.6;
  margin-bottom: 10px;
  color: #3f4a4a;
}

.testimonials-section .blockquote-footer {
  font-size: 13px;        /* reduce size */
  color: #6c757d;
  font-weight: 500;
}

/* === READER REVIEWS === */

.reader-reviews {
  background: #ffffff;
}

.reader-quote {
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  color: #4f5f5f;
  padding: 14px 18px;
  border-radius: 8px;
  background: #F8F9FA;
  border-left: 3px solid var(--hc-teal);
}

/* =========================
   VulvalHealth holding page
   ========================= */

.vh-holding {
  /* soft background like your screenshot */
  background: #f7f7f7;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 48px 0;
}

.vh-holding .container {
  max-width: 920px;
}

.vh-holding h2 {
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
}

.vh-holding .book-paragraph {
  max-width: 860px;
  margin: 0 auto 28px auto;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #1f2937;
}

.vh-signup-band {
  background: transparent;
  padding: 0;
}

.vh-signup-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 28px 22px 28px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.vh-lead-form .form-label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.vh-lead-form .form-control {
  height: 46px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 10px 14px;
}

.vh-lead-form .form-control:focus {
  border-color: #008080;
  box-shadow: 0 0 0 0.2rem rgba(0,128,128,0.18);
}

.vh-lead-form .row {
  margin-bottom: 6px;
}

.vh-lead-form .form-check {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.vh-lead-form .form-check-input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.vh-lead-form .form-check-label {
  font-size: 0.98rem;
  color: #111827;
}

.vh-lead-form .form-text {
  margin-top: 6px;
  color: #6b7280;
}

.vh-lead-form .form-text a {
  color: #008080;
  text-decoration: none;
}

.vh-lead-form .form-text a:hover {
  text-decoration: underline;
}

.vh-lead-form .btn {
  border-radius: 10px;
  padding: 10px 22px;
  font-weight: 600;
}

/* make the button look like the clean screenshot */
.vh-lead-form .btn-outline-secondary {
  border-color: #9ca3af;
  color: #374151;
}

.vh-lead-form .btn-outline-secondary:hover {
  background: #f3f4f6;
  border-color: #6b7280;
  color: #111827;
}

/* small screens: reduce padding */
@media (max-width: 576px) {
  .vh-holding {
    padding: 28px 0;
  }
  .vh-signup-card {
    padding: 20px;
  }
}