/* Base Styles */
.navbar {
    width: 100%;
    background-color: #fff3e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #2563eb;
    font-family: sans-serif;
  }
  
  .navbar-container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .logo img {
    width: 32px;
    height: 32px;
  }
  
  .brand {
    font-size: 1.25rem;
    font-weight: bold;
    display: none;
  }
  
  .nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  .nav-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #2563eb;
  }
  
  .login-button {
    padding: 0.5rem 1rem;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .login-button:hover {
    background-color: #1d4ed8;
  }
  
  /* Mobile Styles */
  .menu-button {
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
  }
  
  /* Mobile Menu */
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .mobile-link {
    text-decoration: none;
    color: #333;
  }
  
  .mobile-link:hover {
    color: #2563eb;
  }
  
  .mobile-login {
    align-self: flex-start;
  }
  
  /* Responsive Breakpoints */
  @media (max-width: 768px) {
    .brand {
      display: none;
    }
  
    .nav-links {
      display: none;
    }
  
    .menu-button {
      display: block;
    }
  
    .mobile-nav.hidden {
      display: none;
    }
  }

  @media (min-width: 769px) {
    .mobile-nav {
      display: none !important;
    }
  }
  