*{
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: beige;
    color: black;
  }
  
  h1 {
    color: rgb(0, 0, 0);
  }
  html {
    scroll-behavior: smooth;
  }
  section {
    padding: 50px 60px;
    margin: 30px;
    
  }  
  .card {
    height: 100%; /* Makes all cards the same height */
    display: flex;
    flex-direction: column;
}

.card img {
    object-fit: cover;
    height: 200px; /* Set a fixed height for images */
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

  .card {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .card-title {
    color: #495057;
  }
  
  .btn-primary {
    background-color: #6f4e37;
    border-color: #6f4e37;
  }
  
  .btn-primary:hover {
    background-color: #5a3c2a;
    border-color: #5a3c2a;
  }
  
  #order-items {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
  }
  footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-content p {
    margin: 0;
    padding: 5px 0;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-content a {
    color: #ddd;
    text-decoration: none;
}

.footer-content a:hover {
    color: #fff;
}

.footer-credits {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 10px;
}  
/* Styling for the category bar */
.category-bar {
  background-color: black;
  color: gold;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: -100px; /* Start off-screen */
  width: 100%;
  z-index: 1000;
  transition: top 0.15s ease-in-out; /* Smooth transition for the bar */
}

.category-bar.visible {
  top: 50; /* Bring it into view */
}

.category-bar.hidden {
  top: 0px; /* Move it off-screen */
}

.category-item {
  text-align: center;
  text-decoration: none;
  color: gold;
}

.category-item:hover {
  color: white;
}

.category-item img {
  width: 40px;
  display: block;
  margin: 0 auto 5px;
}
