/* Hero CTA buttons — matches LMYC header / site button system */

#hero .slide-text.small-content {
  margin-bottom: 0;
}

#hero .multiple-buttons.lmyc-hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem 1rem;
  width: 100%;
  max-width: 42rem;
  margin: 2rem auto 0;
  padding: 0 1rem;
}

#hero .lmyc-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-family: var(--font-body-family, "Montserrat", sans-serif);
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

#hero .lmyc-hero-btn:focus-visible {
  outline: 2px solid #fdf8f3;
  outline-offset: 3px;
}

#hero .lmyc-hero-btn__icon {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition: filter 0.28s ease;
}

/* Primary — Book Now */
#hero .lmyc-hero-btn--primary,
#hero .lmyc-hero-btn--primary.lmyc-book-now-hero-btn {
  background: linear-gradient(165deg, #425936 0%, #35472c 100%) !important;
  color: #ffffff !important;
  border-color: #425936 !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

#hero .lmyc-hero-btn--primary:hover,
#hero .lmyc-hero-btn--primary:focus-visible,
#hero .lmyc-hero-btn--primary.lmyc-book-now-hero-btn:hover,
#hero .lmyc-hero-btn--primary.lmyc-book-now-hero-btn:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(165deg, #35472c 0%, #303d1c 100%) !important;
  color: #d18e95 !important;
  border-color: #35472c !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

#hero .lmyc-hero-btn--primary:hover .lmyc-hero-btn__icon,
#hero .lmyc-hero-btn--primary:focus-visible .lmyc-hero-btn__icon {
  filter: none;
}

/* Secondary — Explore Practices */
#hero .lmyc-hero-btn--secondary,
#hero .lmyc-hero-btn--secondary.lmyc-explore-services-btn {
  background: #fffef4 !important;
  color: #425936 !important;
  border-color: #fdf8f3 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

#hero .lmyc-hero-btn--secondary:hover,
#hero .lmyc-hero-btn--secondary:focus-visible,
#hero .lmyc-hero-btn--secondary.lmyc-explore-services-btn:hover,
#hero .lmyc-hero-btn--secondary.lmyc-explore-services-btn:focus-visible {
  transform: translateY(-2px);
  background: #ffffff !important;
  color: #303d1c !important;
  border-color: #ffffff !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

#hero .lmyc-hero-btn:active {
  transform: translateY(0);
}

@media screen and (max-width: 575px) {
  #hero .multiple-buttons.lmyc-hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 20rem;
    margin-top: 1.75rem;
  }

  #hero .lmyc-hero-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  #hero .lmyc-hero-btn {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  #hero .lmyc-hero-btn:hover,
  #hero .lmyc-hero-btn:focus-visible,
  #hero .lmyc-hero-btn:active {
    transform: none;
  }
}
