/* Header styling */

.header_container {
  grid-area: header;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 max(20px, 5vw);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header_container:hover {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.2s ease;
}
.logo span, b{
  font-size: 1em;
  line-height: 1.3em;
}
.logo b{
  font-size: 1.2em;
  font-weight: bold;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Hamburger menu - hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

/* Lucide icons in hamburger */
.hamburger .menu-icon,
.hamburger .close-icon {
  width: 24px;
  height: 24px;
  color: #1d1d1f;
  transition: all 0.3s ease;
  position: absolute;
}

.hamburger .close-icon {
  opacity: 0;
  transform: rotate(90deg);
}

.hamburger.active .menu-icon {
  opacity: 0;
  transform: rotate(-90deg);
}

.hamburger.active .close-icon {
  opacity: 1;
  transform: rotate(0deg);
}

/* Old hamburger spans - keep for fallback */
.hamburger span {
  display: none; /* Hide spans when using Lucide icons */
}

/* Responsive adjustments for header */

@media (max-width: 1024px) {
  
  .header_container {
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1002;
  }

  .logo img {
    height: 28px;
  }

  .hamburger {
    display: flex;
  }

  .navigation_container {
    display: none;
  }

  .navigation_container.active {
    display: flex;
  }
  
}
