/* ====== headdeer ====== */
.headdeer {
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
  position: relative;
  z-index: 100;
}

.Logggo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.Logggo img {
  height: 45px;
  margin-right: 8px;
  width: 175px;
}

.Logggo span {
  font-weight: 600;
  font-size: 18px;
}

/* ====== navve ====== */
.navve {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navve>div,
.navve>a {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-family: 'brandon grotesque';
}

/* ====== dropddown ====== */
.dropddown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: #262626;
  border-radius: 6px;
  padding: 8px 0;
  min-width: 250px;
  display: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.dropddown-menu a {
  display: block;
  padding: 10px 16px;
  color: #ddd;
  text-decoration: none;
  font-size: 20px;
  font-family: 'brandon grotesque';
}

.dropddown-menu a:hover {
  background: #333;
  color: #fff;
}

.dropddown:hover .dropddown-menu {
  display: block;
}

/* ====== userrrs ====== */
.userrrs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.userrrs img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

/* ====== Hide headdeer on Mobile ====== */
@media (max-width: 900px) {
  .headdeer {
    display: none;
  }
}
