
body {
  font-family: Arial, sans-serif;
  background-color: #fdfdfd;
  text-align: center;
  margin: 0;
  padding: 0;
}

header {
  padding: 20px;
  background-color: #ffffff;
  border-bottom: 3px solid #007A33;
}

.logo {
  max-width: 220px;
  height: auto;
  margin: 0 auto 10px;
}

.nav-bar {
  background-color: #ffffff;
  padding: 10px;
  text-align: center;
}

.nav-bar a {
  color: #9A3324;
  font-weight: bold;
  margin: 0 15px;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
}

.nav-bar a:hover {
  background-color: #E59238;
  color: white;
}

h1 {
  color: #007A33;
  margin-bottom: 30px;
}

h3 {
  color: #007A33;
  font-weight: bold;
}

.price {
  color: #007A33;
  font-weight: bold;
  font-size: 1.2em;
}

.pt-name {
  color: #007A33;
  font-weight: bold;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.menu-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid #E59238;
}

.menu-item:hover {
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.menu-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.menu-item h2 {
  color: #9A3324;
  margin-top: 15px;
}

.menu-item .pt-name {
  color: #007A33 !important;
  font-size: 18px;
  font-style: italic;
  margin: -8px 0 10px 0;
}

.menu-item p {
  font-size: 14px;
  color: #555;
}

.menu-item strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  color: #007A33;
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #007A33;
  color: white;
  padding: 12px 18px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  z-index: 1000;
}

#backToTop:hover {
  background-color: #004d22;
}
#backToTop svg {
  width: 24px;
  height: 24px;
}

.menu-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

@media (min-width: 600px) {
  .menu-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .menu-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/*.footer {
  margin-top: 10px;
  padding: 10px;
  background-color: #ffffff;
  border-top: 2px solid #007A33;
  color: #666;
  font-size: 14px;
  text-align: center;
}
*/


/* Chef's Pick Styles */
.menu-item.special {
    background-color: #fff5e6; /* light warm orange */
    border: 2px solid #E59238; /* warm orange border */
}

.menu-item .badge {
    background-color: #E59238;
    color: white;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-bottom: 6px;
    display: inline-block;
}
/* Mobile-specific styles */
@media only screen and (max-width: 768px) {
  .menu-item.special {
    background-color: #fff5e6 !important;
    border: 2px solid #E59238 !important;
  }

  .menu-item .badge {
    background-color: #E59238 !important;
    color: white !important;
    font-size: 0.9em !important;
  }
}
