* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fffaf3;
  color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6B4226;
    padding: 15px 20px;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.navbar ul li {
    margin: 0 10px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    position: relative;
}

.navbar ul li a::after {
    content: "";
    display: block;
    height: 2px;
    background: #FFD700;
    width: 0%;
    transition: width 0.3s;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.navbar ul li a:hover::after {
    width: 100%;
}

.search-cart {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.search-cart input {
    padding: 5px;
    border: none;
    border-radius: 4px;
    margin: 5px 0;
}

.search-cart button {
    background-color: #FFD700;
    color: #6B4226;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}

.menu-header {
  text-align: center;
  padding: 40px 20px;
  background: #f8e9d2;
}
.menu-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.menu-container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;
}
.menu-category {
  margin-bottom: 40px;
}
.menu-category h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #8b5e34;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.menu-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.menu-card:hover {
  transform: translateY(-5px);
}
.menu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-body {
  padding: 15px;
}
.card-body h3 {
  margin-bottom: 8px;
}
.card-body p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}
.price {
  font-weight: bold;
  color: #8b5e34;
}

.site-footer {
  background: #4b2c20; /* rich brown */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.site-footer a {
  color: #ffd27f;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffd27f;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section form {
  display: flex;
  gap: 5px;
}

.footer-section input[type="email"] {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 4px;
}

.footer-section button {
  background: #ffd27f;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.footer-section button:hover {
  background: #ffbf40;
}

.social-links li {
  display: inline-block;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

