/* =========================================
   MOSAIC MINDS
   COMPLETE CLEAN STYLESHEET
   PURPLE + CREAM THEME
========================================= */


/* =========================================
   ROOT VARIABLES
========================================= */

:root {
  --purple: #3B214F;

  --cream: #F7F3EA;

  --cream-light: #FCFAF5;

  --white: #FFFFFF;

  --text-on-cream: #3B214F;

  --muted-on-cream: #5D5065;

  --border: #D8CEC2;

  --max-width: 1180px;

  --radius: 16px;
}


/* =========================================
   RESET / BASIC
========================================= */

* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  background: var(--purple);

  color: white;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 18px;

  line-height: 1.65;
}


img {
  max-width: 100%;
}


a {
  color: inherit;
}


button,
input,
textarea {
  font: inherit;
}


.container {
  width: min(92%, var(--max-width));

  margin-left: auto;

  margin-right: auto;
}


.narrow {
  width: min(92%, 900px);

  max-width: 900px;

  margin-left: auto;

  margin-right: auto;
}


/* =========================================
   ACCESSIBILITY
========================================= */

.skip-link {
  position: absolute;

  top: -100px;

  left: 20px;

  padding: 10px 16px;

  background: white;

  color: black;

  z-index: 9999;
}


.skip-link:focus {
  top: 20px;
}


:focus-visible {
  outline: 3px solid white;

  outline-offset: 4px;
}


/* =========================================
   GENERAL TYPOGRAPHY
========================================= */

h1,
h2,
h3 {
  line-height: 1.2;
}


h2 {
  font-size: clamp(
    2rem,
    4vw,
    3rem
  );
}


.eyebrow {
  margin: 0 0 12px;

  font-size: 0.82rem;

  font-weight: 800;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}


/* =========================================
   HEADER
   SAME STYLE ACROSS ALL PAGES
========================================= */

.site-header {
  position: sticky;

  top: 0;

  background: var(--purple);

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.15);

  z-index: 1000;
}


.mm-header {
  min-height: 96px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 28px;
}


/* LOGO */

.logo-link {
  display: flex;

  align-items: center;

  gap: 16px;

  flex-shrink: 0;

  text-decoration: none;
}


.company-logo {
  display: block;

  width: auto;

  height: 66px;
}


.company-name {
  color: white;

  font-size: 1.2rem;

  font-weight: 800;

  white-space: nowrap;
}


/* DESKTOP NAVIGATION */

.mm-desktop-menu {
  display: flex;

  align-items: center;

  gap: 24px;

  margin-left: auto;
}


.mm-desktop-menu a {
  color: white;

  text-decoration: none;

  font-weight: 700;
}


.mm-desktop-menu a:hover,
.mm-desktop-menu a:focus {
  text-decoration: underline;

  text-underline-offset: 5px;
}


/* MOBILE NAVIGATION */

.mm-mobile-menu {
  display: none;

  position: relative;
}


.mm-mobile-menu summary {
  list-style: none;

  padding: 11px 18px;

  background: var(--cream);

  color: var(--purple);

  border-radius: 9px;

  font-weight: 800;

  cursor: pointer;
}


.mm-mobile-menu summary::-webkit-details-marker {
  display: none;
}


.mm-mobile-links {
  position: absolute;

  top: calc(100% + 12px);

  right: 0;

  min-width: 230px;

  display: grid;

  gap: 4px;

  padding: 14px;

  background: var(--cream);

  border-radius: 12px;

  box-shadow:
    0 12px 30px
    rgba(0, 0, 0, 0.18);

  z-index: 1100;
}


.mm-mobile-links a {
  padding: 10px 12px;

  color: var(--purple);

  text-decoration: none;

  font-weight: 700;

  border-radius: 7px;
}


.mm-mobile-links a:hover,
.mm-mobile-links a:focus {
  background: white;
}


/* =========================================
   BUTTONS
========================================= */

.button {
  display: inline-block;

  padding: 14px 24px;

  background: var(--purple);

  color: white;

  border:
    2px solid
    var(--purple);

  border-radius: 10px;

  text-decoration: none;

  font-weight: 700;

  cursor: pointer;
}


.button:hover,
.button:focus {
  opacity: 0.9;
}


.button-group {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 14px;

  margin-top: 32px;
}


/* =========================================
   GENERAL SECTION ALIGNMENT
========================================= */

.section {
  padding: 90px 0;
}


/*
   Major headings are centered and wide.
   Card content stays left aligned.
*/

.section-heading,
.program-section-heading,
.partners-preview-heading,
.partner-section-heading,
.core-values-heading,
.team-heading {
  width: min(100%, 1000px);

  margin:
    0 auto 48px;

  text-align: center;
}


.section-heading h2,
.program-section-heading h2,
.partners-preview-heading h2,
.partner-section-heading h2,
.core-values-heading h2,
.team-heading h2 {
  max-width: 930px;

  margin:
    0 auto 18px;

  text-align: center;

  text-wrap: balance;
}


.section-heading > p,
.program-section-heading > p,
.partners-preview-heading > p,
.partner-section-heading > p,
.core-values-heading > p,
.team-heading > p {
  max-width: 850px;

  margin-left: auto;

  margin-right: auto;

  text-align: center;

  line-height: 1.7;
}


.program-section-heading p + p {
  margin-top: 14px;
}


/* =========================================
   HOME PAGE HERO
========================================= */

.hero {
  width: 100%;

  padding:
    95px 0 105px;

  overflow: hidden;

  color: var(--purple);

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.22),
      rgba(255, 255, 255, 0.22)
    ),
    url("Images/purple.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;
}


.hero-content {
  width:
    min(92%, var(--max-width));

  max-width: var(--max-width);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1.5fr)
    minmax(280px, 0.7fr);

  gap: 60px;

  align-items: center;
}


.hero .eyebrow,
.hero h1 {
  color: var(--purple);
}


.hero h1 {
  max-width: 850px;

  margin:
    12px 0 24px;

  color: var(--purple);

  font-size: clamp(
    2.8rem,
    6vw,
    5rem
  );

  line-height: 1.05;
}


.hero-text {
  max-width: 720px;

  margin: 0;

  color: #2A2230;

  font-size: 1.1rem;

  font-weight: 500;
}


.hero .button-group {
  justify-content: flex-start;
}


.hero-card {
  padding: 36px;

  background:
    rgba(247, 243, 234, 0.96);

  color: var(--purple);

  border-radius: var(--radius);
}


.hero-card h2 {
  margin-top: 0;

  color: var(--purple);
}


.hero-card p {
  color: var(--muted-on-cream);
}


/* =========================================
   HOMEPAGE - WHO WE SERVE
   PURPLE BACKGROUND + CREAM BOX
========================================= */

.home-who-we-serve {
  padding: 85px 0;

  background: var(--purple);

  color: var(--purple);
}


.home-who-we-serve-content {
  width: min(92%, 1050px);

  max-width: 1050px;

  margin: 0 auto;

  padding: 55px 60px;

  background: var(--cream);

  color: var(--purple);

  border-radius: var(--radius);

  text-align: center;

  box-shadow:
    0 12px 30px
    rgba(0, 0, 0, 0.12);
}


.home-who-we-serve .eyebrow {
  margin:
    0 0 12px;

  color: var(--purple);

  text-align: center;
}


.home-who-we-serve h2 {
  max-width: 900px;

  margin:
    0 auto 20px;

  color: var(--purple);

  text-align: center;

  font-size: clamp(
    2.5rem,
    5vw,
    4rem
  );

  line-height: 1.1;
}


.home-who-we-serve-intro {
  max-width: 850px;

  margin:
    0 auto 30px;

  color: var(--muted-on-cream);

  text-align: center;

  font-size: 1.08rem;

  line-height: 1.7;
}


.home-age-list {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;

  gap: 14px;

  max-width: 1000px;

  margin:
    0 auto 28px;

  color: var(--purple);

  text-align: center;

  font-size: clamp(
    1.1rem,
    2vw,
    1.35rem
  );

  font-weight: 800;
}


.home-age-list span:nth-child(even) {
  opacity: 0.45;
}


.home-who-we-serve-message {
  max-width: 820px;

  margin: 0 auto;

  color: var(--muted-on-cream);

  text-align: center;

  line-height: 1.7;
}


/* =========================================
   HOMEPAGE ABOUT
========================================= */

.home-about {
  position: relative;

  min-height: 690px;

  display: flex;

  align-items: center;

  overflow: hidden;

  padding: 90px 0;

  background: var(--purple);

  color: white;
}


.home-about-content {
  position: relative;

  z-index: 5;

  max-width: 900px;

  margin:
    0 auto;

  text-align: center;
}


.home-about-content .eyebrow {
  color: white;
}


.home-about-content h2 {
  max-width: 850px;

  margin:
    0 auto 26px;

  color: white;

  font-size: clamp(
    2.5rem,
    4vw,
    3.7rem
  );

  line-height: 1.1;

  text-wrap: balance;
}


.home-about-content p {
  max-width: 800px;

  margin:
    0 auto 18px;

  color:
    rgba(255, 255, 255, 0.92);
}


.home-about-content .about-button {
  margin-top: 18px;

  background: var(--cream);

  color: var(--purple);

  border-color: var(--cream);
}


/* ABOUT FLOWERS */

.home-about .about-flower {
  position: absolute;

  top: 50%;

  width: 375px;

  max-width: 375px;

  height: auto;

  transform:
    translateY(-50%);

  object-fit: contain;

  z-index: 1;

  pointer-events: none;
}


.home-about .about-flower-left {
  left: 2px;
}


.home-about .about-flower-right {
  right: 2px;

  transform:
    translateY(-50%)
    scaleX(-1);
}


/* =========================================
   HOMEPAGE UPCOMING EVENTS
   CREAM BACKGROUND + PURPLE CARDS
========================================= */

.upcoming-section {
  padding: 90px 0;

  background: var(--cream);

  color: var(--purple);
}


.upcoming-section .section-heading {
  margin-bottom: 48px;
}


.upcoming-section .eyebrow,
.upcoming-section h2 {
  color: var(--purple);
}


.upcoming-section .section-heading p {
  color: var(--muted-on-cream);
}


.upcoming-events-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px;
}


.upcoming-event-card {
  display: flex;

  flex-direction: column;

  min-height: 310px;

  padding: 30px;

  background: var(--purple);

  color: white;

  border-radius: var(--radius);

  text-align: left;

  box-shadow:
    0 10px 25px
    rgba(59, 33, 79, 0.14);
}


.upcoming-event-card h3 {
  margin:
    14px 0 18px;

  color: white;

  font-size: 1.45rem;

  text-align: left;
}


.event-type {
  display: inline-block;

  width: fit-content;

  padding:
    7px 12px;

  background: var(--cream);

  color: var(--purple);

  border-radius: 999px;

  font-size: 0.76rem;

  font-weight: 800;

  letter-spacing: 0.04em;

  text-transform: uppercase;

  text-align: left;
}


.upcoming-event-card .event-date {
  display: block;

  width: 100%;

  margin:
    0 0 6px;

  color: var(--cream);

  font-size: 1.05rem;

  font-weight: 800;

  text-align: left !important;

  align-self: flex-start;
}


.upcoming-event-card .event-time,
.upcoming-event-card .event-location {
  margin:
    4px 0;

  color:
    rgba(255, 255, 255, 0.9);

  text-align: left;
}


.upcoming-register-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: fit-content;

  margin-top: auto;

  padding:
    11px 18px;

  background: var(--cream);

  color: var(--purple);

  border:
    2px solid
    var(--cream);

  border-radius: 8px;

  text-decoration: none;

  font-weight: 800;
}


.upcoming-register-button:hover,
.upcoming-register-button:focus {
  background: white;

  color: var(--purple);

  border-color: white;
}


.upcoming-events-footer {
  margin-top: 40px;

  text-align: center;
}


.upcoming-events-footer .button {
  background: var(--purple);

  color: white;

  border-color: var(--purple);
}


/* =========================================
   HOMEPAGE EXPLORE PROGRAMS
   PURPLE BACKGROUND + CREAM CARDS
========================================= */

.programs-preview-section {
  padding: 90px 0;

  background: var(--purple);

  color: white;
}


.programs-preview-section .eyebrow,
.programs-preview-section h2 {
  color: white;
}


.programs-preview-section .section-heading p {
  color:
    rgba(255, 255, 255, 0.9);
}


.program-preview-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px;
}


.program-preview-card {
  display: flex;

  flex-direction: column;

  min-height: 300px;

  padding: 30px;

  background: var(--cream);

  color: var(--purple);

  border-radius: var(--radius);

  text-align: left;

  box-shadow:
    0 10px 25px
    rgba(0, 0, 0, 0.12);
}


.program-preview-card h3 {
  margin:
    0 0 15px;

  color: var(--purple);

  font-size: 1.45rem;
}


.program-preview-card p {
  margin: 0;

  color: var(--muted-on-cream);

  line-height: 1.65;

  flex-grow: 1;
}


.program-preview-link {
  display: inline-block;

  width: fit-content;

  margin-top: 24px;

  padding:
    10px 16px;

  background: var(--purple);

  color: white;

  border:
    2px solid
    var(--purple);

  border-radius: 8px;

  text-decoration: none;

  font-weight: 800;
}


.program-preview-link:hover,
.program-preview-link:focus {
  background: white;

  color: var(--purple);
}


.programs-preview-cta {
  margin-top: 40px;

  text-align: center;
}


.programs-preview-cta .button {
  background: var(--cream);

  color: var(--purple);

  border-color: var(--cream);
}


/* =========================================
   HOMEPAGE PARTNER CAROUSEL
   WHITE CARDS ONLY ON HOMEPAGE
========================================= */

.partners-preview-section {
  padding: 90px 0;

  background: var(--cream);

  color: var(--purple);
}


/* =========================================
   CAROUSEL
========================================= */

.partner-carousel {
  position: relative;

  max-width: 1050px;

  margin: 0 auto;

  padding: 20px 90px;

  text-align: center;
}


/* =========================================
   WHITE PARTNER CARD
========================================= */

.carousel-partner {
  display: none;

  width: 100%;

  max-width: 760px;

  min-height: 430px;

  margin: 0 auto;

  padding: 45px 50px;

  background: white;

  color: var(--purple);

  border-radius: 16px;

  text-align: center;

  box-shadow:
    0 10px 28px rgba(59, 33, 79, 0.10);
}


/* SHOW ACTIVE PARTNER */

.carousel-partner.active {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;
}


/* =========================================
   PARTNER LOGO
========================================= */

.carousel-partner img {
  display: block;

  width: auto;

  height: auto;

  max-width: 360px;

  max-height: 180px;

  margin: 0 auto 28px;

  object-fit: contain;
}


/* =========================================
   PARTNER NAME
========================================= */

.carousel-partner h3 {
  max-width: 680px;

  margin: 0 auto 16px;

  color: var(--purple);

  font-size: clamp(
    1.7rem,
    3vw,
    2.3rem
  );

  line-height: 1.2;

  text-align: center;
}


/* =========================================
   PARTNER DESCRIPTION
========================================= */

.carousel-partner p {
  max-width: 680px;

  margin: 0 auto;

  color: var(--muted-on-cream);

  font-size: 1.05rem;

  line-height: 1.7;

  text-align: center;
}


/* =========================================
   PREVIOUS / NEXT BUTTONS
========================================= */

#partnerPrevious,
#partnerNext {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 50px;

  height: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0;

  background: var(--purple);

  color: white;

  border: none;

  border-radius: 50%;

  cursor: pointer;

  z-index: 5;
}


#partnerPrevious {
  left: 15px;
}


#partnerNext {
  right: 15px;
}


#partnerPrevious:hover,
#partnerPrevious:focus,
#partnerNext:hover,
#partnerNext:focus {
  background: white;

  color: var(--purple);

  outline: 2px solid var(--purple);
}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 700px) {

  .partners-preview-section {
    padding: 65px 0;
  }


  .partner-carousel {
    padding: 10px 0;
  }


  .carousel-partner {
    width: 100%;

    min-height: auto;

    padding: 35px 24px;
  }


  .carousel-partner img {
    max-width: 240px;

    max-height: 145px;
  }


  .carousel-controls {
    display: flex;

    justify-content: center;

    gap: 14px;

    margin-top: 25px;
  }


  #partnerPrevious,
  #partnerNext {
    position: static;

    transform: none;
  }

}


/* =========================================
   CONTACT
========================================= */

.contact-section,
#contact {
  padding: 90px 0;

  background: var(--purple);

  color: var(--cream);
}


.contact-section > .container {
  max-width: 900px;

  margin:
    0 auto;

  text-align: center;
}


.contact-section .eyebrow,
.contact-section h2,
#contact .eyebrow,
#contact h2 {
  color: var(--cream);
}


.contact-section > .container > p,
#contact > .container > p {
  max-width: 800px;

  margin-left: auto;

  margin-right: auto;

  color:
    rgba(255, 255, 255, 0.9);

  text-align: center;
}


.contact-form {
  max-width: 720px;

  display: grid;

  gap: 10px;

  margin:
    35px auto 0;

  text-align: left;
}


.contact-form label {
  color: var(--cream);

  font-weight: 700;
}


.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 14px;

  background: var(--cream);

  color: var(--purple);

  border:
    1px solid
    var(--border);

  border-radius: 8px;
}


.contact-form button,
.contact-form input[type="submit"] {
  width: fit-content;

  margin-top: 10px;

  padding:
    14px 28px;

  background: var(--cream);

  color: var(--purple);

  border:
    2px solid
    var(--cream);

  border-radius: 8px;

  font-weight: 700;

  cursor: pointer;
}


.contact-form button:hover,
.contact-form button:focus,
.contact-form input[type="submit"]:hover,
.contact-form input[type="submit"]:focus {
  background: white;

  color: var(--purple);

  border-color: white;
}


/* =========================================
   GROUPS & ACTIVITIES PAGE HERO
========================================= */

.programs-hero {
  padding:
    95px 0;

  color: var(--purple);

  text-align: center;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.24),
      rgba(255, 255, 255, 0.24)
    ),
    url("Images/purple.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;
}


.programs-hero .eyebrow,
.programs-hero h1 {
  color: var(--purple);
}


.programs-hero h1 {
  margin:
    10px auto 20px;

  color: var(--purple);

  font-size: clamp(
    3rem,
    7vw,
    5.5rem
  );

  line-height: 1;
}


.programs-hero-text {
  max-width: 850px;

  margin:
    0 auto;

  color: var(--purple);

  text-align: center;

  font-size: 1.2rem;

  font-weight: 600;
}


.programs-primary-button {
  background: var(--purple);

  color: white;
}


.programs-secondary-button {
  background: var(--cream);

  color: var(--purple);

  border-color: var(--cream);
}


/* =========================================
   GROUPS PAGE - WHO WE SERVE
========================================= */

.program-audience-section {
  padding: 75px 0;

  background: var(--cream);

  color: var(--purple);

  text-align: center;
}


.program-audience-section .eyebrow,
.program-audience-section h2 {
  color: var(--purple);
}


.program-audience-section h2 {
  margin:
    0 auto 28px;
}


.age-strip {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 12px;

  margin-bottom: 28px;
}


.age-strip span {
  padding:
    9px 16px;

  background: var(--purple);

  color: var(--cream);

  border-radius: 999px;

  font-weight: 800;
}


.audience-description {
  max-width: 800px;

  margin: 0 auto;

  color: var(--muted-on-cream);
}


/* =========================================
   SOCIAL GROUPS
========================================= */

.social-groups-section {
  padding: 95px 0;

  background: var(--cream);

  color: var(--purple);
}


.social-groups-section .program-section-heading .eyebrow,
.social-groups-section .program-section-heading h2 {
  color: var(--purple);
}


.social-groups-section .program-section-heading p {
  color: var(--muted-on-cream);
}


.group-card-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;

  align-items: stretch;
}


.group-card {
  display: flex;

  flex-direction: column;

  min-height: 500px;

  padding:
    38px 34px;

  background: var(--purple);

  color: white;

  border-radius: var(--radius);

  text-align: left;

  box-shadow:
    0 12px 28px
    rgba(59, 33, 79, 0.14);
}


.group-card .status-badge {
  display: inline-block;

  width: fit-content;

  margin-bottom: 20px;

  padding:
    7px 13px;

  background: var(--cream);

  color: var(--purple);

  border-radius: 999px;

  font-size: 0.76rem;

  font-weight: 800;

  text-transform: uppercase;
}


.group-card h3 {
  margin:
    0 0 14px;

  color: white;

  font-size: 1.5rem;

  line-height: 1.2;
}


.group-card .group-time {
  margin:
    0 0 26px;

  color: var(--cream);

  font-size: 1.05rem;

  font-weight: 700;

  line-height: 1.4;
}


.group-card p:not(.group-time) {
  margin:
    0 0 18px;

  color:
    rgba(255, 255, 255, 0.92);

  font-size: 1.03rem;

  line-height: 1.7;
}


/* ACTIVE GROUP REGISTER BUTTON */

.group-card .group-link {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: fit-content;

  margin-top: auto;

  padding:
    11px 20px;

  background: var(--cream);

  color: var(--purple);

  border:
    2px solid
    var(--cream);

  border-radius: 8px;

  text-decoration: none;

  font-size: 1rem;

  font-weight: 800;

  line-height: 1.2;
}


.group-card .group-link:hover,
.group-card .group-link:focus {
  background: white;

  color: var(--purple);

  border-color: white;
}


/* =========================================
   COMING SOON PROGRAMS
========================================= */

.expanded-programs-section {
  padding: 95px 0;

  background: var(--purple);

  color: white;
}


.expanded-programs-section .program-section-heading .eyebrow,
.expanded-programs-section .program-section-heading h2 {
  color: white;
}


.expanded-programs-section .program-section-heading p {
  color:
    rgba(255, 255, 255, 0.9);
}


.program-card-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px;
}


.program-card {
  display: flex;

  flex-direction: column;

  min-height: 390px;

  padding: 30px;

  background: var(--cream);

  color: var(--purple);

  border-radius: var(--radius);

  text-align: left;
}


.program-card .status-badge.coming-soon {
  display: inline-block;

  width: fit-content;

  margin-bottom: 15px;

  padding:
    7px 13px;

  background: var(--purple);

  color: var(--cream);

  border-radius: 999px;

  font-size: 0.76rem;

  font-weight: 800;

  text-transform: uppercase;
}


.program-card h3 {
  margin:
    0 0 14px;

  color: var(--purple);

  font-size: 1.4rem;
}


.program-card p {
  margin:
    0 0 20px;

  color: var(--muted-on-cream);

  line-height: 1.7;

  flex-grow: 1;
}


.program-interest-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: fit-content;

  margin-top: auto;

  padding:
    11px 18px;

  background: var(--purple);

  color: white;

  border:
    2px solid
    var(--purple);

  border-radius: 8px;

  text-decoration: none;

  font-weight: 800;
}


.program-interest-button:hover,
.program-interest-button:focus {
  background: white;

  color: var(--purple);
}


/* =========================================
   EXPERIENCE EXAMPLES
========================================= */

.featured-experiences-section {
  padding: 95px 0;

  background: var(--cream);

  color: var(--purple);
}


.featured-experiences-section .program-section-heading .eyebrow,
.featured-experiences-section .program-section-heading h2 {
  color: var(--purple);
}


.featured-experiences-section .program-section-heading p {
  color: var(--muted-on-cream);
}


.experience-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 24px;
}


.experience-card {
  padding: 32px;

  background: var(--purple);

  color: white;

  border-radius: var(--radius);

  text-align: left;
}


.experience-card h3 {
  margin-top: 0;

  color: white;
}


.experience-card p {
  margin-bottom: 0;

  color:
    rgba(255, 255, 255, 0.9);
}


/* =========================================
   HOMESCHOOL
========================================= */

.homeschool-section {
  padding: 95px 0;

  background: var(--purple);

  color: white;

  text-align: center;
}


.homeschool-section .narrow {
  max-width: 900px;

  text-align: center;
}


.homeschool-section .status-badge.coming-soon {
  display: inline-block;

  margin-bottom: 14px;

  padding:
    7px 13px;

  background: var(--cream);

  color: var(--purple);

  border-radius: 999px;

  font-size: 0.76rem;

  font-weight: 800;

  text-transform: uppercase;
}


.homeschool-section .eyebrow,
.homeschool-section h2 {
  color: white;
}


.homeschool-section p {
  max-width: 800px;

  margin-left: auto;

  margin-right: auto;

  color:
    rgba(255, 255, 255, 0.9);
}


.homeschool-button {
  margin-top: 20px;

  background: var(--cream);

  color: var(--purple);

  border-color: var(--cream);
}


/* =========================================
   PROGRAMS CTA
========================================= */

.programs-cta {
  padding: 90px 0;

  background: var(--cream);

  color: var(--purple);

  text-align: center;
}


.programs-cta .eyebrow,
.programs-cta h2 {
  color: var(--purple);
}


.programs-cta p {
  max-width: 780px;

  margin-left: auto;

  margin-right: auto;

  color: var(--muted-on-cream);
}


/* SCROLL TARGETS */

#social-groups,
#coming-soon,
#cooking-life-skills,
#movement-recreation,
#creative-activities,
#homeschool-programs {
  scroll-margin-top: 115px;
}


/* =========================================
   ABOUT PAGE HERO
========================================= */

.about-page-hero {
  padding:
    95px 0;

  color: var(--purple);

  text-align: center;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.24),
      rgba(255, 255, 255, 0.24)
    ),
    url("Images/purple.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;
}


.about-page-hero .eyebrow {
  color: var(--purple);
}


.about-page-hero h1 {
  margin:
    10px auto 18px;

  color: var(--purple);

  font-size: clamp(
    3rem,
    7vw,
    5.5rem
  );

  line-height: 1;
}


.about-page-intro {
  max-width: 850px;

  margin:
    0 auto;

  color: var(--purple);

  text-align: center;

  font-size: 1.35rem;

  font-weight: 600;
}


/* =========================================
   ABOUT INFORMATION CARDS
========================================= */

.about-cards-section {
  padding: 90px 0;

  background: var(--purple);
}


.about-card-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 28px;

  align-items: stretch;
}


.about-card {
  padding: 38px;

  background: var(--cream);

  color: var(--purple);

  border:
    1px solid
    var(--border);

  border-radius: var(--radius);

  text-align: left;

  box-shadow:
    0 10px 28px
    rgba(0, 0, 0, 0.08);
}


.about-card-label {
  display: inline-block;

  margin-bottom: 18px;

  padding:
    7px 14px;

  background: var(--purple);

  color: white;

  border-radius: 999px;

  font-size: 0.82rem;

  font-weight: 800;

  letter-spacing: 0.04em;

  text-transform: uppercase;
}


.about-card h2 {
  margin:
    0 0 22px;

  color: var(--purple);

  font-size: clamp(
    1.7rem,
    3vw,
    2.4rem
  );
}


.about-card p {
  color: var(--muted-on-cream);
}


.about-service-list {
  margin:
    20px 0 0;

  padding-left: 24px;

  color: var(--muted-on-cream);
}


.about-service-list li {
  margin-bottom: 12px;

  padding-left: 5px;
}


.about-service-list li::marker {
  color: var(--purple);
}


/* =========================================
   CORE VALUES
========================================= */

.core-values-section {
  padding: 90px 0;

  background: var(--cream);

  color: var(--purple);
}


.core-values-heading .eyebrow,
.core-values-heading h2 {
  color: var(--purple);
}


.core-values-heading p {
  color: var(--muted-on-cream);
}


.values-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 22px;
}


.value-card {
  padding: 30px;

  background: var(--purple);

  color: white;

  border-radius: var(--radius);

  text-align: left;

  box-shadow:
    0 8px 20px
    rgba(59, 33, 79, 0.1);
}


.value-card h3 {
  margin:
    0 0 10px;

  color: white;
}


.value-card p {
  margin-bottom: 0;

  color:
    rgba(255, 255, 255, 0.9);
}


/* =========================================
   TEAM
========================================= */

.team-section {
  padding: 90px 0;

  background: var(--purple);

  color: white;
}


.team-heading .eyebrow,
.team-heading h2 {
  color: white;
}


.team-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px;
}


.team-card {
  width: 100%;

  padding: 24px;

  background: var(--cream);

  color: var(--purple);

  border-radius: var(--radius);

  text-align: center;
}


.team-photo {
  display: block;

  width: 170px;

  height: 170px;

  margin:
    0 auto 20px;

  object-fit: cover;

  border-radius: 50%;
}


.team-info {
  padding: 0;
}


.team-info h3 {
  margin:
    0 0 6px;

  color: var(--purple);

  font-size: 1.25rem;
}


.team-info p {
  margin: 0;

  color: var(--muted-on-cream);

  font-weight: 600;
}


/* =========================================
   PARTNERS PAGE HERO
========================================= */

.partners-page-hero {
  padding:
    95px 0;

  color: var(--purple);

  text-align: center;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0.25)
    ),
    url("Images/purple.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;
}


.partners-page-hero .eyebrow,
.partners-page-hero h1,
.partners-page-hero p {
  color: var(--purple);
}


.partners-page-hero h1 {
  margin:
    10px auto 20px;

  font-size: clamp(
    3rem,
    7vw,
    5rem
  );
}


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

.partner-group {
  padding: 90px 0;
}


.foundation-partners {
  background: var(--purple);

  color: white;
}


.collective-partners {
  background: var(--cream);

  color: var(--purple);
}


.foundation-partners
.partner-section-heading h2,
.foundation-partners
.partner-section-heading .eyebrow {
  color: white;
}


.foundation-partners
.partner-section-heading p {
  color:
    rgba(255, 255, 255, 0.9);
}


.collective-partners
.partner-section-heading h2,
.collective-partners
.partner-section-heading .eyebrow {
  color: var(--purple);
}


.collective-partners
.partner-section-heading p {
  color: var(--muted-on-cream);
}


.partner-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 25px;
}


.partner-card {
  overflow: hidden;

  background: var(--cream);

  color: var(--purple);

  border-radius: var(--radius);
}


.collective-partners
.partner-card {
  background: var(--purple);

  color: white;
}


.partner-image-box {
  height: 230px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 25px;

  background: white;
}


.partner-image-box img {
  max-width: 100%;

  max-height: 180px;

  object-fit: contain;
}


.partner-card-content {
  padding: 30px;

  text-align: left;
}


.partner-card h3 {
  color: var(--purple);
}


.partner-card p {
  color: var(--muted-on-cream);
}


.collective-partners
.partner-card h3 {
  color: white;
}


.collective-partners
.partner-card p {
  color:
    rgba(255, 255, 255, 0.9);
}


.partner-link {
  display: inline-block;

  margin-top: 10px;

  font-weight: 700;
}


.foundation-partners
.partner-link {
  color: var(--purple);
}


.collective-partners
.partner-link {
  color: white;
}


/* =========================================
   FOUNDATION SUPPORT
========================================= */

.foundation-support {
  margin-bottom: 65px;
}


.foundation-support-heading {
  max-width: 850px;

  margin:
    0 auto 35px;

  text-align: center;
}


.foundation-support-heading h3 {
  margin-bottom: 10px;

  color: white;

  font-size: 1.8rem;
}


.foundation-support-heading p {
  max-width: 780px;

  margin-left: auto;

  margin-right: auto;

  color:
    rgba(255, 255, 255, 0.9);
}


.fundraising-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 22px;
}


.fundraising-card {
  display: flex;

  flex-direction: column;

  padding: 30px;

  background: var(--cream);

  color: var(--purple);

  border:
    1px solid
    var(--border);

  border-radius: var(--radius);

  text-align: left;
}


.fundraising-icon {
  width: 54px;

  height: 54px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

  background: var(--purple);

  color: white;

  border-radius: 50%;

  font-size: 22px;
}


.fundraising-card h3 {
  margin:
    0 0 12px;

  color: var(--purple);

  font-size: 1.35rem;
}


.fundraising-card p {
  margin:
    0 0 25px;

  color: var(--muted-on-cream);

  flex-grow: 1;
}


.fundraising-button {
  display: inline-block;

  margin-top: auto;

  padding:
    12px 18px;

  background: var(--purple);

  color: white;

  border-radius: 9px;

  text-decoration: none;

  font-weight: 700;

  text-align: center;
}


/* =========================================
   PARTNERS RETURN
========================================= */

.partners-return {
  padding: 80px 0;

  background: var(--purple);

  color: white;

  text-align: center;
}


.partners-return h2 {
  color: white;
}


.partners-return p {
  max-width: 800px;

  margin-left: auto;

  margin-right: auto;

  color:
    rgba(255, 255, 255, 0.9);
}


.return-home-button {
  margin-top: 18px;

  background: var(--cream);

  color: var(--purple);

  border-color: var(--cream);
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
  padding: 40px 0;

  background: var(--purple);

  color: white;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.15);
}


.footer-inner {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 30px;
}


.footer-brand {
  display: flex;

  flex-direction: column;

  gap: 8px;
}


.footer-copyright {
  margin: 0;

  color: white;
}


.footer-location {
  display: block;

  margin-top: 4px;
}


.footer-location p {
  margin:
    2px 0;

  color: var(--cream);

  line-height: 1.5;
}


.footer-service-area {
  font-size: 1rem;

  font-weight: 700;
}


.footer-event-location {
  font-size: 0.9rem;

  font-weight: 500;
}


.social-links {
  display: flex;

  align-items: center;

  gap: 14px;
}


.social-links a {
  width: 44px;

  height: 44px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--cream);

  color: var(--purple);

  border-radius: 50%;

  text-decoration: none;

  font-size: 22px;
}


.social-links a:hover,
.social-links a:focus {
  background: white;
}


.footer-links {
  display: flex;

  gap: 20px;
}


.footer-links a {
  color: white;

  text-decoration: none;
}


.footer-links a:hover,
.footer-links a:focus {
  text-decoration: underline;

  text-underline-offset: 4px;
}


/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 1000px) {

  .mm-desktop-menu {
    display: none;
  }


  .mm-mobile-menu {
    display: block;
  }


  .hero-content {
    grid-template-columns: 1fr;

    gap: 40px;
  }


  .hero .button-group {
    justify-content: center;
  }


  .hero-content > div:first-child {
    text-align: center;
  }


  .hero h1,
  .hero-text {
    margin-left: auto;

    margin-right: auto;
  }


  .program-preview-grid,
  .upcoming-events-grid,
  .program-card-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .group-card-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .group-card {
    min-height: 460px;
  }


  .team-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .fundraising-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .partner-carousel {
    padding-left: 70px;

    padding-right: 70px;
  }


  .carousel-partner img {
    max-width: 300px;
  }


  #partnerPrevious {
    left: 10px;
  }


  #partnerNext {
    right: 10px;
  }


  .home-about .about-flower {
    width: 170px;

    max-width: 170px;

    opacity: 0.8;
  }

}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 700px) {

  body {
    font-size: 17px;
  }


  .mm-header {
    min-height: 82px;
  }


  .company-logo {
    height: 52px;
  }


  .company-name {
    max-width: 145px;

    white-space: normal;

    font-size: 1rem;

    line-height: 1.2;
  }


  .section,
  .upcoming-section,
  .programs-preview-section,
  .contact-section,
  .social-groups-section,
  .expanded-programs-section,
  .featured-experiences-section,
  .homeschool-section,
  .programs-cta,
  .about-cards-section,
  .core-values-section,
  .team-section,
  .partner-group {
    padding:
      65px 0;
  }


  /* HOME HERO */

  .hero {
    padding:
      65px 0 75px;
  }


  .hero h1 {
    font-size: clamp(
      2.5rem,
      12vw,
      4rem
    );
  }


  .hero-card {
    padding: 27px;
  }


  /* WHO WE SERVE */

  .home-who-we-serve {
    padding:
      55px 0;
  }


  .home-who-we-serve-content {
    width: 90%;

    padding:
      38px 24px;
  }


  .home-age-list {
    gap: 8px;

    font-size: 1rem;
  }


  .home-age-list span:nth-child(even) {
    display: none;
  }


  .home-age-list
  span:not(:nth-child(even)) {
    padding:
      8px 12px;

    background: var(--purple);

    color: var(--cream);

    border-radius: 999px;
  }


  /* HOME ABOUT */

  .home-about {
    min-height: auto;

    padding:
      65px 0;
  }


  .home-about .about-flower {
    display: none;
  }


  .home-about-content {
    max-width: 92%;
  }


  /* GRIDS */

  .program-preview-grid,
  .upcoming-events-grid,
  .group-card-grid,
  .program-card-grid,
  .experience-grid,
  .about-card-grid,
  .values-grid,
  .team-grid,
  .partner-grid,
  .fundraising-grid {
    grid-template-columns: 1fr;
  }


  .program-preview-card,
  .upcoming-event-card,
  .group-card,
  .program-card {
    min-height: auto;
  }


  .group-card,
  .program-card,
  .program-preview-card,
  .upcoming-event-card {
    padding: 26px;
  }


  .group-card .group-link,
  .program-interest-button,
  .upcoming-register-button {
    width: 100%;

    text-align: center;
  }


  /* CAROUSEL */

  .partners-preview-section {
    padding:
      65px 0;
  }


  .partner-carousel {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    padding:
      10px 0 0;
  }


  .carousel-partner {
    flex:
      0 0 100%;

    max-width: 100%;
  }


  .carousel-partner img {
    max-width: 240px;

    max-height: 150px;

    margin-bottom: 22px;
  }


  .carousel-controls {
    display: flex;

    justify-content: center;

    gap: 14px;

    width: 100%;

    margin-top: 28px;
  }


  #partnerPrevious,
  #partnerNext {
    position: static;

    transform: none;
  }


  /* ABOUT + PROGRAM HERO */

  .about-page-hero,
  .programs-hero,
  .partners-page-hero {
    padding:
      70px 0;
  }


  .about-card,
  .value-card {
    padding: 28px;
  }


  .team-photo {
    width: 150px;

    height: 150px;
  }


  /* FOOTER */

  .footer-inner {
    flex-direction: column;

    align-items: flex-start;
  }


  .footer-links {
    flex-wrap: wrap;
  }

}

/* =========================================
   HIDE ABOUT FLOWERS ON SMALLER SCREENS
========================================= */

@media screen and (max-width: 1250px) {

  .home-about img.about-flower,
  .home-about img.about-flower-left,
  .home-about img.about-flower-right {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

}