/* General Body Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  /* color: #333;*/
}
/* For New Item Ribbon */
.icon-box {
    position: relative;
}

.ribbon {
    position: absolute;
    top: 12px;
    left: -28px;
    background: #d62828;
    color: #fff;
    padding: 4px 40px;
    font-size: 11px;
    font-weight: 600;
    transform: rotate(-45deg);
    letter-spacing: 1px;
}
/* ------------------------------ */
/* Optional: Add a semi-transparent overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: -1;
}

header {
  background-color: #ffffffcc;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
  margin: 0;
}

nav {
  margin-top: 1rem;
}

nav button {
  background: #e0e0e0;
  border: none;
  margin: 0.2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 5px;
}

nav button:hover {
  background-color: #d0d0d0;
}

main {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* --------------------------------- */
/* MENU ITEM CARD STYLES (Horizontal Layout) */
/* --------------------------------- */

.menu-item {
  /* This creates the horizontal (side-by-side) layout */
  display: flex;
  align-items: center;
  /* Vertically centers the content */
  gap: 15px;
  /* Space between image and text */

  /* Card Appearance */
  background-color: #ffffffdd;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.menu-container {
    overflow-x: auto;        /* horizontal scroll */
    overflow-y: hidden;      /* block vertical scroll */
    white-space: nowrap;     /* keep buttons in one line */
    padding: 10px;
    scroll-behavior: smooth; /* optional: smooth scrolling */
}

/* Make nav inline horizontally */
.menu-container nav {
    display: inline-flex;
    gap: 10px;
}
/* 1. The Orange Box Wrapper (Left side) */
.icon-box {
  width: 90px;
  height: 90px;
  background-color: #F7941D;
  /* Your orange color */
  border-radius: 8px;

  /* 💡 ADD THIS LINE TO ENSURE THE IMAGE IS CLIPPED */
  overflow: hidden;

  /* Centers the actual image inside the orange box */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* The actual image inside the box */
.icon-box img {
  width: 100%;
  /* Adjust this to make the icon bigger/smaller */
  height: 100%;
  object-fit: cover;
}

/* 2. The Text Content Wrapper (Right side) */
.text-details {
  /* This forces the H3, P, and SPAN to stack vertically */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Allows text to take up available space */
  overflow-wrap: anywhere;
  flex-grow: 1;
}


/* Individual Text Elements */
.menu-item h3 {
  margin: 0;
  /* Removed margin-top and invalid flex property */
  font-size: 1rem;
}

.menu-item p {
  font-size: 0.75rem;
  color: #555;
  margin-top: 0.25rem;
  /* Small space after title */
  margin-bottom: 0.25rem;
  /* Small space before price */
}

.menu-item span {
  display: block;
  font-weight: bold;
  color: #F7941D;
}

/* --------------------------------- */
/* NAV & FOOTER STYLES */
/* --------------------------------- */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

nav button {
  background-color: white;
  border: 2px solid #F7941D;
  color: #333;
  margin: 0.2rem;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  border-radius: 30px;
  font-weight: bold;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
}

nav button:hover {
  background-color: #fff8dc;
  transform: scale(1.05);
}

nav button.active {
  background-color: #F7941D;
  color: black;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #fafafa;
  border-top: 1px solid #eee;
  font-size: 1rem;
}

footer a {
  color: #000;
  text-decoration: wavy;
}
.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;       /* IMPORTANT for mobile responsiveness */
    gap: 15px;             /* spacing when wrapping */
    text-align: center;
}

.column {
    flex: 1;               /* each column takes equal width */
    min-width: 150px;      /* prevents breaking on small screens */
}

.whatsapp-button:hover {
  background-color: #0932eb;
}

.whatsapp-button {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}


.phone-icon {
  color: #F7941D;
  /* Bright yellow */
  font-size: 1.2rem;
  margin-right: 0.3rem;
}

.prices {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.prices span {
    font-size: 14px;
    font-weight: 600;
}

.prices span:first-child {
    color: #444;
}

.prices span:last-child {
    color: #ff7a00;
    font-size: 15px;
}