body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff9e6;
  color: #333;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #222;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
  font-size: 14px;
  flex-wrap: wrap;
}

.top-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-left i {
  color: #ffcc00;
  margin-right: 5px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons a {
  color: #ccc;
  margin: 0 6px;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
}

.order-btn {
  background: #ffb733;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.order-btn:hover {
  background: #ffcc00;
}

/* ===== HEADER ===== */
header {
  background-color: #0d5521;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px;
}

/* ===== HEADER MENU ===== */
nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0d5521;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    width: 200px;
    display: none;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
