/* ===========================
   🖼 LOGO STYLING
   =========================== */
.logopic {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.logopic img {
  width: 350px;
  height: 75%;
}


/* ===========================
   🧭 NAVIGATION BAR
   =========================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #663300; /* ✅ Color of the bar at the top */
  padding: 1em 2em;
}

.logo {
  color: #ffcc99;              /* ✅ Color of the words on the left */
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #bb9966;             /* ✅ Color of the clickable links */
  text-decoration: none;
  padding: 0.5em;
  display: block;
}

/* ===========================
   🔘 BOTTOM BUTTONS
   =========================== */
.bottom-buttons {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin: 50px 0;
}

.bottom-buttons button {
  padding: 10px 20px;
  font-size: 1em;
  background-color: transparent;
  border: 2px solid #663300;
  border-radius: 5px;
  color: #663300;
  cursor: pointer;
  transition: background-color 0.3s;
}

.bottom-buttons button:hover {
  background-color: deepskyblue;
}

/* ===========================
   ✍️ PAGE TEXT & BACKGROUND
   =========================== */
body {
  font-family: Verdana, Helvetica, sans-serif;
  color: #663300;                 /* ✅ Color of all the words */
  background-color: #ffcc99;   /* ✅ Background color of the whole page */
  margin: 0;
  padding: 20px;
}

h1,
h2 {
  text-align: center;
}


/* ===========================
   🍽 MENU SECTION STYLING
   =========================== */
.menu-section {
  margin-top: 40px;
}

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

.menu-item {
  border: 5px solid #663300;          /* ✅ Border color around each item */
  border-radius: 8px;
  padding: 10px;
  width: 200px;
  text-align: center;
  background-color: #bb9966;      /* ✅ Background color of each box */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.menu-item:hover {
  transform: scale(1.03);          /* ✅ Grows a little when hovered */
}

.menu-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
}

.item-name {
  font-size: 1.1em;
  margin: 10px 0 5px;
  color: #663300;
  font-weight: bolder;
}

.price {
  color: #ffffff;                   /* ✅ Color of the price text */
  font-weight: bold;
}

.item-descript {
  color: #663300;
  font-style: italic;
}


/* ===========================
   📱 MOBILE RESPONSIVE STYLE
   =========================== */

    @media (max-width: 600px) {
      .menu-item {
        width: 100%;
        max-width: 300px;
      }
    }

