
/* Site Header */
.site-header {
    background: var(--color-dark);
    width: 100%;
    top: 0;
    z-index: 99;
    transition: 
        background 0.3s ease,
        transform 0.4s cubic-bezier(0.4,0,0.2,1);
    transform: none;
}
/* .site-header.show {
    transform: translateY(-100px);
} */
.site-header.show.fixed {
    position: sticky;
    top: 0;
    left: 0;
    /* transform: translateY(0); */
    opacity:1;
    z-index: 99;
}


/* Header Inner: 3 Column Flex */
/* flex-direction: row; is added */
.header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    height:90px; /* 100px header height */
    position: relative;
}

/* Logo */
.site-logo {
    flex: 0 0 auto; /* No grow, no shrink */
    width: 247px;
  
}
.site-logo img {
    max-height: 48px;
    display: block;
}

/* Navigation */
.main-navigation {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-17%, -50%) ;
}

.main-navigation .main-menu {
    display: flex;
    align-items: center;
    gap:30px; /* Gap between menu items */
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation .main-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-family:var(--font-body);
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 10px 0;
    text-transform: uppercase;
}

.main-navigation .main-menu li a:hover {
    color: var(--color-primary);
}

/* Buttons */
.header-buttons {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px; /* Slightly bigger gap between buttons */
}

.btn.btn-orange {
    background-color: var(--color-primary);
    color: #ffffff;
    width: 141.43px;        /* Fixed width */
    height: 43px;           /* Fixed height */
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;       /* Semi Bold */
    font-size: 15px;        /* Font size 15px */
    font-family: var(--font-body);
    border: 2px solid var(--color-primary);
    cursor: pointer;
    line-height: 1;         /* Perfect vertical centering */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Button Hover Effect */
.btn.btn-orange:hover {
    background-color: #ffffff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

/* Responsive */

/* menu toggle  */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 17px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #fff;
  transition: 0.3s;
}

.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}