header {
  background: #ffffff;
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: none;
  border-bottom: none;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.logo-text {
  font-size: 2rem;
  font-weight: 300;
  color: var(--primary-orange);
  letter-spacing: 1px;
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

nav a:hover {
  color: var(--primary-orange);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 40px;
    gap: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  nav.active {
    display: flex;
  }

  .nav-buttons {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .header-content {
    padding: 0 20px;
    position: relative;
  }
}
