* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* NAVBAR */
nav {
  padding: 10px 20px;
  background-color: rgb(34, 19, 22);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO AREA */
#logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

#logo {
  height: 50px;
  border-radius: 50%;
}

#o1-text {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: #fff;
}

/* LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  font-family: "Poppins", sans-serif;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-link:hover {
  background-color: white;
  color: #000;
  border-radius: 50px;
}

.pink {
  background-color: #e11d48;
  border-radius: 10px;
}

/* HAMBURGER ICON */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgb(34, 19, 22);
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    width: 100%;
    text-align: center;
  }

  .nav-link:hover {
    border-radius: 0;
  }
}
