body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Poppins", sans-serif;
    background-color: #1e1e1e;
  }

  .menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #2A2C39; /* Change to rgba for transparency */
}
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    font-family: "Poppins", sans-serif;
    font-style: italic;
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 40px;
    margin-right: 10px;
  }

  .nav-links {
    display: flex;
    gap: 40px;
    margin-left: 40%;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }

  .nav-links a:hover, .nav-links a.active {
    color: #ffd700;
  }

  .icons {
    display: flex;
    gap: 50px;
    color: white;
    font-size: 20px;
    cursor: pointer;
  }

  .icons i:hover {
    color: #ffd700;
  }

  .drawer-icon {
    display: none;
  }
  .login-text{
    text-decoration: none;
    color: white;
  }
  .login-text:hover{
    color: #ffd700;
  }


  @media (max-width: 1100px) {
  
    .logo-image {
      width: 37px;
      height: 37px; 
      margin-right: 5px;
    }
    
    .logo-text {
      font-size: 16px;
    }
    
      .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 55%;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px 0;
        z-index: 1000;
      }
    
      .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
      }
    
      .icons {
        flex-direction: row;
        gap: 20px;
      }
    
      .drawer-icon {
        display: block;
      }
    
      .home-content h1 {
        font-size: 36px;
      }
    
      .order-button {
        font-size: 18px;
        padding: 10px 20px;
      }
    }
    
    @media (max-width: 280px) {
      
      .logo-image {
        width: 30px;
        height: 30px; 
        margin-right: 5px;
      }
      
      .logo-text {
        font-size: 10px;
      }}