.menu-section {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.order-online-btn2 {
  background-color: #FFBD2B;
  color: white !important;
  padding: 15px 40px; 
  font-size: 15px;  
  border: 7px solid #FFBD2B;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.12s ease-in-out, box-shadow 0.12s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: inline-block;
  line-height: 1;
}

.menu-header-box {
  background-color: #d9480f;
  border-radius: 20px;
  padding: 30px 60px;
  margin-top: 120px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.menu-title {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  margin: 30px;
}

.menu-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 10px;
  color: #d9480f;
}

.menu-category-section {
  margin: 80px auto;
  padding: 40px 20px;
  max-width: 1200px;
  text-align: center;
}

.menu-category-title {
  font-size: 2.4rem;
  color: #d9480f;
  margin-bottom: 30px;
}

.menu-page {
  padding-top: 120px; /* header + space */
}

.menu-card {
  background: #ffed2b3a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-card h3 {
  margin: 16px;
  color: #ffffff;
  font-size: 1.2rem;
}

.menu-card p {
  margin: 0 16px 16px;
  color: #ffffff;
  font-size: 0.95rem;
}

.menu-category {
  margin-top: 60px;
}

header {
  background-color: #f27121; /* Bold orange */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}

header .logo {
  color: #fff;
}

header .navigation li a {
  color: #fff;
}

header .navigation li {
  list-style: none;
  margin-left: 30px;
}

header .navigation li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
}

.navigation a.active {
  color: #FFBD2B; /* or any highlight color */
  font-weight: bold;
}

body {
  background-image: url(../img/Background1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.category-title {
  font-size: 2.4rem;
  color: #d9480f;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.category-section {
  margin: 40px auto;
  padding: 30px;
  max-width: 1200px;
  background: #d9480f;
  border-radius: 25px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.category-title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

footer {
    text-align: center;
    margin: 60px 0 40px;
    color: #333;
    font-size: 0.9rem;
}