.sticky-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: black;
}
.site-header {
  background-color: black !important;
  border-bottom: 1px solid #E7BF71;
}

.fixed-nav {
  background-color: black;
  z-index: 999;
  position: sticky;
  top: 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 40px 40px;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.85px;
  color: #FFFFFF;
  text-decoration: none;
}

.nav-link.active {
  color: #FFC400;
}

/* Keep non-active links white on hover */
.nav-link:hover {
  color: #FFFFFF;
}

/* White line below nav */
.nav-line {
  border-top: 1px solid white;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Floating icon below the line */
.nav-floating-icon {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 6px;
  z-index: 2;
}

.nav-floating-icon img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.hover-icon {
  position: relative;
}

.hover-icon::after {
    content: "";
    position: absolute;
    top:  calc(100% + 6px);     
    left: 50%;
    transform: translateX(-50%);
    width: 24px;                
    height: 24px;
    background: url("../img/Menu_Icon.png") center / contain
                no-repeat;
    opacity: 0;                
    pointer-events: none;      
    transition: opacity .25s ease;
}

.hover-icon:hover:not(:has(.nav-link.active))::after {
    opacity: 1;
}

/* Keep active links yellow even on hover */
.nav-link.active:hover {
  color: #FFC400;
}

.contact-info-row {
  margin-top: 48px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid white;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.85px;
  text-transform: uppercase;
}

.contact-info-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.contact-item {
  flex: 1;
}

