*{
    ::-webkit-scrollbar {
        display: none;
    }
}

body {
    font-family: Arial, sans-serif;
    margin: 0px;
    
  }

  /* Navigation Menu Main */
  /* Header */

#navbar ::before {
    content: "";
    background-color: #f7bf4f;
    position: sticky;
    top: 0;
    left: 0px;
    height: 100%;
    z-index: -1;
    opacity: 1;
}

#navbar {
    display: flex;
    align-items: center;
    top: 0px;
    position: sticky;
    justify-content: space-between;
    background-color: #f7bf4f;
    z-index: 1;
    width: 100%;
}


/*Navigation: logo and Image */
#logo {
    margin: 15px 36px;
    height: 64px;
    width: 200px;
}

#logo img {
    height: 64px;
    width: 200px;
    cursor: pointer;
}

/* Navigation: List item (Menu) */
#navbar ul {
    display: flex;
}

#navbar ul li {
    list-style: none;
    margin: 10px;
    font-size: 1.7rem;
    font-weight: 550;

}

#navbar ul li a {
    display: block;
    text-decoration: none;
    padding: 3px 22px;
    border-radius: 15px;
    color: #271801;

}

#navbar ul li a:hover {
    display: block;
    color: #f3f3f3;
    border-radius: 15px;
    background-color: #271801c1;
    padding: 3px 22px;
    transition: 1s ease-in-out;
    box-shadow: #f7bf4f 3px 3px;

}

/* Phone Navbar */

@media (max-width: 1000px){
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        top: 0px;
        position: sticky;
        justify-content: space-between;
        background-color: #f7bf4f;
        z-index: 1;
        width: 100%;
    }

    #navbar ul li {
      list-style: none;
      margin: 7px;
      font-size: 1.5rem;
      font-weight: 500;

  }

  #logo {
      margin: 5px 16px;
      height: 50px;
      width: 170px;
  }

  #logo img {
      height: 50px;
      width: 150px;
      cursor: pointer;
  }
}

@media (max-width: 810px){
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        top: 0px;
        position: sticky;
        justify-content: space-between;
        background-color: #f7bf4f;
        z-index: 1;
        width: 100%;
    }

    #navbar ul li {
      list-style: none;
      margin: 10px;
      font-weight: 500;

  }

  #navbar ul li a {
      padding: 0px 7px;
      font-size: 0.9rem;
  }

  #logo {
      height: 40px;
      width: 130px;
      align-self: center;
  }

  #logo img {
      align-self: center;
      height: 40x;
      width: 130px;
      cursor: pointer;
  }
}
  
  header h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  section {
    margin-bottom: 40px;
  }
  
  h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .menu-item {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
  }
  
  .menu-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .menu-item p {
    margin-bottom: 15px;
  }
  
  .menu-item .price {
    font-weight: bold;
    color: #555;
  }
  
  footer {
    margin-top: 50px;
    font-size: 14px;
    color: #666;
  }

  section{
    margin: 30px;

  }

  section h2{
    text-align: center;
  }

  header{
    text-align: center;
  }

  footer{
    /* position: absolute; */
    text-align: center;
  }
  