/* Mobile menu styles */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-button span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #027998;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  padding: 60px 20px 20px;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
  }
  
  .desktop-nav {
    display: none !important;
  }
  
  .desktop-donate {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-menu-button {
    display: none;
  }
}
