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

.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;
}

/* make the card a column so price can sit at the bottom cleanly */
.menu-card{
  display: flex;
  flex-direction: column;
}

/* title/desc already use 16px horizontal margins — match that */
.menu-card .price{
  margin: 8px 16px 16px;   /* top, right, bottom = 16, aligns with text block */
  text-align: right;       /* line up with the description’s right edge */
  color: #fff;             /* white */
  font-weight: 900;        /* bold */
  font-size: 1.05rem;
}

.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;
}

.logo { 
  display: inline-flex; 
  align-items: center; 
}

header .navigation { 
  margin-left: auto; 
}

.nav-location-btn { 
  display:inline-flex; 
  align-items:center; 
  gap:6px; color:#fff; 
  text-decoration:none; 
}

.pin-icon {
  width: 25px;
  height: 25px;
  display: inline-block;
  /* If your PNG/SVG is dark, force it to white on the orange header: */
  filter: brightness(0) invert(1);
  /* If your SVG is already white, remove the filter line. */
}

.nav-location-btn .loc-text { 
  display:flex; 
  flex-direction:column; 
  line-height:1.05; 
}

.nav-location-btn .loc-title { 
  color:#fff; 
  font-weight:700; 
  font-size:0.95rem; 
}

.nav-location-btn .loc-sub { 
  color:#fff; 
  opacity:.95; 
  font-size:11px; 
}

header {
  gap: 8px;
}

/* Lay out icon + label side by side */
.nav-cart-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;                 /* space between icon and the "Cart" text */
  color:#fff;
  text-decoration:none;
}

/* Make sure the number sits ON TOP of the PNG and is always visible */
.cart-wrap{
  position: relative;
  display: inline-block;
  width: 50px;         /* your PNG size */
  height: 40px;
  margin-right: 4px;
}

.cart-icon{
  width: 50px;
  height: 40px;
  display: block;
}

.cart-count{
  position: absolute;
  left: 60%;
  top: -15px;                     /* above the cart bowl */
  transform: translateX(-50%);
  color: #fff;
  font-weight: 900;
  font-size: 30px;                /* bigger */
  line-height: 1;
  background: transparent !important;
  padding: 0 !important;
  min-width: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
  pointer-events: none;
  z-index: 2;                     /* ← ensures it is above the PNG */
}

/* If you previously had this, remove it or override it */
.cart-count.is-zero { 
  opacity: 1 !important;          /* never hide at zero */
  transform: translateX(-50%);    /* keep centered */
}

/* Optional: shrink for 2+ digits */
.cart-count.double { font-size: 16px; letter-spacing: -0.5px; }

.nav-cart-btn .cart-label {
  font-weight:800;
}

@media (max-width: 640px) {
  .nav-location-btn{ margin-left:4px; gap:4px; }
}

/* Cart badge */
.nav-cart-btn .cart-badge {
  display: inline-block; margin-left: 6px; padding: 2px 8px;
  border-radius: 999px; background: rgba(255,255,255,0.25);
  color: #fff; font-weight: 800; font-size: 12px;
}

/* keep spacing consistent with existing li margin-left */
header .navigation li.nav-util { 
  margin-left: 30px; 
}

/* Underline the Login button in the nav */
header .navigation li a.login-btn {
  text-decoration: underline !important;
  text-underline-offset: 4px;     /* pushes underline a bit lower */
  text-decoration-thickness: 2px; /* thicker underline */
}

/* keep underline on hover/focus too (optional but crisp) */
header .navigation li a.login-btn:hover,
header .navigation li a.login-btn:focus {
  text-decoration: underline !important;
}

/* Make Login and Cart sit closer together */
header .navigation li.nav-cart {
  margin-left: 8px !important;   /* was 30px – pull Cart closer to Login */
}

/* (optional) tighten spacing inside the Cart button itself */
.nav-cart-btn { 
  gap: 6px; 
}

/* (optional) a tiny right padding on Login so it doesn't touch */
header .navigation li a.login-btn { 
  padding-right: 4px; 
}

.nav-cart-btn { display:inline-flex; align-items:center; gap:10px; color:#fff; text-decoration:none; }
.nav-cart-btn .cart-label { font-weight:800; }

/*PAGE SPACING below the fixed header*/
.menu-page, .menu-section { padding-top: 120px; }  /* ensure content clears fixed header */