/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: stretch;
  height: 80px;
  background: transparent;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Header Left - Logo Zone */
.header-left {
  display: flex;
  align-items: center;
  gap: 1px;
  padding left: ;: 0 24px;
  background: var(--white);
  min-width: 240px;
  border-radius: 0 0 12px 0;
}

.header-logo {
  height: 60px;
  width: ;
}

.header-brand {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--olive-leaf);
  font-weight: 400;
}

/* Header Right - Actions Zone */
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 0 24px;
  background: var(--olive-leaf);
}

/* Header CTA Button */
.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--white);
  color: var(--olive-leaf);
  border: none;
  border-radius: var(--button-radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  min-height: 44px;
}

.header-cta:hover,
.header-cta:focus {
  background: var(--golden-bronze);
  color: var(--white);
  transform: translateY(-1px);
}

/* Menu Button - 9 Dots Grid */
.header-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 8px;
}

.header-menu-btn:hover,
.header-menu-btn:focus {
  background: rgba(255, 255, 255, 0.1);
}

.dots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  width: 18px;
  height: 18px;
}

.dot {
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.header-menu-btn:hover .dot,
.header-menu-btn:focus .dot {
  background: var(--golden-bronze);
  transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .header-cta {
    display: none;
  }
  
  .header-left {
    min-width: 200px;
    padding: 0 20px;
  }
  
  .header-right {
    padding: 0 20px;
  }
  
  .header-brand {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .header {
    height: 70px;
  }
  
  .header-left {
    min-width: 180px;
    padding: 0 16px;
    gap: 8px;
  }
  
  .header-right {
    padding: 0 16px;
  }
  
  .header-logo {
    height: 32px;
  }
  
  .header-brand {
    font-size: 16px;
  }
}

/* Body padding for fixed header */
body {
  padding-top: 80px;
}

@media (max-width: 767px) {
  body {
    padding-top: 70px;
  }
}
