/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 67:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.adam-section {
  padding: 40px 20px;
  background-color: #f9f6ee;
  text-align: center;
}
.adam-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #093c2f;
}
.adam-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.adam-card {
  background-color: #fff3df;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.adam-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.adam-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #093c2f;
}
.adam-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
  min-height: 60px;
}
.adam-card a {
  background-color: #03371d;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}
.adam-card a:hover {
  background-color: #045d33;
}
</style>
.hero-section-container {
  position: relative;
  min-height: var(--section-min-height-desktop);
  background-image: var(--bg-image-desktop);
  background-size: cover;
  background-position: center;
  display: flex; /* For vertical alignment of content-wrapper */
  color: #FFFFFF; /* Default text color, overridden by specific settings */
  overflow: hidden; /* Ensures no spillage */
}

.hero-section-container--full-bleed {
  /* This attempts to make the section span the full viewport width.
     It works best if the theme doesn't add excessive padding/margins to the
     main <section> tag itself, or if the theme has its own full-width utility. */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}
/* If your theme adds padding to .shopify-section, you might need this in your theme's global CSS:
   .shopify-section--hero-image-pro.has-full-bleed-background { padding: 0 !important; max-width: 100vw !important; }
   Then add `{% if section.settings.full_bleed_background %}has-full-bleed-background{% endif %}` to section tag class.
*/

.hero-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color);
  opacity: var(--overlay-opacity);
  z-index: 1;
  pointer-events: none; /* Allow clicks to pass through if needed */
}

.hero-section__content-wrapper {
  position: relative; /* To sit above overlay */
  z-index: 2;
  width: 100%;
  height: 100%; /* Takes full height for vertical alignment */
  display: flex; /* Used for aligning .hero-section__text-content */
  padding: 30px; /* Base padding, adjust as needed */
  box-sizing: border-box;
}

/* Standard page-width constraint, often provided by themes */
.hero-section__content-wrapper.page-width {
  max-width: var(--page-width, 1200px); /* Use theme's page width variable or a sensible default */
  margin-left: auto;
  margin-right: auto;
}

/* Alignment for hero-section__text-content within hero-section__content-wrapper */
.hero-section__content-wrapper--align-top-left { justify-content: flex-start; align-items: flex-start; }
.hero-section__content-wrapper--align-top-center { justify-content: center; align-items: flex-start; }
.hero-section__content-wrapper--align-top-right { justify-content: flex-end; align-items: flex-start; }

.hero-section__content-wrapper--align-middle-left { justify-content: flex-start; align-items: center; }
.hero-section__content-wrapper--align-middle-center { justify-content: center; align-items: center; }
.hero-section__content-wrapper--align-middle-right { justify-content: flex-end; align-items: center; }

.hero-section__content-wrapper--align-bottom-left { justify-content: flex-start; align-items: flex-end; }
.hero-section__content-wrapper--align-bottom-center { justify-content: center; align-items: flex-end; }
.hero-section__content-wrapper--align-bottom-right { justify-content: flex-end; align-items: flex-end; }

.hero-section__text-content {
  display: flex;
  flex-direction: column;
  width: 100%; /* Allow text content to take available width for text-align to work */
  max-width: var(--content-max-width, 800px); /* Max width for the text block itself */
}

/* Text alignment for items within hero-section__text-content */
.hero-section__content-wrapper--align-top-left .hero-section__text-content,
.hero-section__content-wrapper--align-middle-left .hero-section__text-content,
.hero-section__content-wrapper--align-bottom-left .hero-section__text-content {
  align-items: flex-start;
  text-align: left;
}
.hero-section__content-wrapper--align-top-center .hero-section__text-content,
.hero-section__content-wrapper--align-middle-center .hero-section__text-content,
.hero-section__content-wrapper--align-bottom-center .hero-section__text-content {
  align-items: center;
  text-align: center;
}
.hero-section__content-wrapper--align-top-right .hero-section__text-content,
.hero-section__content-wrapper--align-middle-right .hero-section__text-content,
.hero-section__content-wrapper--align-bottom-right .hero-section__text-content {
  align-items: flex-end;
  text-align: right;
}

.hero-section__title {
  font-size: var(--title-size-desktop);
  color: var(--title-color);
  margin-top: 0;
  margin-bottom: 0.5em; /* Relative to current font size */
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}

.hero-section__subtitle {
  font-size: var(--subtitle-size-desktop);
  color: var(--subtitle-color);
  margin-top: 0;
  margin-bottom: 1.5em; /* Relative to current font size */
  line-height: 1.6;
  word-break: break-word;
}
.hero-section__subtitle p { /* Target p tags from richtext */
  margin-top: 0;
  margin-bottom: 0.5em;
}
.hero-section__subtitle p:last-child {
  margin-bottom: 0;
}

.hero-section__button {
  display: inline-block; /* Allows text-align to work on its parent for positioning */
  padding: 0.8em 1.8em; /* em-based padding for scalability */
  background-color: var(--button-bg-color);
  color: var(--button-text-color);
  text-decoration: none;
  border-radius: 5px; /* Or use a theme variable */
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem; /* Base button font size, can be made configurable */
  text-align: center;
  min-width: 150px; /* Ensure button has a decent minimum width */
}

.hero-section__button:hover {
  /* Create a slightly darker/lighter version for hover based on brightness */
  /* This is a simplified hover, consider more advanced color mixing if needed */
  filter: brightness(90%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 749px) { /* Shopify's small breakpoint (mobile) */
  .hero-section-container {
    min-height: var(--section-min-height-mobile);
    background-image: var(--bg-image-mobile);
  }
  .hero-section__content-wrapper {
    padding: 20px; /* Slightly less padding on mobile */
  }
  .hero-section__text-content {
     max-width: 100%; /* Allow text content to use more width on mobile */
  }
  .hero-section__title {
    font-size: calc(var(--title-size-desktop) * 0.65); /* Scale down title */
    margin-bottom: 0.4em;
  }
  .hero-section__subtitle {
    font-size: calc(var(--subtitle-size-desktop) * 0.85); /* Scale down subtitle */
    margin-bottom: 1.2em;
  }
  .hero-section__button {
    padding: 0.7em 1.5em;
    font-size: 0.9rem; /* Slightly smaller button text */
    width: auto; /* Allow button to size to content, or set to 100% if desired for some layouts */
    /* Example: if text-align is center, you might want the button to be wider: */
    /* .hero-section__content-wrapper--align-*-center .hero-section__text-content .hero-section__button { width: 80%; max-width: 300px; } */
  }
}