body{
    padding: 0px;
    margin: 0px;
    background-color: #efe7d3;
    color: white;

}
.brand-logo{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    padding: 20px 20px;
}

.nav-bar{
    display: flex;
    align-items: center;
    background-color: #3e1f1a;
}

.brand-name{
    font-size: 25px;
    margin: 10px;
    margin-right: 350px;
    color: white;
}

.nav-items{
    margin-left: 10px;
    margin-right: 100px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    margin-left: 50px;
}
.nav-items:hover {
  color: #ffcc00;
  text-shadow: 0 0 8px #ffcc00;
}


    /* Section Headings */
    .menu-section {
      padding: 50px 20px;
    }
    .main-menu-title {
      text-align: center;
      font-size: 40px;
      color: #fff;
      background-color: #200705;
      padding: 20px;
      border-radius: 50px;
      margin-bottom: 20px;
      
    }
    .menu-title {
      font-size: 28px;
      margin-bottom: 20px;
      text-align: center;
      color: #8C1007;
      position: relative;
    }
    .menu-title::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: #8C1007;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Menu Cards */
    .menu-container {
      display:grid;
      grid-template-columns: repeat(auto-fit, minmax(50px,1fr));
      gap: 30px;
      padding: 0 20px;
    }
    .menu-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }
    .menu-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }
    .menu-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .menu-card h2 {
      font-size: 20px;
      margin: 15px 0 5px;
      color: #3E0703;
    }
    .menu-card p {
      font-size: 14px;
      color: #555;
      margin: 0 10px 10px;
    }
    .price {
      font-weight: bold;
      color: #8C1007;
      display: block;
      margin-bottom: 10px;
    }
    .buy-btn, button {
      background-color: #8C1007;
      color: white;
      border: none;
      padding: 8px 12px;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      margin: 5px;
      transition: 0.3s;
    }
    .buy-btn:hover, button:hover {
      background-color: #5a0b05;
    }
.footer {
  background-color: #3e1f1a; 
  color: #f5e6d3;
  padding: 40px 20px;
  text-align: left;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer h2, .footer h4 {
  margin-bottom: 15px;
  color: #ffe0b2; 
}

.footer p, .footer a {
  margin: 5px 0;
  color: #f5e6d3;
  text-decoration: none;
}

.footer a:hover {
  color: #ffcc80; 
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer-contact strong {
  color: #ffcc80;
}

hr {
  border: 0.5px solid #f5e6d3;
  margin: 20px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #f5e6d3;
}
   
