div.scroll-menu {
  background-color: #000;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  position: fixed;
  top: 1%;
  left: 2%;
  right: 1%;
  z-index: 1000;
}

div.scroll-menu a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 10px 15px;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

div.scroll-menu a:hover {
  background-color: #444;
  color: #fff;
  border-radius: 5px;
}

div.scroll-menu .logo {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-right: auto;
  text-transform: uppercase;
}

/* Hide menu toggle by default */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  margin-left: 10px;
}

/* Mobile styles */
@media screen and (max-width: 675px) {
  .scroll-menu {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .menu-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #000;
    margin-top: 10px;
    border-radius: 0 0 10px 10px;
  }

  .menu-links.show {
    display: flex;
  }

  .menu-links a {
    padding: 10px 15px;
    width: 100%;
  }

  /* Hide logo on mobile */
  .scroll-menu .logo {
    display: none;
  }
}
