/* Reset + layout */
* {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

/* Color Palette */
:root {
  --PrimaryColor: #5f8369; /* Buttons, highlights, logo */
  --SupportingColorWhite: #f8f6f0; /* Backgrounds */
  --SupportingColorGray: #a8b2a1; /* Backgrounds */
  --SupportingColorSlate: #2e2e2e; /* Body text, footer */
  --AccentColorRose: #c27664; /* Accent buttons, sections, icons */
  --AccentColorGold: #d4b483; /* Accent buttons, sections, icons */
  --HighlightColorGrace: #afcfea; /* Quotes, testimonials, spiritual touchpoints */
}

.bg-primary-custom {
  background-color: var(--PrimaryColor) !important;
}

.bg-light-custom {
  background-color: var(--SupportingColorWhite) !important;
}

/* Navbar */
.navbar {
  background-color: var(--SupportingColorWhite) !important;
  box-shadow: 0 5px 15px var(--SupportingColorSlate);
}

.navbar-brand img {
  height: 2.5rem;
}

@media screen and (min-width: 992px) {
  .collapse {
    margin-left: -2.5em;
  }
}

.nav-link {
  color: var(--SupportingColorWhite);

  text-decoration-line: underline !important;
  text-decoration-color: transparent !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 0.5em !important;
  font-weight: bold !important;

  transition: color 0.3s ease, text-decoration-color 0.3s ease,
    transform 0.1s ease !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--PrimaryColor) !important;
  text-decoration-color: var(--PrimaryColor) !important;
  transform: scale(1.01) !important;
}

.nav-link.active {
  color: var(--PrimaryColor);
}

.c-img {
  object-fit: cover;
}

@media screen and (min-width: 770px) {
  .c-carousel,
  .c-img {
    height: 85vh;
  }
}

.btn-primary-custom {
  background-color: var(--PrimaryColor) !important;
  color: white !important;
  border: none;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-custom:hover {
  background-color: #759d82 !important;
}

.brand-intro {
  background-color: var(--SupportingColorWhite);
  color: var(--SupportingColorSlate);
}

.brand-intro .text-primary {
  color: var(--PrimaryColor) !important;
}

.brand-intro .btn-outline-dark {
  border-color: var(--PrimaryColor);
  color: var(--PrimaryColor);
}

.brand-intro .btn-outline-dark:hover {
  background-color: var(--PrimaryColor);
  color: var(--SupportingColorWhite);
}

.category-card {
  border: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  background-color: var(--SupportingColorWhite);
  border-radius: 1rem;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.category-card img {
  height: 200px;
  object-fit: contain;
}

.category-card .card-title {
  color: var(--SupportingColorSlate);
  font-weight: 600;
  margin-top: 0.5rem;
}

.founder-message {
  background-color: #f2efe7; /* Soft warm beige to contrast with green */
  color: var(--SupportingColorSlate);
}

.founder-message .lead {
  color: var(--SupportingColorSlate);
  font-size: 1.1rem;
}

.founder-signature {
  font-family: "Dancing Script", cursive;
  font-size: 1.75rem;
  color: var(--AccentColorRose);
  margin-top: 1rem;
}

.social-section {
  background-color: var(--SupportingColorWhite);
  color: var(--SupportingColorSlate);
}

.socialRowCustom {
  width: 100%;
  display: flex;
  padding: 0 5em;
}

.social-icon {
  font-size: 1.75rem;
  width: 5rem;
  height: 5rem;
  margin: auto;
  display: flex;
  border-radius: 50%;
  color: var(--SupportingColorSlate);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.social-icon:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.social-hoodie {
  width: 5rem;
  height: 5rem;
  margin: auto;
  border-radius: 50%;
  height: auto;
  transition: transform 0.3s ease;
}

.social-hoodie:hover {
  transform: scale(1.1);
}

.social-text {
  color: var(--SupportingColorSlate);
  font-size: 16px;
  font-weight: 700;
}

.social-hoodie-text {
  text-decoration: none;
}

#socialFacebook {
  color: darkblue;
}

#socialInstagram {
  color: purple;
}

#socialTiktok {
  color: black;
}

.testimonials {
  background-color: var(--SupportingColorGray);
}

.testimonial {
  background-color: white;
  border-left: 5px solid var(--PrimaryColor);
  font-style: italic;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

footer a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

/* When blur is active */
.blur-active {
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.3s ease;
}
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

#backBtnNavReturn:hover {
  cursor: pointer;
}
