html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: rgb(222, 222, 222);
  font-family: Roboto, Arial, sans-serif;
  box-sizing: border-box;
  position: absolute;
  bottom:-37px;
}
*, *::before, *::after { box-sizing: inherit; }

.topnav {
  width: 100%;
  height: 75px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 16px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  max-height: 70px;
  width: auto;
  display: block;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topnav a,
.nav-right a {
  color: #333;
  text-decoration: none;
  padding: 6px 12px;
  font-size: 18px;
  border-radius: 6px;
  transition: background-color 0.18s ease, color 0.18s ease;
  display: inline-block;
  line-height: 1;
}

.topnav a:hover,
.nav-right a:hover {
  background-color: #f0f0f0;
  color: #000;
}

.topnav a.active {
  background-color: #cbcbcb;
  color: #000;
}

.s {
  padding: 8px 14px;
  font-weight: 600;
  font-size: 16px;
}

.nav-main a {
  font-size: 20px;
}

#e {
  font-family: Arial;
  font-size: 60px;
  color: white;
  margin: 0 auto;
  background-image: url('images/ChatGPT Image Oct 20, 2025, 11_59_19 AM.png');
  width: auto;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.text-box {
  background-color: #0000007b;
  padding: 164px 552px;
  font-size: 150px;
  color: white;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 50px;
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto 60px;
}

.product {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease;
}

.product:hover { transform: translateY(-5px); }

.product img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.footer {
  background-color: #1f1f1f;
  color: white;
  padding: 35px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  color: #ffb347; 
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact-info p {
  margin: 6px 0;
  font-size: 0.95rem;
  color: #ccc;
}

.footer-line {
  width: 80%;
  height: 1px;
  background-color: #444;
  margin: 25px auto;
}

.copyright p {
  font-size: 0.9rem;
  color: #aaa;
}

.menu-container {
  background: #ffffff;
  max-width: 1040px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  padding: 60px;
  margin: 80px auto;
}

.menu-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  border-bottom: 3px solid #e5e5e5;
  padding-bottom: 15px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.menu-section {
  background: #fafafa;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #eee;
}

.menu-section h2 {
  color: #d35400;
  font-size: 1.6rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #d35400;
  display: inline-block;
  padding-bottom: 5px;
}

.menu-item {
  margin-bottom: 18px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  padding: 20px 0;
}

.social-links a {
  color: #333;
  font-size: 28px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #ff6347;
  transform: scale(1.2);
}

.menu-item-name {
  font-weight: 600;
  color: #333;
  font-size: 1.1rem;
}

.menu-item-price {
  color: #555;
  font-weight: bold;
  font-size: 1.05rem;
}

.menu-item-desc {
  color: #666;
  font-size: 0.9rem;
  margin: 6px 0 8px;
}

.menu-add {
  background-color: #ff7f50;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.menu-add:hover {
  background-color: #ff602a;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding: 0 10px;
  }
}

.product h3 { margin: 15px 0 10px; font-size: 18px; }
.product p { color: #666; font-size: 14px; }

@media (max-width: 900px) {
  .nav-main a { font-size: 18px; }
  .s { font-size: 15px; padding: 6px 10px; }
  .topnav { padding: 0 14px; }
}

@media (max-width: 700px) {
  .nav-right {
    gap: 8px;
  }
  .nav-main { gap: 12px; }
}

@media (max-width: 480px) {
  .nav-main { display: none; }
  .nav-right { gap: 8px; }
  .logo { max-height: 60px; }
  .topnav { height: 64px; }
  .product-grid { grid-template-columns: 1fr; }
}
