/* Mobile menu styles */
.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--color-text-white);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  padding: 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--color-text-white);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu-items li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-text-white);
  font-size: 1rem;
  text-align: center;
}

.mobile-menu-items li a i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent-green);
}

.mobile-menu-auth {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 200px;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .auth-buttons {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  header .container {
    justify-content: space-between;
  }
  
  .logo span {
    font-size: 1.2rem;
  }
  
  .logo img {
    height: 30px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
}
