/* Custom CSS goes here */
/* Apply Unbounded font to all heading tags */
h1, h2, h3, h4, h5, h6,
.et_pb_module h1,
.et_pb_module h2,
.et_pb_module h3,
.et_pb_module h4,
.et_pb_module h5,
.et_pb_module h6 {
    font-family: 'Unbounded', sans-serif !important;
}

/* Optional: Set specific weights for different heading levels */
h1 { font-weight: 700; }
h2 { font-weight: 600; }
h3 { font-weight: 500; }
h4 { font-weight: 400; }
h5 { font-weight: 400; }
h6 { font-weight: 300; }

/* Button Styles */
.gold-glide-button {
  text-decoration: none;
  isolation: isolate;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 48px;
  border-radius: 9999rem;
  background: transparent;
  position: relative;
  border: none;
  cursor: pointer;
  transition: all 200ms ease-out;
  width: 90%;
  max-width: 250px;
}

.gold-glide-button .back {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #b59f5b; /* gold border */
  border-radius: inherit;
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  transition: all 200ms ease-out;
}

.gold-glide-button .back::before {
  content: "";
  width: 0;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #b59f5b; /* gold fill */
  position: absolute;
  transition: all 200ms ease-out;
}

.gold-glide-button:hover {
  color: white;
}

.gold-glide-button:hover .back {
  transform: scale(0.95);
}

.gold-glide-button:hover .back::before {
  width: 120%;
}

.gold-glide-button:active .back {
  transform: scale(0.9);
}

/* Hover Effect Header Underlines */
#menu-main-menu .current-menu-item a::before,
#menu-main-menu .current_page_item a::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
}

#menu-main-menu li a:before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  margin-top: 25px;
  right: 100%;
  background: #C6B35F !important; /*** UPDATED COLOR OF THE LINE ***/
  height: 3px; /*** THICKNESS OF THE LINE ***/
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

#menu-main-menu li a:hover {
  opacity: 1 !important;
}

#menu-main-menu li a:hover:before {
  right: 0;
}

#menu-main-menu li li a:before {
  bottom: 10%;
}

/* Reveal on Scroll */
/* Initial State (Frontend) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Active State */
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Override for Divi Visual Builder */
body.et-fb .reveal-on-scroll {
  opacity: 1 !important;
  transform: translateY(0) !important;
}