* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: #ff6a00;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
   flex-direction: column;
}

.nav-links a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fff5e0;
}

/* Sections */
.section {
  padding: 4rem 1rem;
  text-align: center;
}

.section-content {
  max-width: 900px;
  margin: auto;
}

/* Home Section */
.home {
  background: #2a2a2a;
  color: white;
}

/* About */
.about {
  background-color: #1e1e1e;
}

/* Menu Section */
.menu {
  background-color: #2a2a2a;
}

.menu-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background-color: #333;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-title h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #ff6a00;
}


.menu-item p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #ddd;
  text-align: left;
}

.price {
  font-size: 1.1rem;
  color: #fff;
  font-weight: bold;
    white-space: nowrap;
}

/* Gallery */
.gallery {
  background-color: #1e1e1e;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 2rem;
}

.gallery-item {
  background-color: #444;
  height: 180px;
  border-radius: 10px;
}

/* Contact */
.contact {
  background-color: #2a2a2a;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background-color: #444;
  color: white;
}

.contact-form button {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background-color: #ff6a00;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e65c00;
}

/* Footer */
.footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}

/* ============================
   📱 Responsive Styles (Mobile)
   ============================ */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
  }

  .logo {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav-links a {
    margin: 0.4rem 0;
    font-size: 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .menu-title h3 {
    font-size: 1rem;
  }

  .menu-item p {
    font-size: 0.9rem;
  }

  .price {
    font-size: 1rem;
    white-space: nowrap;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 1rem;
  }
}
