


/* ========================
   Header / Navbar Styles
   ======================== */

/* Header nav links */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* optional: space above entire nav area */
.nav-container {
  margin-top: 20px;  /* adds space below top edge */
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #6a4fa3; /* accent color */
}

.nav-links li a {
    color: #4B3F72;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links li a:hover {
    color: #9C84C4;
}

/* Auth buttons */
.btn-primary {
    display: inline-block;
    background-color: #edc2fc;
    border-color: #edc2fc;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #b87ed5;
    border-color: #b87ed5;
}

.btn-outline-primary {
    background-color: transparent;
    border: 1px solid #BFA2DB;
    color: #edc2fc;
    border-radius: 0.5rem;
    padding: 0.4rem 1rem;
}

.btn-outline-primary:hover {
    background-color: #F5F0FA;
}
body {
  background: linear-gradient(to bottom, #f2f7fb, #f3eff7);
  min-height: 100vh;
}

/* Mobile hamburger bars */
.nav-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    margin: 4px 0;
    background-color: #4B3F72;
}

/* Mobile menu hidden by default */
.mobile-menu.hidden {
    display: none;
}

/* ========================
   Navbar Specific Button Fixes
   ======================== */

/* 1. Fix the "Sign Up" button size in the navbar */
.navbar .btn-primary {
    padding: 0.6rem 1.5rem; /* Adds size back to the button */
    font-size: 1rem;        /* Ensures text isn't too tiny */
    line-height: normal;    /* Prevents text from being squashed */
}

/* 2. Fix the "Login" button visibility */
.navbar .btn-outline-primary {
    /* Change text color to dark purple so it's visible on white */
    color: #4B3F72 !important; 
    border-color: #BFA2DB;     /* Keep the border lavender */
    font-weight: 600;          /* Make it a bit bolder to match Sign Up */
}

/* Optional: Make the Login button look nicer on hover */
.navbar .btn-outline-primary:hover {
    background-color: #F5F0FA;
    color: #4B3F72;            /* Keep text dark on hover */
}

/* ========================
   General Typography
   ======================== */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
    color: #4B3F72; /* soft lavender-purple for headings */
    font-weight: 600;
}

/* ----------------
   Home Page Hero Section
   ---------------- */
.hero-section {
  position: relative;
  min-height: 80vh;           /* tall but not full screen */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left-align content */
  padding: 4rem 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(247, 245, 245, 0.25); /* dark overlay for readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: left;
  color: #fff;
  margin-left: 2rem;
}

.hero-content h1 {
  font-size: 3rem;   /* big heading */
  font-weight: 500;  /* extra bold */
  line-height: 1.1;
  color: #38383a !important;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.75rem;
  font-weight: 500;
  color: #38383a !important;
  margin-bottom: 2rem;
}

.hero-content a.btn-primary {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 10px;
  background-color: #edc2fc; /* lightly deeper lavender on hover */
  border: none;
  transition: all 0.3s ease;
}
.hero-content a.btn-primary:hover {
  background-color: #b87ed5;
   transform: translateY(-2px);
}

/* ----------------
   Responsive Hero
   ---------------- */
@media (max-width: 768px) {
  .hero-section {
    justify-content: center;
    padding: 3rem 1rem;
  }
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
  .hero-content a.btn-primary {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }
}

/* headings & copy */
.hero-content .display-4,
.hero-content h1 {
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(3,6,12,0.45);;
  line-height: 1.05;
}

/* slightly smaller on mobile */
/* 📱 RESPONSIVE: Center on smaller screens */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-btn {
    font-size: 1.1rem;
    padding: 0.7rem 1.5rem;
  }
}
/* button contrast (keeps your lavender brand) */
.btn-primary {
  background-color: #edc2fc; /* soft lavender */
  border-color: #edc2fc;
  color: #fff;
  font-weight: 600;
  border-radius: 0.6rem;
  box-shadow: 0 6px 18px rgba(156,132,196,0.12);
}
.btn-primary:hover { background-color: #b87ed5; transform: translateY(-2px); }




/* ========================
   About Eyla / What We Do
   ======================== */

.section-eyla {
  background-color: #F4F0FF; /* soft beige-lavender tone */
  padding: 6rem 2rem;
  border-radius: 1.5rem;
  max-width: 1100px;
  margin: 4rem auto;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.eyla-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.eyla-text {
  max-width: 700px;
}

.section-title {
  font-size: 2rem;
  color: #2f3d3c;
  margin-bottom: 1rem;
}

.section-description {
  margin-bottom: 1rem; 
  color: #5c5c5c;
  line-height: 1.5;
  font-size: 1.1rem;
}

.eyla-

/* How Does Eyla help You — container-This section is not being used currently. */
.eyla-support {
  background: #fbe4e4;
  color: #1f2937; /* slate-800 */
  padding-top: 48px;
  padding-bottom: 48px;
}

.eyla-support .container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Titles */
.eyla-support-title {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 6px 0;
  text-align: center;
  color: #0f172a;
  font-weight: 700;
}

.eyla-support-subtitle {
  text-align: center;
  margin: 0 0 28px 0;
  color: #475569;
  font-size: 15px;
}

/* Cards grid */
.eyla-support-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

/* Card */
.eyla-support-card {
  background: #F4F0FF;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;        
  justify-content: flex-start;
  gap: 0.5rem;
  min-height: 140px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.03);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

/* Hover */
.eyla-support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(2,6,23,0.08);
}

/* Icon */
.eyla-support-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: inline-block;
}

/* Title & description */
.eyla-support-card-title {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.eyla-support-card-desc {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

/* Responsive: 3 columns */
@media (max-width: 1200px) {
  .eyla-support-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive: 2 columns */
@media (max-width: 840px) {
  .eyla-support-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: stacked */
@media (max-width: 520px) {
  .eyla-support-steps {
    grid-template-columns: 1fr;
  }

  .eyla-support-card {
    min-height: unset;
  }
}
/* CTA spacing for the Support section */
.eyla-support-cta {
    margin-top: 1.5rem;
    text-align: center;
}

/* Responsive spacing below grid (Support section only) */
.eyla-support .cards-grid {
    margin-bottom: 1.25rem;
}




/* How Does Eyla Support You- 5-step cards— container- */
.eyla-how {
  background:transparent;
  color: #1f2937; /* slate-800 */
  padding-top: 48px;
  padding-bottom: 48px;
}

.eyla-how .container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Titles */
.eyla-section-title {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 6px 0;
  text-align: center;
  color: #0f172a;
  font-weight: 700;
}

.eyla-subtitle {
  text-align: center;
  margin: 0 0 28px 0;
  color: #475569;
  font-size: 15px;
}

/* Cards grid */
.eyla-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}

/* Card */
.eyla-card {
  background: #F4F0FF;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;         /* centers title + description horizontally */
  justify-content: flex-start; /* keeps content at top */
  gap: 0.5rem;                 /* space between title and description */
  min-height: 140px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.03);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

/* Hover */
.eyla-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(2,6,23,0.08);
}

/* Icon */
.eyla-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: inline-block;
}

/* Title & description */
.eyla-card-title {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.eyla-card-desc {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.eyla-support-cta .btn-primary {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 10px;    /* slightly softer */
}

/* Responsive: 3 columns */
@media (max-width: 1200px) {
  .eyla-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive: 2 columns */
@media (max-width: 840px) {
  .eyla-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: stacked */
@media (max-width: 520px) {
  .eyla-steps {
    grid-template-columns: 1fr;
  }

  .eyla-card {
    min-height: unset;
  }
}

/* === Newsletter / Insights combined block === */
.section-newsletter {
  /* spacing consistent with other blocks */
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: transparent; 
}

.section-newsletter .container {
  max-width: 1100px;   /* keep alignment consistent with other sections */
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

.section-newsletter h2 {
  margin-bottom: 0.5rem;
}

/* paragraph centered and readable */
.section-newsletter p {
  color: #6b6b6b;
}

/* wrapper for the embed — keeps it from stretching past the content column */
.section-newsletter .newsletter-inner {
  width: 100%;
  box-sizing: border-box;
}

/* make embed visually consistent with cards */
.section-newsletter .newsletter-embed {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 0.75rem;
  display: block;
  width: 100%;
  height: 160px; /* small tweak for slightly taller embed */
  max-height: 360px;
  overflow: hidden;
}

/* responsive tweaks: tighten spacing on small screens */
@media (max-width: 576px) {
  .section-newsletter {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .section-newsletter .newsletter-embed {
    height: 180px;
  }
}
.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}

/* Fresh How Eyla Help You section -NOT USING THIS SECTION NOW*/
.eyla-how-fresh {
  background: #ffffff; /* can be changed to a gradient later */
  color: #1f2937; /* slate-800 */
  padding-top: 48px;
  padding-bottom: 48px;
}

/* Container */
.eyla-how-fresh .container {
  max-width: 1100px;  /* same as other sections */
  margin: 0 auto;      /* center horizontally */
  padding-left: 20px;  /* inner padding */
  padding-right: 20px;
  box-sizing: border-box;
}

/* Cards grid */
.eyla-how-fresh .eyla-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  justify-content: center; /* centers the cards as a whole */
  margin: 0 auto;          /* ensures grid is centered */
  max-width: 1100px;       /* prevent grid from stretching too far */
  box-sizing: border-box;
}

/* Card */
.eyla-how-fresh .eyla-card {
  background: #e7ecdc; 
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  min-height: 140px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.03);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

/* Hover effect */
.eyla-how-fresh .eyla-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(2,6,23,0.08);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .eyla-how-fresh .eyla-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 840px) {
  .eyla-how-fresh .eyla-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .eyla-how-fresh .eyla-steps {
    grid-template-columns: 1fr;
  }

  .eyla-how-fresh .eyla-card {
    min-height: unset;
  }
}


/* Sign up button spacing */
.eyla-how-fresh .text-center {
  text-align: center;
  margin-top: 2rem;
}

/* Responsive spacing below grid for button */
.eyla-how-fresh .text-center.mt-4 {
  margin-top: 1.5rem;
}

/* Final homepage CTA button – larger */
.cta-container .btn-primary {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 10px;
}


/* ========================
   Section Headings
   ======================== */
section h2, section h3 {
    margin-bottom: 1rem;
}

/* Unified card titles across all sections */
.card-rect h5,
.eyla-card-title {
    font-size: 1.2rem;       /* readable but smaller than main section title */
    font-weight: 600;        /* consistent boldness */
    color: #2f3d3c;          /* same as main section title */
    margin-bottom: 0.6rem;   /* spacing below title */
}

/* Unified card descriptions across all sections */
.card-rect p,
.eyla-card-desc {
    font-size: 1.1rem;       /* same as section descriptions */
    line-height: 1.5;
    color: #5c5c5c;          /* matches section subtitle color */
    margin-bottom: 0.8rem;   /* subtle spacing */
}


/* Make section titles consistent with 'What is Eyla?' */
.eyla-support .eyla-support-title,  /* NEW: How Does Eyla Support You */
.eyla-how .eyla-section-title,  /* How Does Eyla Work? */
.section-newsletter h2,          /* Eyla Health Library */
.section-cta h2 {                /* Step Into Your Midlife With Confidence */
    font-size: 2rem;
    color: #2f3d3c;
    font-weight: 400;
    margin-bottom: 1rem;
}

/* Make section subtitles consistent with 'What is Eyla?' */
.eyla-support .eyla-support-subtitle,  /* NEW subtitle */
.eyla-how .eyla-subtitle,       /* How Does Eyla Work? */
.section-newsletter p,           /* Eyla Health Library */
.section-cta p {                 /* Step Into Your Midlife With Confidence */
    color: #5c5c5c;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}





/* ========================
   Links
   ======================== */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* ========================
   Spacing Adjustments
   ======================== */
.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}


/* MIND & MOOD PAGE: */
/* GENERAL CONTAINER */
.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}


/* HERO SECTION */
.hero-section {
    position: relative;
    height: 576px;            /* consistent hero height */
    padding-top: 80px;        /* space for fixed navbar */
    overflow: hidden;         /* prevents image bleed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Background image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Optional overlay */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    z-index: 1;
}

/* Text layer */
.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 3rem;
    color: #202122;
    margin-bottom: 20px;
}
.hero-section p {
    font-size: 1.2rem;
    color: #3d4042;
}

.hero-section a.btn-primary {
  display: inline-block;
  background: #A38ADF;       /* brand CTA color */
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 1rem;
  text-decoration: none;
  transition: background .18s ease, transform .12s ease;
  box-shadow: 0 8px 22px rgba(163,138,223,0.10);
}
.hero-section a.btn-primary:hover {
  background: #8C76C9;
  transform: translateY(-2px);
}
/* CONTENT SECTIONS */
.content-section {
    padding: 60px 20px;
}
.content-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}
.content-section p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.6;
}
.content-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 10px;
}
.content-section ul li {
    margin-bottom: 10px;
}

/* ALTERNATE SECTION BACKGROUND */
.bg-light {
    background-color: #F4F0FF;
}

/* AUDIO BUTTONS */
.audio-buttons {
    margin-top: 20px;
}
.audio-buttons button {
    background-color: #BFA2DB;
    color: white;
    border: none;
    padding: 12px 25px;
    margin-right: 10px;
    margin-top: 10px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.audio-buttons button:hover {
    background-color: #9C84C4;
}

/* DOWNLOADABLE LINKS */
.downloadables {
    margin-top: 20px;
}
.downloadables a {
    display: inline-block;
    margin-right: 15px;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #BFA2DB;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}
.downloadables a:hover {
    background-color: #9C84C4;
}

/* ------------------------------
   Mind & Mood — Final CTA Block
   (matches the existing page block background)
   ------------------------------ */

.mind-final-cta {
  max-width: 900px;                 /* same width as other content blocks */
  margin: 2.5rem auto;              /* centers and separates from other sections */
  background: #fafafa;              /* same as other page blocks */
  padding: 2rem;
  border: 1px solid #e4ddf7;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(18,18,30,0.03);
  border: 1px solid #f1f1f1;
  text-align: center;
}

.mind-final-cta-box {
  max-width: 760px;
  margin: 0 auto;
}

.mind-final-cta h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #2f3d3c;
}

.mind-final-cta p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.25rem;
}

/* CTA button: use your brand lavender + hover */
.mind-cta-button {
  display: inline-block;
  background: #A38ADF;       /* brand CTA color */
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background.18s ease, transform .12s ease;
  box-shadow: 0 8px 22px rgba(163,138,223,0.10);
}

.mind-cta-button:hover {
  background: #8C76C9;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .mind-final-cta {
    padding: 1.5rem;
    margin: 1.5rem 1rem;
  }
  .mind-final-cta h2 {
    font-size: 1.45rem;
  }
  .mind-final-cta p { font-size: 1rem; }
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .content-section h2 {
        font-size: 1.6rem;
    }
    #cta ul li {
        display: block;
        margin: 10px 0;
    }
}




/* ------------------------------
   Holistic Lifestyle Page Styles
   --------------------------------*/

/* General Page Layout */
.holistic-page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  font-family: "Inter", sans-serif;
  color: #333;
}

/* All Content Blocks - Consistent Styling */
.hero-section,
.holistic-block {
   max-width: 100%; /* Change from 1200px to 100% */
   background: #F4F0FF;
   border-radius: 5px;
   padding: 4rem 3rem; /* Using the padding from the redesign */
   box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
   border: 1px solid #f1f1f1;
   margin-bottom: 2.5rem;
}

/* Hero Section Specific */
.hero-section {
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #121213 !important;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero-section .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #1d1c1c !important;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: #E5DBFF;
  color: #1b2221;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-cta:hover {
  background-color: #d1c2ff;
}

/* Content Sections */
.holistic-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #2b2b2b;
}

.holistic-section h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
  color: #444;
}

.holistic-section h3:first-of-type {
  margin-top: 0;
}

.holistic-section p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #555;
}

.holistic-section ul {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

.holistic-section ul li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
  color: #555;
}

/* CTA Section */

.holistic-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: #F4F0FF; /* Changed to match other blocks */
  border-radius: 5px;
  border: 1px solid #f1f1f1; /* Changed to match other blocks */
  margin-top: 1rem;
}

.holistic-cta h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #2b2b2b;
}

.holistic-cta p {
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.7;
}

.holistic-cta .cta-button {
  display: inline-block;
  padding: 0.8rem 1.8rem; /* Match hero button */
  background: #E5DBFF; /* Match hero button */
  color: #2f3d3c; /* Match hero button */
  border-radius: 6px; /* Match hero button */
  text-decoration: none;
  font-weight: 600; /* Match hero button */
  transition: background-color 0.3s ease;
}

.holistic-cta .cta-button:hover {
  background: #d1c2ff; /* Match hero button hover */
}

/* Responsive */
@media (max-width: 768px) {
  .holistic-page-container {
    padding: 2rem 1.2rem;
  }

  .hero-section,
  .holistic-block {
    padding: 2.5rem 1.5rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  .holistic-section h2 {
    font-size: 1.75rem;
  }

  .holistic-cta {
    padding: 2rem 1.5rem;
  }
}




/* ==================================================
   Story Circle Page — Local Spacing & Typography
   ================================================== */

.story-circle-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Headings spacing */
.story-circle-container h1,
.story-circle-container h2,
.story-circle-container h3 {
  margin-top: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Paragraph spacing */
.story-circle-container p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* List spacing */
.story-circle-container ul,
.story-circle-container ol {
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

/* Extra spacing between content blocks */
.story-circle-container section,
.story-circle-container .block {
  margin-bottom: 2.5rem;
}
/* ================================
   Improved Headings for This Page
   ================================ */

.story-circle-container h1 {
  font-size: 2rem;       /* Bigger hero-style heading */
  font-weight: 700;
}

.story-circle-container h2 {
  font-size: 1.6rem;
  font-weight: 600;
}

.story-circle-container h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
/* =========================
   Her Story Circle Hero
   ========================= */

.hero-section {
  background-color: #F4F0FF;       /* Soft lavender-beige tone */
  padding: 5rem 1rem;
  display: flex;
  justify-content: center;
  text-align: center;
  border-radius: 1.5rem;
  max-width: 1100px;
  margin: 2rem auto;
}

.hero-content {
  max-width: 800px;
}

.hero-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #2f3d3c;
}

.hero-section .lead {
  font-size: 1.2rem;
  color: #5c5c5c;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-cta {
  display: inline-block;
  background-color: #edc2fc; /* lavender background */
  color: #2f3d3c;
  padding: 0.8rem 1.8rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.hero-cta:hover {
  background-color: #b87ed5;
}

/* ============================================
   Content Blocks — Soft Lavender Backgrounds
   ============================================ */

.story-circle-container .content-block {
  background-color: #F8F4FF;         /* very soft lavender */
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); /* subtle softness */
  border: 1px solid #E6DFFF;         /* faint lavender border */
  margin-bottom: 3rem;
}

/* Optional: Heading inside blocks */
.story-circle-container .content-block h2 {
  margin-top: 0;                     /* remove double spacing at top */
}

/* Button inside each block */
.story-circle-container .block-cta {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.6rem 1.4rem;
  border-radius: 0.9rem;
  background-color: #edc2fc;         /* lavender */
  color: #2f3d3c;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.story-circle-container .block-cta:hover {
  background-color: #b87ed5;
}
/* ===============================
   EVENTS PAGE — BASE STRUCTURE
   =============================== */

.events-page-container {
  max-width: 1100px;
  margin: 1.5rem auto;
  padding: 0 1rem;
}

/* ===============================
   HERO SECTION
   =============================== */

.events-hero {
  background: #F4F0FF; /* soft lavender */
  padding: 3rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  text-align: center;
}

.events-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.events-hero .lead {
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0.5rem auto 1.5rem auto;
  line-height: 1.6;
}

.events-hero-cta {
  display: inline-block;
  background: #edc2fc;       /* deeper lavender */
  color: #2f3d3c;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}
.events-hero-cta:hover {
  background: #b87ed5;
}

/* ===============================
   SECTIONS
   =============================== */

.events-section {
  margin-bottom: 2.5rem;
}

.events-block h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.events-block p,
.events-block ul,
.events-block ol {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.events-block ul {
  padding-left: 1.2rem;
}

.events-block li {
  margin-bottom: 0.5rem;
}

.micro {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* ===============================
   EVENT CARDS
   =============================== */

.events-card {
  padding: 1.5rem;
  background: #faf8ff; /* very light lavender */
  border: 1px solid #e4ddf7;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.events-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.events-card p {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* CTA BUTTONS inside cards */
.events-cta {
  display: inline-block;
  background: #edc2fc;
  color: white !important;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.events-cta:hover {
  background: #8c76c9;
}

/* Override: ensure card buttons are always visible and not muted */
.events-card .events-cta {
  display: inline-block !important;
  background: #edc2fc !important;   
  color: #ffffff !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  opacity: 1 !important;            /* ensure fully visible */
  transition: background .18s ease, transform .12s ease !important;
}

.events-card .events-cta:hover {
  background: #8C76C9 !important;
  transform: translateY(-2px);
}

/* ===============================
   GRID LAYOUTS
   =============================== */

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===============================
   FINAL CTA SECTION
   =============================== */

section.events-cta {
  background: #f6eef8 !important;        /* same as hero */
  padding: 2.25rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
  border: none;               /* ensure no border overrides */
  box-shadow: none;           /* preserve clean hero-like look */
  transition: none !important;
  transform: none !important;           /* remove any hover transitions on the section itself */
  display: block;
}

section.events-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2f3d3c;
}

section.events-cta p {
  color: #2f3d3c;          /* Forces text to be black */
  /* OR use #2f3d3c if you want it to match your H3 header exactly */
  
  font-size: 1.1rem;       /* Optional: makes it slightly easier to read */
  margin-bottom: 1.5rem;   /* Adds space between the text and the button */
}

.events-main-cta {
  display: inline-block;          /* natural button width */
  background: #A38ADF;            /* consistent primary CTA color (normal) */
  color: #ffffff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  box-shadow: 0 6px 18px rgba(163,138,223,0.12);
  transition: background .18s ease, transform .12s ease;
}

/* Hover for button only (keeps section background static) */
.events-main-cta:hover {
  background: #8C76C9;
  transform: translateY(-2px);
}


/* ===============================
   ABOUT US PAGE STYLES
   =============================== */

.about-page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: "Inter", sans-serif;
    color: #333;
}

/* -------------------------------
   HERO SECTION
---------------------------------*/
.about-hero {
    background-color: #F4F0FF; /* soft lavender */
    padding: 4rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2e3939;
}

.about-hero .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
    color: #555;
}

.about-hero-cta {
    display: inline-block;
    background: #edc2fc;  /* match Her Story Circle hero CTA */
    color: #2f3d3c;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.about-hero-cta:hover {
    background: #b87ed5;  /* hover color like Her Story Circle */
}

/* -------------------------------
   GENERAL SECTIONS
---------------------------------*/
.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2b2b2b;
}

.about-section p,
.about-section ul {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-section ul {
    padding-left: 1.5rem;
}

.about-section li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}
/* -------------------------------
   GENERAL SECTION STYLING
---------------------------------*/
.about-section {
    max-width: 900px;           /* limits the width */
    margin: 2rem auto;          /* centers the section with vertical spacing */
    background-color: #faf8ff;  /* very light lavender */
    padding: 2rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* Optional: slightly different shade for alternating sections for contrast */
.about-section:nth-child(even) {
    background-color: #f4f0ff; /* soft lavender tone */
}

/* Keep headings and text styling as before */
.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2b2b2b;
}

.about-section p,
.about-section ul {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-section ul {
    padding-left: 1.5rem;
}

.about-section li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}


/* -------------------------------
   FINAL CTA SECTION
---------------------------------*/
.about-final-cta {
    background-color: #F4F0FF; /* soft lavender */
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 1.5rem;
    margin: 3rem 0;
}

.about-final-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2f3d3c;
}

.about-final-cta p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
}

.about-cta-button {
    display: inline-block;
    background: #edc2fc;  /* match Her Story Circle CTA */
    color: #2f3d3c;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.about-cta-button:hover {
    background: #b87ed5;  /* hover like Her Story Circle */
}

/* -------------------------------
   RESPONSIVE
---------------------------------*/
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-section h2 {
        font-size: 1.75rem;
    }

    /* .about-her */

  }