.header {
  position: sticky;
  top: 0;
  z-index: 1000; /* Higher than dropdowns or content */
  background-color: #fff; /* Ensures it doesn't go transparent */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Optional: adds depth */
}
.header-container {
  display: flex;
  align-items: center;
}

/* Logo stays on the left */
.header-logo-wrapper {
  flex: 0 0 auto;
}

.header-nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: -6px;
  position: relative;
}

.header-nav {
  display: flex;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Geologica', sans-serif;
  font-size: 15px;
}

.header-nav li {
  display: flex;
  align-items: center;
}

.header-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #2e1a7c;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Geologica', sans-serif;
  font-size: 15px;
  margin: 0;
}

/* Hide hamburger by default */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  font-family: 'Geologica', sans-serif;
  margin-right: 20px;
}

/* Responsive styles for screen <= 992px */
@media (max-width: 992px) {
  .header-nav {
    display: none;
    flex-direction: column;
     align-items: center;
    background: white;
    position: absolute;
    top: 57px;
    right: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 10px;
    border-radius: 8px;
    z-index: 999;
    width: 100%;
  }

  .header-nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .header-nav-wrapper {
    justify-content: flex-end;
  }
}
