/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, header, main {
  width: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  border: 0px solid green;
}

.header {
  width: 100%;
  padding: 10px, 0;
  z-index: 1;
}

.test{
  position: relative;
  display: block;
}

.main {
  min-height: calc(100vh-100px);
  margin-top: 90px;
  box-sizing: border-box;
}

section {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  min-height: 250px;
  background-color: white;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5em;
    
}
.grid {
  display: grid;
}

.grid-item {
  padding: 1px;
}

.flexbox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-items: center;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
}
.flex-item {
  flex: 0 0 auto;
  padding: 1px;
}

hr{
  border: 1px solid black; 
}


h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.00rem;
}

p {
  font-size: 1rem;
}

.card {
  border-radius: 25px;
  box-shadow: 10px 5px 10px rgba(0,0,0,0.5);
}

.alert {
  width: 100%;
  background-color: rgba(252, 93, 48, 0.25);
  padding: 10px 0;
  display: flex;
  visibility: visible;
}

.alert__p {
  font-size: 1.25rem;
  font-weight: bold;
}

/* Fixed Navbar */
.nav {
  min-height: 90px;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.navbar {
  width: 100%;
  padding: 1rem;
  margin: auto;
    
}

.navbar__logo {
  grid-column: 1;
  margin: auto;
}

.navbar__menu {
  grid-column: 2;
  margin: auto;
  padding: 1em;
}

.navbar__menu ul {
  list-style-type: none;
  font-size: 1em;
}

.navbar__btn {
  grid-column: 3;
  width: 150px;
  margin: auto;
}

.navbar__cta {
  height: 3em;
  width: 150px;
  border-radius: 15px;
  background-color: rgb(202, 248, 248);
  font-weight: bold;
}

/* Hero Section */
.hero {
  height: 30rem;
  background-image: url("../images/hero v2.jpg");
  background-position: center; 
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-container {
  width: 100%;
  flex-wrap: wrap;
}

.hero__msgbox {
  min-height: 15em;
  max-width: 25em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 3em;
  margin-left: 55%;
  padding: 1.5em;
  z-index: auto;
  justify-self: flex-end;
  animation: slideInFromRight 1s ease-in;
  color: white;
  border-radius: 25px;
  background-color: rgba(156,80,159,0.8); 
}

.hero__msg  h1{
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2em;
  margin: auto;
}

.hero__msg  h2 {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2em;
  margin: 1em auto;
}

.hero__btn {
  align-items: center;
  width: 55%;
  height: 4em;;
  background-color: #fbb8f3;
  margin: 0 25%;
  border-radius: 25px;
  font-weight: bold;
  box-shadow:10px 5px 10px rgba(0,0,0,0.5);
}

/* hero msg box slider animation */
@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}


/* What We Do */
.purpose {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  min-height: max-content;
  background-color: #d6bbd3;
  
}

.purpose__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin: 1em auto;
  padding: 1em;    
}

.purpose__h1 {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1em;
  text-align: center;
  margin: auto;
}

.offerings {
  width: 100%;
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
  
.offerings .card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9em;
  height: 9em;
  padding: 1em;
  margin:auto;
  border-radius: 50%;
  font-weight: bold;
  background-color: #f5e8f4;
  box-shadow: 10px 5px 10px rgba(0,0,0,0.5);
}

.offerings .card span {
  text-align: center;
  word-wrap: break-word;
}

/* Who are We */
.hsa {
  /* HSA Section */
  width: 100%;
  min-height: max-content;
}

.hsa__container {
  width: 100%;
  min-height: max-content;
  margin: 1rem auto;
  display: grid;
  grid-template-columns: 65% 25%;
  grid-gap: 5rem;
}

.hsa__text {
  width: 100%;
  grid-column: 1;
  text-align: left;
  align-items: center;
  padding: 1rem 1.5rem 1rem 0;
}

.hsa__h2 {
  font-size: 1.5rem;
  text-align: left;
  line-height: 2em;
}

.hsa__p {
  font-size: 1.2em;
  text-align: left;
}

.hsa__btn {
  width: 10rem;
  height: 2.5rem;
  margin: 1.5rem auto;
  border-radius: 20px;
  box-shadow: 10px 5px 10px rgba(0,0,0,0.5); 
  background-color: #fbb8f3;
  color: #000;
  font-weight: bold;
  text-align: center;
}

.hsa__image {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  grid-column: 2;
  min-height: max-content; 
}

.hsa__image img {
  height: 15rem;
}

/* in-store products image */
.hsa-display {
  width: 100%;
  background-color: #a387a4;
}

.hsa-display__container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  min-height: max-content;
}

.hsa-display__image {
  width: 100%;
  height: auto;
  display: block;
}
  
/* Coming Events */
.events {
  background-color: rgba(135, 210, 210, 0.5); 
  display: flex;
  min-height: max-content;
  padding-top: 1.5rem;
}

.events__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: max-content; 
}

.events__banner {
  width: 80%;
  text-align: center;
}

.events__h2 {
  width: 100%;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  
}

.events__p {
  width: 100%;
  text-align: center;
} 

.events__title {
  width: 100%;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  margin: 1em; 
}

.events__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}

.events__card {
  flex: 1 1 calc(33% - 2em); 
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.events__card__image img {
  width: 100%;
  height: auto;
}

.events__card__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  margin-top: auto;
  margin-bottom: 1rem;
  padding: .5rem;
  width: 10rem;
  height: 2.5rem;
  border-radius: 20px;
  box-shadow: 10px 5px 10px rgba(0,0,0,0.5); 
  background-color: #fbb8f3;
  color: #000;
  text-align: center;
}

.events__card__title,
.events__card__freq,
.events__card__details {
  margin-top: .5em; 
  text-align: center;
}

.events__link {
  margin-top: 2em; 
  text-align: center;
}

.events__link__btn {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 1em 2em;
  background-color: #fbb8f3;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s;
  font-weight: bold;
}

.events__link__btn:hover {
  background-color: #f1baf8;
}
  
.store {
  display: flex;
  justify-content: center;
  min-height: max-content;
    
}
  
.store__container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: space-between;
}
.store__image {
  border: 1px solid orangered;

}

.store__text {
  border: 1px solid red;

}

.bio {
  min-height: max-content;
    
}

.bio__sharron {
  min-height: max-content;
  border: 1px solid red;
}

.bio__image {
  min-height: max-content;
  border: 1px solid red;
}

.bio__text {
  min-height: max-content;
  border: 1px solid red;
}

.socialproof {
  min-height: max-content; 
  padding: 0.5%;
  }

.socialproof__header {
  min-height: max-content;
  padding: 0.5%;
}

.socialproof_title {
  min-height: max-content;
}

/* flex-container for testimonials */

.socialproof__cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: max-content;
  margin: 0.5% 0.5%;
  padding: 1% 2%;
  justify-content: space-around;
}

.socialproof__card {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: auto;
  border-radius: 5%;
  background-color: #f5e8f4;
  box-shadow: 10px 5px 10px rgba(0,0,0,0.5);
  text-align: center;
  margin: 1%;
  padding: 0.5em 0.5em 1%;
}

.socialproof__card blockquote {
  position: relative;
  font-style: italic; /* Typically, quotations are italicized */
  padding: 1em 2em 2cm 2em; /* Add some padding to avoid touching the quote images */
  text-align: center; /* Center the quote text */
  margin: 0 0 5em;
  height: 50%;
  
}

.socialproof__card blockquote::before,
.socialproof__card blockquote::after {
  content: open-quote; /* CSS provides default quotation marks */
  font-size: 3em; /* Large size for emphasis */
  line-height: 0.1em; /* Adjust line-height to control vertical position */
  margin-right: 0.2em; /* Optional: adjust horizontal position */
  vertical-align: -0.4em; /* Adjust vertical alignment to match your design */
  color: #777676; /* Light color for the quote marks, adjust as needed */
}

.socialproof__card blockquote::after {
  content: close-quote; /* Use close-quote for the closing marks */
  margin-left: 0.2em;
}

.socialproof__card image-name{
  margin: 0;
}

.socialproof__card img{
  display: block;
  margin: auto;
  width: 40%;
  
}

.socialproof__card .testimonial-signature{
  text-align: center;
  padding-top: 5px;
  
}

.socialproof__card .testimonial-source{
  font-size: 0.8em;  
  color: #666;  
  text-align: center;
  font-style: italic;
}

.calendar{
  width: 100%;
  height: auto;
  min-height: max-content;
  margin-bottom: 20px;
}

.tbd {
  min-height: max-content; 
  border: 1px solid green;
}

  /* Footer */
footer {
  width: 100%;
  height: auto;
  background-color: #d6bbd3;  
  margin-top: auto;
    
  }
  
  .footer-container {  
    width: 100%;
    display: flex;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
  }
  
  .grid-item {
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
    
  }
  
  .footer__logo {
    grid-column: 1/2;  
  }
  
  .copywrite {
    font-size: x-small;
    padding: 0 auto;;
  }
  
  .footer__nav {
    grid-column: 2/3;
  }
  
  footer ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style-type: none;
  }
  
  
  .social {
    grid-column: 3/4;
    display: flex;
    align-items: center;
  }
  
  
  .footer__social a {
    padding: 10px;
  }
  
  .fa-facebook:hover {
    color: #B32E87;
    ;
  }
  
  .fa-instagram:hover {
    color: #B32E87;
  }
