*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", "Maison Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  background-color: #d5d6dc;
  /* ltGrey */
  overflow-x: hidden;
  color: #2d314e;
}

/* Tight kerning (reduced tracking) */
.kerning-tight {
  letter-spacing: -0.01em;
}

/* Utility Colors (As Per Client Spec) */
:root {
  --dkBlue: #2d314e;
  --ltBlue: #818395;
  --ltGrey: #d5d6dc;
  --mdGrey: #c0c1c6;
  --dkGrey: #808084;
  --gBlue: #9698a6;
}

/* Ensure first section clears header */
section:first-of-type {
  padding-top: 100px;
}


/*  HEADER + LOGO BEHAVIOR                 */


/* Default (on page load) — transparent and a bit taller */
#mainHeader {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  height: 70px;
  background: transparent;

  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

/* When scrolled — solid color, slightly smaller */
#mainHeader.scrolled {
  /* height: 70px; */
  /* shrink slightly */
  background-color: rgba(213, 214, 220, 1);
  /* solid */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

/* Logo transition effect */
#headerLogo img {
  height: 50px;
  /* default logo size */
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
  margin-top: -4px;
}

/* Smaller logo when scrolled */
/* #mainHeader.scrolled #headerLogo img {
  height: 40px; */
  /* smaller on scroll */
  #mainHeader.scrolled #headerLogo img {
  height: 40px !important;

  margin-top: 0;
}


/* FADE & SLIDE ANIMATIONS                       */


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-in-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s ease-in-out;
}

.slide-in-right.show {
  opacity: 1;
  transform: translateX(0);
}


/* MENU (Sidebar)                                */


#sideMenu {
  transition: right 0.5s ease-in-out;
}


/* LOGO ALIGNMENT FIX (HEADER)                   */

header img {
  display: block;
  object-fit: contain;
}

#menuBtn svg path {
  transition: all 0.3s ease;
}

#menuBtn.open svg path:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#menuBtn.open svg path:nth-child(2) {
  opacity: 0;
}

#menuBtn.open svg path:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* GOOGLE REVIEW CARDS (Client Widget Styling)   */

.elfsight-app-bd101122-7696-4664-a0ff-b5bae3079993 .eapps-google-reviews__review-inner,
.elfsight-app-bd101122-7696-4664-a0ff-b5bae3079993 .eapps-google-reviews__review-item,
.elfsight-app-bd101122-7696-4664-a0ff-b5bae3079993 .eapps-google-reviews__reviews-item,
.elfsight-app-bd101122-7696-4664-a0ff-b5bae3079993 .eapps-google-reviews__review {
  background: #ffffff !important;
}