/* Navbar styling */
.navbar-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  z-index: 1000; 
}
 
.navbar-content {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
 
.navbar-logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
}

.navbar-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.menu-item {
  position: relative;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  padding: 0.5rem;
  display: flex;
  align-items: center;
}

.dropdown-btn:after {
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
  margin-left: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 1;
  top: 100%;
  left: 0;
  padding: 0.5rem 0;
}

.dropdown-content a {
  color: #333;
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 1rem 0;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-menu.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    width: 100%;
    display: none;
    padding-left: 1rem;
  } 
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .dropdown-btn {
    width: 100%;
    text-align: left;
    justify-content: space-between;
  } 
}
/* Add to the end of your existing navbar.css file */
.join-btn, .upload-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.join-btn {
  background-color: #4f46e5;
  color: white;
}

.join-btn:hover {
  background-color: #4338ca;
}

.upload-btn {
  background-color: #10b981;
  color: white;
}

.upload-btn:hover {
  background-color: #059669;
}
