/* =====================
   HEADER
===================== */
.zamin-header {
  background-color: rgb(255, 255, 255);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
    max-width: 600px;
  height: 60px;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(207, 207, 207, 0.3);
  z-index: 1000;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.4;
  padding: 0 16px;
}

/* =====================
   Inner Wrapper
===================== */
.zamin-header-inner {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

/* =====================
   Logo
===================== */
.logo {
  font-weight: bold;
  font-size: 2.2rem;
}

/* =====================
   Menu
===================== */
.menu {
  display: flex;
  gap: 1rem;
}
@media (max-width: 700px) {
  .menu {
    display: none;
  }
}
.menu a {
  text-decoration: none;
  color: #717171;
  font-weight: 300;
  transition: color 0.3s;
}

.menu a:hover {
  color: #000000;
}

/* =====================
   Action Button
===================== */
.action button {
  padding: 0.5rem 1rem;
  background-color: #353535;
  color: rgb(12, 12, 12);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.action button:hover {
  background-color: #005a9e;
}

/* =====================
   Responsive
===================== */
@media (max-width: 600px) {
  .menu {
    gap: 1rem;
    font-size: 14px;
  }

  .zamin-header {
    width: 86%;
  }

  .action button {
    padding: 0.4rem 0.8rem;
    font-size: 12px;

  }
}

@media (min-width: 1200px) {
  .zamin-header {
    width: 50%;
  }
}
