/* Header */
.header {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.header-menu a {
    transition: color 0.2s ease-in-out;
}

.header-menu a {
    font-weight: 700;
    text-transform: uppercase;
}

.header-logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

/* Left menu */
.left-menu {
  flex: 1;
}

.left-menu .main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.left-menu .main-menu li a {
  color: var(--color-white);
  text-decoration: none;
  padding: 8px 12px;
  display: inline-block;
  font-weight: 700; /* bold */
  letter-spacing: 0.5px;
}

.left-menu .main-menu li a:hover {
  color: var(--color-yellow);
}

/* Center logo */
.center-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.center-logo img {
  height: 60px;
  width: auto;
}

/* Right: Order button */
.order-btn {
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.order-btn:hover {
  background: #ffe773;
}

/* Responsive */
@media(max-width: 880px){
  .header {
    flex-direction: column;
    padding: 16px;
  }
  
  .center-logo {
    position: static;
    transform: none;
    margin: 12px 0;
  }

  .left-menu .main-menu {
    flex-direction: column;
    align-items: center;
  }

  .action {
    margin-top: 12px;
  }
}